File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1+ helloworld
2+ chameleon
3+ pyaes
4+ image_rotate_s3
5+ json_serdes_s3
6+ lr_serving
7+ cnn_serving
8+ rnn_serving
9+ lr_training_s3
10+ video_processing_s3
Original file line number Diff line number Diff line change 5555
5656host_ip=` curl ifconfig.me`
5757
58- wlds=(helloworld chameleon pyaes image_rotate_s3 json_serdes_s3 lr_serving cnn_serving rnn_serving lr_training_s3 video_processing_s3)
58+ # wlds=(helloworld chameleon pyaes image_rotate_s3 json_serdes_s3 lr_serving cnn_serving rnn_serving lr_training_s3 video_processing_s3)
59+
60+ # Reading the file with functions
61+ i=0
62+ for j in ` cat $ROOT /ae_scripts/functions.txt`
63+ do
64+ wlds[$i ]=$j
65+ i=$(( $i + 1 ))
66+ done
67+
68+ echo The experiment will run the following functions: ${wlds[@]}
5969
6070all_results_path=all_results
6171results_path=$all_results_path /$mode
Original file line number Diff line number Diff line change @@ -54,15 +54,15 @@ $ROOT/function-images/minio_scripts/start_minio_server.sh &
5454sleep 1
5555
5656host_ip=` curl ifconfig.me`
57- $ROOT /function-images/minio_scripts/create_minio_bucket.sh http://$host_ip :9000
57+ $ROOT /function-images/minio_scripts/create_minio_bucket.sh http://$host_ip :9000 || echo Minio bucket exists, continuing...
5858
5959echo Populate the bucket with all files
6060$ROOT /function-images/minio_scripts/put_in_bucket.sh
6161
6262echo Contents of the MinIO bucket:
6363mc ls myminio/mybucket
6464
65- sudo pkill -9 minio
65+ sudo pkill -9 minio || echo
6666
6767echo Build the project
6868
You can’t perform that action at this time.
0 commit comments