summaryrefslogtreecommitdiff
path: root/vulkan-shaders/generic_head.comp
diff options
context:
space:
mode:
author0cc4m <picard12@live.de>2024-06-16 07:17:31 +0200
committerGitHub <noreply@github.com>2024-06-16 07:17:31 +0200
commit7c7836d9d4062d6858e3fb337b135c417ccee6ce (patch)
treec896967a106e2985763bf1c7bfd7bfb8cbe4f0fd /vulkan-shaders/generic_head.comp
parent0c7b3595b9e5ad2355818e259f06b0dc3f0065b3 (diff)
Vulkan Shader Refactor, Memory Debugging Option (#7947)
* Refactor shaders, extract GLSL code from ggml_vk_generate_shaders.py into vulkan-shaders directory * Improve debug log code * Add memory debug output option * Fix flake8 * Fix unnecessary high llama-3 VRAM use
Diffstat (limited to 'vulkan-shaders/generic_head.comp')
-rw-r--r--vulkan-shaders/generic_head.comp9
1 files changed, 9 insertions, 0 deletions
diff --git a/vulkan-shaders/generic_head.comp b/vulkan-shaders/generic_head.comp
new file mode 100644
index 00000000..66e46ae6
--- /dev/null
+++ b/vulkan-shaders/generic_head.comp
@@ -0,0 +1,9 @@
+#extension GL_EXT_shader_16bit_storage : require
+
+layout (push_constant) uniform parameter
+{
+ uint KX;
+ uint KY;
+ float param1;
+ float param2;
+} p;