llama.cpp/ggml/src/vulkan-shaders/cos.comp
Georgi Gerganov 231cff5f6f sync : ggml
2024-08-27 22:41:27 +03:00

16 lines
287 B
Plaintext

#version 450
#include "types.comp"
#include "generic_unary_head.comp"
void main() {
const uint idx = get_idx();
if (idx >= p.ne) {
return;
}
const FLOAT_TYPE val = FLOAT_TYPE(data_a[src0_idx(idx)]);
data_d[p.d_offset + dst_idx(idx)] = D_TYPE(cos(val));
}