mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-08-02 16:13:09 +02:00
21 lines
458 B
Plaintext
21 lines
458 B
Plaintext
#version 450
|
|
|
|
#include "types.comp"
|
|
#include "generic_unary_head.comp"
|
|
|
|
layout(local_size_x = 512, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
void main() {
|
|
const uint idx = get_idx();
|
|
|
|
if (idx >= p.ne) {
|
|
return;
|
|
}
|
|
|
|
#ifndef OPTIMIZATION_ERROR_WORKAROUND
|
|
data_d[get_doffset() + dst_idx(idx)] = D_TYPE(data_a[get_aoffset() + src0_idx(idx)]);
|
|
#else
|
|
data_d[get_doffset() + dst_idx(idx)] = data_a[get_aoffset() + src0_idx(idx)];
|
|
#endif
|
|
}
|