Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable generic-worker for CPU tasks #561

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions taskcluster/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,28 +65,28 @@ workers:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
os: linux
worker-type: 'b-linux-large-gcp'
worker-type: 'b-linux-large-gcp-d2g'
# Use for tasks that don't require GPUs, but need lots of disk space
# eg: dataset cleaning & merging
b-cpu-largedisk:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
os: linux
worker-type: 'b-linux-large-gcp-300gb'
worker-type: 'b-linux-large-gcp-d2g-300gb'
# Use for tasks that don't require GPUs, but need immense amounts of disk space
# eg: alignments
b-cpu-xlargedisk:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
os: linux
worker-type: 'b-linux-large-gcp-1tb'
worker-type: 'b-linux-large-gcp-d2g-1tb'
# Use for tasks that don't require GPUs, but need immense amounts of disk space
# and higher reliability
b-cpu-xlargedisk-standard:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
os: linux
worker-type: 'b-linux-large-gcp-1tb-standard'
worker-type: 'b-linux-large-gcp-d2g-1tb-standard'
# Use for quick tasks that need a GPU, eg: evaluate
b-gpu:
provisioner: '{trust-domain}-{level}'
Expand Down