CI with pytest_num_workers=8 for torch/tf jobs (#25274)

n8

Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
This commit is contained in:
Yih-Dar 2023-08-02 22:00:32 +02:00 committed by GitHub
parent bd90cda9a6
commit 2bd7a27a67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -285,7 +285,6 @@ torch_job = CircleCIJob(
"pip install -U --upgrade-strategy eager git+https://github.com/huggingface/accelerate", "pip install -U --upgrade-strategy eager git+https://github.com/huggingface/accelerate",
], ],
parallelism=1, parallelism=1,
pytest_num_workers=3,
) )
@ -298,7 +297,6 @@ tf_job = CircleCIJob(
"pip install -U --upgrade-strategy eager tensorflow_probability", "pip install -U --upgrade-strategy eager tensorflow_probability",
], ],
parallelism=1, parallelism=1,
pytest_num_workers=6,
) )