123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #!/bin/bash
- path=$PWD
- PROGRAM='scattnlay-example.bin'
- file=test-surf-integral.cc
- echo Compile $file with gcc
- rm -f $PROGRAM
- g++ -Ofast -std=c++11 $file ../src/shell-generator.cc -lm -lrt -o $PROGRAM -march=native -mtune=native -msse4.2
- echo Compilation done. Running...
- ./$PROGRAM
|