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

bump migraphx release #168

Merged
merged 8 commits into from
Sep 27, 2024
Merged
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/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Create Image Tag
id: image_hash
run: |
echo "imagetag=$(echo -n ./ci/base.Dockerfile | sha256sum | awk '{print $1}')" >> $GITHUB_OUTPUT
echo "imagetag=$(sha256sum ./ci/base.Dockerfile | awk '{print $1}')" >> $GITHUB_OUTPUT

- name: Check if image exists
id: check_image
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def runTests() {

gitStatusWrapper(credentialsId: "${env.status_wrapper_creds}", gitHubContext: "Jenkins - pytest-${arch}", account: 'ROCmSoftwarePlatform', repo: 'torch_migraphx') {
sh '''
docker_tag=$(echo -n ./ci/base.Dockerfile | sha256sum | awk '{print $1}')
docker_tag=$(sha256sum ./ci/base.Dockerfile | awk '{print $1}')
docker run --rm --network=host --device=/dev/kfd --device=/dev/dri --group-add=video --ipc=host --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -v=`pwd`:/workspace/torch_migraphx rocm/torch-migraphx-ci-ubuntu:$docker_tag bash -c \
'cd /workspace/torch_migraphx/py ; export TORCH_CMAKE_PATH=$(python -c "import torch; print(torch.utils.cmake_prefix_path)") ; python -m pip install . ; cd /workspace/torch_migraphx/tests/ ; pytest'
'''
Expand Down
2 changes: 1 addition & 1 deletion ci/base.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM rocm/pytorch:rocm6.2_ubuntu22.04_py3.10_pytorch_release_2.3.0

ARG ROCM_PATH=/opt/rocm
ARG MIGRAPHX_BRANCH="rocm-6.1.0"
ARG MIGRAPHX_BRANCH="rocm-6.2.2"
ARG GPU_ARCH="gfx900;gfx906;gfx908;gfx90a;gfx1030;gfx1100;gfx1101;gfx1102;gfx940;gfx941;gfx942"

# Install Dependencies: MIGraphX
Expand Down
Loading