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

Replace runners prefix amz2023. #2393

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/_linux-test-cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
linux-test-cpu:
# Don't run on forked repos
if: github.repository_owner == 'pytorch'
runs-on: [self-hosted, linux.24xlarge]
runs-on: [self-hosted, amz2023.linux.24xlarge]
timeout-minutes: 240
environment: docker-s3-upload
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-gcp-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
build-push-docker:
if: ${{ github.repository_owner == 'pytorch' }}
runs-on: [self-hosted, linux.4xlarge]
runs-on: [self-hosted, amz2023.linux.4xlarge]
environment: docker-s3-upload
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-nightly-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
build-push-docker:
if: ${{ github.repository_owner == 'pytorch' }}
runs-on: [self-hosted, linux.4xlarge]
runs-on: [self-hosted, amz2023.linux.4xlarge]
environment: docker-s3-upload
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clean-nightly-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
clean-push-docker:
if: ${{ github.repository_owner == 'pytorch' }}
runs-on: [self-hosted, linux.2xlarge]
runs-on: [self-hosted, amz2023.linux.2xlarge]
environment: docker-s3-upload
steps:
- uses: actions/delete-package-versions@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/userbenchmark-ai-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
collect-userbenchmark-result:
runs-on: [linux.2xlarge] # a small instance is sufficient
runs-on: [amz2023.linux.2xlarge] # a small instance is sufficient
timeout-minutes: 60 # 1 hour
environment: docker-s3-upload
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/userbenchmark-c5-24xlarge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
run-userbenchmark:
runs-on: [self-hosted, linux.24xlarge]
runs-on: [self-hosted, amz2023.linux.24xlarge]
timeout-minutes: 1440 # 24 hours
environment: docker-s3-upload
env:
Expand Down
18 changes: 9 additions & 9 deletions torchbenchmark/models/pytorch_unet/pytorch_unet/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM nvcr.io/nvidia/pytorch:21.06-py3
RUN rm -rf /workspace/*
WORKDIR /workspace/unet
ADD requirements.txt .
RUN pip install --no-cache-dir --upgrade --pre pip
RUN pip install --no-cache-dir -r requirements.txt
ADD . .
FROM nvcr.io/nvidia/pytorch:21.06-py3

RUN rm -rf /workspace/*
WORKDIR /workspace/unet

ADD requirements.txt .
RUN pip install --no-cache-dir --upgrade --pre pip
RUN pip install --no-cache-dir -r requirements.txt
ADD . .
Loading
Loading