Skip to content

Commit

Permalink
test mi300 node
Browse files Browse the repository at this point in the history
  • Loading branch information
saienduri authored Jan 22, 2025
1 parent ec7ae96 commit dba9427
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/amd_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,18 @@ on:

jobs:
run:
runs-on: [amdgpu-mi250-x86-64]
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- name: mi300
runs-on: amdgpu-mi300-x86-64
venv-dir: ${{ github.workspace }}
- name: mi250
runs-on: amdgpu-mi300-x86-64
venv-dir: /groups/aig_sharks/pytorch_venv
timeout-minutes: 10
env:
VENV_DIR: /groups/aig_sharks/pytorch_venv
steps:
- uses: actions/checkout@v3
- name: Setup Python
Expand All @@ -35,8 +43,8 @@ jobs:
- name: Setup Virtual Environment and Install Dependencies
shell: bash
run: |
python -m venv ${VENV_DIR}
source ${VENV_DIR}/bin/activate
python -m venv ${{ matrix.venv-dir }}
source ${{ matrix.venv-dir }}/bin/activate
pip install --upgrade pip
if [[ -n "${{ github.event.inputs.requirements }}" ]]; then
Expand Down

0 comments on commit dba9427

Please sign in to comment.