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

Test a simpler docker #4003

Closed
wants to merge 2 commits 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
7 changes: 2 additions & 5 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
matrix:
runner: ${{fromJson(needs.Runner-Preparation.outputs.matrix-HIP)}}
container:
image: rocm/pytorch:rocm6.1_ubuntu22.04_py3.10_pytorch_2.1.2
image: antiagainst/triton-torch-hip:torch2.4.0.dev20240520-hip6.1.1
options: --device=/dev/kfd --device=/dev/dri --security-opt seccomp=unconfined --group-add video --user root
steps:
- name: Checkout
Expand Down Expand Up @@ -340,9 +340,6 @@ jobs:
run: |
mkdir -p ~/.triton
ls -alh ~/.triton
- name: Update PATH
run: |
echo "/opt/rocm/llvm/bin" >> $GITHUB_PATH
- name: Install pip dependencies
run: |
python3 -m pip install --upgrade pip
Expand All @@ -352,7 +349,7 @@ jobs:
echo "PATH is '$PATH'"
pip uninstall -y triton
cd python
pip install -v -e .
pip install -v .
- name: Run lit tests
run: |
cd python
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/integration-tests.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ jobs:
runner: ${{fromJson(needs.Runner-Preparation.outputs.matrix-HIP)}}

container:
image: rocm/pytorch:rocm6.1_ubuntu22.04_py3.10_pytorch_2.1.2
image: antiagainst/triton-torch-hip:torch2.4.0.dev20240520-hip6.1.1
options: --device=/dev/kfd --device=/dev/dri --security-opt seccomp=unconfined --group-add video --user root

steps:
Expand All @@ -347,10 +347,6 @@ jobs:
- *restore-build-artifacts-step
- *inspect-cache-directory-step

- name: Update PATH
run: |
echo "/opt/rocm/llvm/bin" >> $GITHUB_PATH

- name: Install pip dependencies
run: |
python3 -m pip install --upgrade pip
Expand All @@ -361,7 +357,7 @@ jobs:
echo "PATH is '$PATH'"
pip uninstall -y triton
cd python
pip install -v -e .
pip install -v .

- *run-lit-tests-step

Expand Down
Loading