24 lines
714 B
Bash
Executable File
24 lines
714 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd kissat-inc
|
|
make clean
|
|
./configure
|
|
make -j 64
|
|
cd ..
|
|
make clean
|
|
|
|
# buglist
|
|
# - fe96b630b3e761821308b544368dd521-GP_100_950_34.cnf
|
|
# - 0d4970edf84353e5a5798bca3f7f270e-SAT_H_instances_childsnack_p10.hddl_2.cnf
|
|
|
|
# 这个存在问题
|
|
DIR=/pub/data/chenzh/data/sat2022
|
|
INSTANCE=30ca21da9753263cc8cda020802b58ce-GP_500_200_20.cnf
|
|
|
|
|
|
# make -j 16 && mpirun --bind-to none -np 9 --allow-run-as-root ./light -i $DIR/$INSTANCE --shuffle=1 --share=1 --threads=16 --times=3600 --share_method=1
|
|
|
|
make -j 16 && mpirun --bind-to none -np 9 --allow-run-as-root ./light -i data/class_1_easy_10_0.cnf --share=1 --threads=16 --times=3600 --share_method=0
|
|
|
|
#./light -i $DIR/$INSTANCE --share=1 --threads=16 --times=3600
|