mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 21:39:52 +00:00
14 lines
315 B
Plaintext
14 lines
315 B
Plaintext
|
#version 450
|
||
|
|
||
|
#include "types.comp"
|
||
|
#include "generic_unary_head.comp"
|
||
|
|
||
|
void main() {
|
||
|
if (gl_GlobalInvocationID.x >= p.ne) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const FLOAT_TYPE val = FLOAT_TYPE(data_a[src0_idx(gl_GlobalInvocationID.x)]);
|
||
|
data_d[p.d_offset + dst_idx(gl_GlobalInvocationID.x)] = D_TYPE(val * val);
|
||
|
}
|