WIP: refactor for subgroups on mat * vec kernel.

This commit is contained in:
Adam Treat 2023-09-26 10:45:00 -04:00
parent 9611c4081a
commit 36c7113d14
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 0631ea363c14335969095976bbe17bf20503bc6d Subproject commit d3915bb50ed8872242edf798f3d0518028569650

View File

@ -173,7 +173,7 @@ if (LLAMA_KOMPUTE)
set(spv_file ${CMAKE_CURRENT_BINARY_DIR}/${OP_FILE}.spv) set(spv_file ${CMAKE_CURRENT_BINARY_DIR}/${OP_FILE}.spv)
add_custom_command( add_custom_command(
OUTPUT ${spv_file} OUTPUT ${spv_file}
DEPENDS ${LLAMA_DIR}/${source} DEPENDS ${LLAMA_DIR}/${source} ${LLAMA_DIR}/kompute/common.comp
COMMAND ${glslc_executable} --target-env=vulkan1.2 -o ${spv_file} ${LLAMA_DIR}/${source} COMMAND ${glslc_executable} --target-env=vulkan1.2 -o ${spv_file} ${LLAMA_DIR}/${source}
COMMENT "Compiling ${source} to ${source}.spv" COMMENT "Compiling ${source} to ${source}.spv"
) )