File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,8 @@ if (Vulkan_FOUND)
181181                    -DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR} 
182182                    -DGGML_VULKAN_COOPMAT_GLSLC_SUPPORT=${GGML_VULKAN_COOPMAT_GLSLC_SUPPORT} 
183183                    -DGGML_VULKAN_COOPMAT2_GLSLC_SUPPORT=${GGML_VULKAN_COOPMAT2_GLSLC_SUPPORT} 
184+                     -DGGML_VULKAN_INTEGER_DOT_GLSLC_SUPPORT=${GGML_VULKAN_INTEGER_DOT_GLSLC_SUPPORT} 
185+                     -DGGML_VULKAN_BFLOAT16_GLSLC_SUPPORT=${GGML_VULKAN_BFLOAT16_GLSLC_SUPPORT} 
184186            BUILD_COMMAND  ${CMAKE_COMMAND}  --build  .
185187            INSTALL_COMMAND ${CMAKE_COMMAND}  --install  .
186188            INSTALL_DIR ${CMAKE_BINARY_DIR} 
Original file line number Diff line number Diff line change 66if  (GGML_VULKAN_COOPMAT2_GLSLC_SUPPORT)
77    add_compile_definitions (GGML_VULKAN_COOPMAT2_GLSLC_SUPPORT)
88endif ()
9+ if  (GGML_VULKAN_INTEGER_DOT_GLSLC_SUPPORT)
10+     add_compile_definitions (GGML_VULKAN_INTEGER_DOT_GLSLC_SUPPORT)
11+ endif ()
12+ if  (GGML_VULKAN_BFLOAT16_GLSLC_SUPPORT)
13+     add_compile_definitions (GGML_VULKAN_BFLOAT16_GLSLC_SUPPORT)
14+ endif ()
915set (TARGET  vulkan-shaders-gen)
1016add_executable (${TARGET}  vulkan-shaders-gen.cpp)
1117install (TARGETS ${TARGET}  RUNTIME)
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments