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

do not land: try out new gpu worker changes #320

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions taskcluster/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,28 @@ workers:
provisioner: '{trust-domain}-{level}'
implementation: generic-worker
os: linux
worker-type: 'b-linux-v100-gpu'
worker-type: 'b-linux-v100-gpu-relops782-test'
# Use for tasks that need lots of GPU power, but not lots of disk space
# eg: translation & scoring
b-largegpu:
provisioner: '{trust-domain}-{level}'
implementation: generic-worker
os: linux
worker-type: 'b-linux-v100-gpu-4'
worker-type: 'b-linux-v100-gpu-relops782-test'
# Use for tasks that needs lots of GPU power and increased disk space
# eg: bicleaner
b-largegpu-largedisk:
provisioner: '{trust-domain}-{level}'
implementation: generic-worker
os: linux
worker-type: 'b-linux-v100-gpu-4-300gb'
worker-type: 'b-linux-v100-gpu-relops782-test'
# Use for tasks that need lots of GPU power and immensive amounts of disk space
# eg: training
b-largegpu-xlargedisk:
provisioner: '{trust-domain}-{level}'
implementation: generic-worker
os: linux
worker-type: 'b-linux-v100-gpu-4-1tb'
worker-type: 'b-linux-v100-gpu-relops782-test'
images:
provisioner: '{trust-domain}-{level}'
implementation: docker-worker
Expand All @@ -65,7 +65,7 @@ workers:
# Keys are worker type, and align with the `worker-type` entries in the
# `worker.aliases` above.
worker-configuration:
b-linux-v100-gpu:
b-linux-v100-gpu-relops782-test:
env:
GPUS: "0"
WORKSPACE: "12000"
Expand Down
2 changes: 1 addition & 1 deletion taskcluster/kinds/all-pr/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ kind-dependencies:

tasks:
all:
description: Dummy task that ensures all parts of training pipeline will run
description: Dummy task that ensures all parts of training pipeline will run.
attributes:
stage: all-pr
src_locale: "{src_locale}"
Expand Down
2 changes: 1 addition & 1 deletion taskcluster/translations_taskgraph/target_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def filter(task):
if task.attributes.get("trg_locale") != trg:
return False

# Datasets are only applicable to dataset-specific tasks. If these
# Datasets are only applicable to dataset-specific tasks. If these
# attribute isn't present on the task it can be assumed to be included
# if the above attributes matched, as it will be a task that is either
# agnostic of datasets, or folds in datasets from earlier tasks.
Expand Down