Skip to content

Commit 29c768d

Browse files
committed
fix glslc integer dot product test
1 parent f19cc77 commit 29c768d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ggml/src/ggml-vulkan/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ if (Vulkan_FOUND)
6767

6868
test_shader_extension_support(
6969
"GL_EXT_integer_dot_product"
70-
"${CMAKE_CURRENT_SOURCE_DIR}/vulkan-shaders/feature-tests/integer_dot_product.comp"
70+
"${CMAKE_CURRENT_SOURCE_DIR}/vulkan-shaders/feature-tests/integer_dot.comp"
7171
"GGML_VULKAN_INTEGER_DOT_GLSLC_SUPPORT"
7272
)
7373

ggml/src/ggml-vulkan/vulkan-shaders/glu_head.glsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ layout(local_size_x = 512, local_size_y = 1, local_size_z = 1) in;
66

77
layout (binding = 0) readonly buffer A {A_TYPE data_a[];};
88
layout (binding = 1) readonly buffer B {A_TYPE data_b[];};
9-
layout (binding = 2) writeonly buffer D {D_TYPE data_d[];};
9+
layout (binding = 2) writeonly buffer D {D_TYPE data_d[];};
1010

1111
layout (push_constant) uniform parameter
1212
{

0 commit comments

Comments
 (0)