Skip to content
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
8 changes: 8 additions & 0 deletions .github/workflows/integration_test_8gpu_autoparallel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,12 @@ jobs:
sudo mkdir -p "$RUNNER_TEMP/artifacts-to-be-uploaded"
sudo chown -R $(id -u):$(id -g) "$RUNNER_TEMP/artifacts-to-be-uploaded"

# HIP runtime relies on the file /opt/amdgpu/share/libdrm/amdgpu.ids to look up the product name of AMDGPU.
# The docker image only has /usr/share/libdrm/amdgpu.ids and it is out of date. So this is the workaround.
if [[ "${{ matrix.gpu-arch-type }}" == "rocm" ]]; then
sudo curl -L -o /usr/share/libdrm/amdgpu.ids https://gitlab.freedesktop.org/mesa/libdrm/-/raw/main/data/amdgpu.ids
sudo mkdir -p /opt/amdgpu/share/libdrm
sudo ln -sf /usr/share/libdrm/amdgpu.ids /opt/amdgpu/share/libdrm/amdgpu.ids
fi

python -m torchtitan.experiments.autoparallel.tests.integration_tests --gpu_arch_type ${{ matrix.gpu-arch-type }} $RUNNER_TEMP/artifacts-to-be-uploaded --ngpu 4
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def build_autoparallel_test_list() -> list[OverrideDefinitions]:
"llama3 AutoParallel FSDP+TP",
"llama3_autoparallel_fsdp_tp",
ngpu=4,
skip_rocm_test=True,
),
# TODO: Re-enable this once we fix the test
# deepseek_v3 tests
Expand Down
Loading