15 lines
191 B
Bash
Executable File
15 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
|
|
clear
|
|
|
|
cmake . && make -j
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "compile failed."
|
|
else
|
|
clear
|
|
echo "========================"
|
|
time ./atpg -i $1 --lut=12 --seed=19260817
|
|
fi
|
|
|