llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/reglu.comp

10 lines
126 B
Plaintext

#version 450
#include "glu_head.comp"
float op(float a, float b) {
return max(a, 0.0f) * b;
}
#include "glu_main.comp"