summaryrefslogtreecommitdiff
path: root/ggml/src/vulkan-shaders/copy.comp
blob: c26917c0f9af5438fc48718413deed5a9be8d264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#version 450

#include "types.comp"
#include "generic_unary_head.comp"

void main() {
    const uint idx = get_idx();

    if (idx >= p.ne) {
        return;
    }

#ifndef OPTIMIZATION_ERROR_WORKAROUND
    data_d[p.d_offset + dst_idx(idx)] = D_TYPE(data_a[src0_idx(idx)]);
#else
    data_d[p.d_offset + dst_idx(idx)] = data_a[src0_idx(idx)];
#endif
}