update exerciseC

This commit is contained in:
morales-gregorio 2024-08-29 23:17:47 +02:00
parent 8c7ed4a1a9
commit b1a8862eb8
3 changed files with 65 additions and 75 deletions

View file

@ -1,7 +1,8 @@
# This is bash, it executes the python script multiple times
for i in {1..10}
# This is bash
# It runs the python script multiple times with different arguments
for i in {1..5} # Number of processes
do
for j in {1..10}
for j in {1..5} # Number of threads
do
python process_images.py $i $j images/*
done