1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #!/bin/bash
- echo Compile with gcc -O2
- rm -f *.bin
- rm -f ../scattnlay
- g++ -Ofast -std=c++11 compare.cc nmie.cc nmie-wrapper.cc -lm -lrt -o scattnlay.bin -ltcmalloc -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free
- cp scattnlay.bin ../scattnlay
- cp scattnlay-pg.bin ../scattnlay-pg
- cd tests/shell
- PROGRAM='../../../scattnlay'
- time $PROGRAM -l 5 0.4642 1.8000 1.7000 0.7114 0.8000 0.7000 0.7393 1.2000 0.0900 0.9168 2.8000 0.2000 1.0000 1.5000 0.4000 -t 0.0 90.0 5 -c test01
- echo valgring
|