Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurZucker committed May 1, 2024
1 parent 3315804 commit eb65ff4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 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 @@ -238,15 +238,17 @@ def job_name(self):
"tf",
docker_image=[{"image":"huggingface/transformers-tf-light"}],
install_steps=["uv venv", "uv pip install -e."],
parallelism=8
pytest_num_workers=16,
parallelism=4
)


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


Expand Down

0 comments on commit eb65ff4

Please sign in to comment.