Skip to content

Commit a404ea7

Browse files
Update repo owner (#331)
tritonbench was moved from pytorch-labs/tritonbench to meta-pytorch/tritonbench. This should allow CI to run.
1 parent db2155c commit a404ea7

14 files changed

+19
-19
lines changed

.ci/test_infra/oss_ci_benchmark_v3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def parse_dependencies(envs: Dict[str, str]) -> Dict[str, Dict[str, Any]]:
3434
dependencies = {
3535
"pytorch": "pytorch/pytorch",
3636
"triton": "triton-lang/triton",
37-
"tritonbench": "pytorch-labs/tritonbench",
37+
"tritonbench": "meta-pytorch/tritonbench",
3838
}
3939
out = {}
4040
for dep in dependencies:

.github/workflows/_linux-benchmark-abtest-h100.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737
3838
jobs:
3939
linux-benchmark-h100:
40-
if: github.repository_owner == 'pytorch-labs'
40+
if: github.repository_owner == 'meta-pytorch'
4141
runs-on: [gcp-h100-runner]
4242
timeout-minutes: 240
4343
environment: docker-s3-upload

.github/workflows/_linux-benchmark-h100.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030
3131
jobs:
3232
linux-benchmark-h100:
33-
if: github.repository_owner == 'pytorch-labs'
33+
if: github.repository_owner == 'meta-pytorch'
3434
runs-on: [gcp-h100-runner]
3535
timeout-minutes: 240
3636
environment: docker-s3-upload

.github/workflows/_linux-test-h100.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
1111
jobs:
1212
linux-test-h100:
13-
if: github.repository_owner == 'pytorch-labs'
13+
if: github.repository_owner == 'meta-pytorch'
1414
runs-on: [gcp-h100-runner]
1515
timeout-minutes: 240
1616
environment: docker-s3-upload

.github/workflows/docker-rocm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515

1616
jobs:
1717
build-push-docker:
18-
if: ${{ github.repository_owner == 'pytorch-labs' }}
18+
if: ${{ github.repository_owner == 'meta-pytorch' }}
1919
runs-on: 32-core-ubuntu
2020
environment: docker-s3-upload
2121
steps:

.github/workflows/docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525

2626
jobs:
2727
build-push-docker:
28-
if: ${{ github.repository_owner == 'pytorch-labs' }}
28+
if: ${{ github.repository_owner == 'meta-pytorch' }}
2929
runs-on: 32-core-ubuntu
3030
environment: docker-s3-upload
3131
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The benchmark suite should be self-contained of its dependencies. To install, fo
1212
Step 1: clone the repository and checkout all submodules
1313

1414
```
15-
$ git clone https://github.com/pytorch-labs/tritonbench.git
15+
$ git clone https://github.com/meta-pytorch/tritonbench.git
1616
$ git submodule update --init --recursive
1717
```
1818

docker/infra/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## githubConfigUrl is the GitHub url for where you want to configure runners
22
## ex: https://github.com/myorg/myrepo or https://github.com/myorg
3-
githubConfigUrl: "https://github.com/pytorch-labs/tritonbench"
3+
githubConfigUrl: "https://github.com/meta-pytorch/tritonbench"
44

55
## githubConfigSecret is the k8s secrets to use when auth with GitHub API.
66
## You can choose to use GitHub App or a PAT token

docker/tritonbench-nightly.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN sudo mkdir -p /workspace; sudo chown runner:runner /workspace
2828
# We assume that the host NVIDIA driver binaries and libraries are mapped to the docker filesystem
2929
# Install CUDA 12.8 build toolchains
3030
RUN cd /workspace; mkdir -p pytorch-ci; cd pytorch-ci; wget https://raw.githubusercontent.com/pytorch/pytorch/main/.ci/docker/common/install_cuda.sh
31-
RUN cd /workspace/pytorch-ci; wget https://raw.githubusercontent.com/pytorch/pytorch/main/.ci/docker/common/install_cudnn.sh && \
31+
RUN cd /workspace/pytorch-ci; wget https://raw.githubusercontent.com/pytorch/pytorch/main/.ci/docker/common/install_cudnn.sh || true && \
3232
wget https://raw.githubusercontent.com/pytorch/pytorch/main/.ci/docker/common/install_nccl.sh && \
3333
wget https://raw.githubusercontent.com/pytorch/pytorch/main/.ci/docker/common/install_cusparselt.sh && \
3434
mkdir ci_commit_pins && cd ci_commit_pins && \
@@ -59,7 +59,7 @@ RUN echo ". /workspace/setup_instance.sh\n" >> ${HOME}/.bashrc
5959

6060
# Checkout TritonBench and submodules
6161
RUN git clone --recurse-submodules -b "${TRITONBENCH_BRANCH}" --single-branch \
62-
https://github.com/pytorch-labs/tritonbench /workspace/tritonbench
62+
https://github.com/meta-pytorch/tritonbench /workspace/tritonbench
6363

6464
# Setup conda env and CUDA
6565
RUN cd /workspace/tritonbench && \

docker/tritonbench-rocm-nightly.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN echo ". /workspace/setup_instance.sh\n" >> ${HOME}/.bashrc
2222

2323
# Checkout TritonBench and submodules
2424
RUN git clone --recurse-submodules -b "${TRITONBENCH_BRANCH}" --single-branch \
25-
https://github.com/pytorch-labs/tritonbench /workspace/tritonbench
25+
https://github.com/meta-pytorch/tritonbench /workspace/tritonbench
2626

2727
# Setup conda env
2828
RUN cd /workspace/tritonbench && \

0 commit comments

Comments
 (0)