Skip to content
Open
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: 7 additions & 1 deletion bin/run_composable-kernels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,13 @@ else
fi

# For some reason, CK on gfx12 wants this set.
CKCmakeCmd+="-DBUILD_DEV=On"
CKCmakeCmd+="-DBUILD_DEV=On "

# TODO: Remove this workaround when possible.
# As of 2026-JUN-12 this is needed to bypass DPP-related build errors:
# error: cannot compile inline asm
# <inline asm>:2:33: error: not a valid operand.
CKCmakeCmd+="-DDISABLE_DPP_KERNELS=ON"

# Ensure CK build directory is cleaned.
if [ "${ShouldRebuildCK}" == 'yes' ]; then
Expand Down