9 lines
No EOL
236 B
Bash
Executable file
9 lines
No EOL
236 B
Bash
Executable file
# This is bash
|
|
# It runs the python script multiple times with different arguments
|
|
for i in {1..16} # Number of processes
|
|
do
|
|
for j in {1..16} # Number of threads
|
|
do
|
|
python process_images.py $i $j images/*
|
|
done
|
|
done |