fix: correct AMDGPU_TARGETS to include gfx940/gfx1010/gfx1200

Targets were corrupted during previous patch iterations, contained
gfx908/gfx90a from the CMake preset instead of gfx940/gfx1010/gfx1200.
This commit is contained in:
2026-05-09 22:40:40 -04:00
parent 0c612d9731
commit aa6bbe87bf

View File

@@ -46,7 +46,7 @@ ENV LDFLAGS=-s
RUN mkdir -p build && cd build && \ RUN mkdir -p build && cd build && \
cmake .. \ cmake .. \
--preset 'ROCm 6' \ --preset 'ROCm 6' \
-DAMDGPU_TARGETS="gfx906:xnack-;gfx908:xnack-;gfx90a:xnack-;gfx1030;gfx1100" \ -DAMDGPU_TARGETS="gfx906:xnack-;gfx940;gfx1010;gfx1030;gfx1100;gfx1200" \
-DCMAKE_HIP_COMPILER=/opt/rocm/bin/amdclang++ \ -DCMAKE_HIP_COMPILER=/opt/rocm/bin/amdclang++ \
-DCMAKE_BUILD_TYPE=Release && \ -DCMAKE_BUILD_TYPE=Release && \
cmake --build . -- -l $(nproc) && \ cmake --build . -- -l $(nproc) && \