This commit is contained in:
infidel
2022-04-06 14:56:09 +07:00
commit eb3dc17ee6
41 changed files with 4898 additions and 0 deletions

11
blast.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
filename="./symbols.txt"
n=1
while read line;
do
echo "$line"
taskset -c $((n-1)) python3 ./main_model.py $line 50 &
n=$((n+1))
done < $filename