Skip to content

Commit

Permalink
4 is best
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurZucker committed May 1, 2024
1 parent a3fae80 commit 1d9404b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/create_circleci_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def job_name(self):
"torch",
docker_image=[{"image": "huggingface/transformers-torch-light"}],
install_steps=["uv venv && uv pip install ."],
parallelism=16,
parallelism=4,
pytest_num_workers=16
)

Expand All @@ -239,15 +239,15 @@ def job_name(self):
docker_image=[{"image":"huggingface/transformers-tf-light"}],
install_steps=["uv venv", "uv pip install -e."],
pytest_num_workers=16,
parallelism=16
parallelism=4
)


flax_job = CircleCIJob(
"flax",
docker_image=[{"image":"huggingface/transformers-jax-light"}],
install_steps=["uv venv && uv pip install ."],
parallelism=16,
parallelism=4,
pytest_num_workers=16
)

Expand Down

0 comments on commit 1d9404b

Please sign in to comment.