Update orttraining-linux-gpu-perf-test-ci-pipeline.yml (#8005)

I changed the OS version. It's is Ubuntu 20.04 + python 3.8 now. So I need to update the python command.
This commit is contained in:
Changming Sun 2021-06-09 10:22:14 -07:00 committed by GitHub
parent cb5f411da3
commit aa45545af7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ jobs:
--volume /bert_data/bert_models:/build/bert_models:ro
--volume /bert_data:/build/bert_data:ro
-e NIGHTLY_BUILD onnxruntime_perf_test_image
/usr/bin/python3.6 /onnxruntime_src/orttraining/tools/ci_test/run_bert_perf_test.py
/usr/bin/python3 /onnxruntime_src/orttraining/tools/ci_test/run_bert_perf_test.py
--binary_dir /build/RelWithDebInfo
--training_data_root /build/bert_data
--model_root /build/bert_models
@ -55,7 +55,7 @@ jobs:
--volume /gpt2_data/gpt2_models:/build/gpt2_models:ro
--volume /gpt2_data:/build/gpt2_data:ro
-e NIGHTLY_BUILD onnxruntime_perf_test_image
/usr/bin/python3.6 /onnxruntime_src/orttraining/tools/ci_test/run_gpt2_perf_test.py
/usr/bin/python3 /onnxruntime_src/orttraining/tools/ci_test/run_gpt2_perf_test.py
--binary_dir /build/RelWithDebInfo
--training_data_root /build/gpt2_data
--model_root /build/gpt2_models