Perform Vulkan extensions checks in a more sensible order
This commit is contained in:
parent
2c293edad9
commit
573284f2c8
1 changed files with 14 additions and 14 deletions
|
@ -8,20 +8,6 @@ if (Vulkan_FOUND)
|
||||||
../../include/ggml-vulkan.h
|
../../include/ggml-vulkan.h
|
||||||
)
|
)
|
||||||
|
|
||||||
# Compile a test shader to determine whether GL_NV_cooperative_matrix2 is supported.
|
|
||||||
# If it's not, there will be an error to stderr.
|
|
||||||
# If it's supported, set a define to indicate that we should compile those shaders
|
|
||||||
execute_process(COMMAND ${Vulkan_GLSLC_EXECUTABLE} -o - -fshader-stage=compute --target-env=vulkan1.3 "${CMAKE_CURRENT_SOURCE_DIR}/vulkan-shaders/test_coopmat2_support.comp"
|
|
||||||
OUTPUT_VARIABLE glslc_output
|
|
||||||
ERROR_VARIABLE glslc_error)
|
|
||||||
|
|
||||||
if (${glslc_error} MATCHES ".*extension not supported: GL_NV_cooperative_matrix2.*")
|
|
||||||
message(STATUS "GL_NV_cooperative_matrix2 not supported by glslc")
|
|
||||||
else()
|
|
||||||
message(STATUS "GL_NV_cooperative_matrix2 supported by glslc")
|
|
||||||
add_compile_definitions(GGML_VULKAN_COOPMAT2_GLSLC_SUPPORT)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Compile a test shader to determine whether GL_KHR_cooperative_matrix is supported.
|
# Compile a test shader to determine whether GL_KHR_cooperative_matrix is supported.
|
||||||
# If it's not, there will be an error to stderr.
|
# If it's not, there will be an error to stderr.
|
||||||
# If it's supported, set a define to indicate that we should compile those shaders
|
# If it's supported, set a define to indicate that we should compile those shaders
|
||||||
|
@ -36,6 +22,20 @@ if (Vulkan_FOUND)
|
||||||
add_compile_definitions(GGML_VULKAN_COOPMAT_GLSLC_SUPPORT)
|
add_compile_definitions(GGML_VULKAN_COOPMAT_GLSLC_SUPPORT)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Compile a test shader to determine whether GL_NV_cooperative_matrix2 is supported.
|
||||||
|
# If it's not, there will be an error to stderr.
|
||||||
|
# If it's supported, set a define to indicate that we should compile those shaders
|
||||||
|
execute_process(COMMAND ${Vulkan_GLSLC_EXECUTABLE} -o - -fshader-stage=compute --target-env=vulkan1.3 "${CMAKE_CURRENT_SOURCE_DIR}/vulkan-shaders/test_coopmat2_support.comp"
|
||||||
|
OUTPUT_VARIABLE glslc_output
|
||||||
|
ERROR_VARIABLE glslc_error)
|
||||||
|
|
||||||
|
if (${glslc_error} MATCHES ".*extension not supported: GL_NV_cooperative_matrix2.*")
|
||||||
|
message(STATUS "GL_NV_cooperative_matrix2 not supported by glslc")
|
||||||
|
else()
|
||||||
|
message(STATUS "GL_NV_cooperative_matrix2 supported by glslc")
|
||||||
|
add_compile_definitions(GGML_VULKAN_COOPMAT2_GLSLC_SUPPORT)
|
||||||
|
endif()
|
||||||
|
|
||||||
target_link_libraries(ggml-vulkan PRIVATE Vulkan::Vulkan)
|
target_link_libraries(ggml-vulkan PRIVATE Vulkan::Vulkan)
|
||||||
target_include_directories(ggml-vulkan PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
target_include_directories(ggml-vulkan PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue