ncnn

Форк
0
/
binaryop_broadcast.comp 
209 строк · 6.0 Кб
1
// Tencent is pleased to support the open source community by making ncnn available.
2
//
3
// Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.
4
//
5
// Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
6
// in compliance with the License. You may obtain a copy of the License at
7
//
8
// https://opensource.org/licenses/BSD-3-Clause
9
//
10
// Unless required by applicable law or agreed to in writing, software distributed
11
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
12
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
13
// specific language governing permissions and limitations under the License.
14

15
#version 450
16

17
#if NCNN_fp16_storage
18
#extension GL_EXT_shader_16bit_storage: require
19
#endif
20
#if NCNN_fp16_arithmetic
21
#extension GL_EXT_shader_explicit_arithmetic_types_float16: require
22
#endif
23

24
layout (constant_id = 0) const int op_type = 0;
25

26
#define shape_constant_id_offset 1
27
layout (constant_id = shape_constant_id_offset + 0) const int adims = 0;
28
layout (constant_id = shape_constant_id_offset + 1) const int aw = 0;
29
layout (constant_id = shape_constant_id_offset + 2) const int ah = 0;
30
layout (constant_id = shape_constant_id_offset + 3) const int ad = 0;
31
layout (constant_id = shape_constant_id_offset + 4) const int ac = 0;
32
layout (constant_id = shape_constant_id_offset + 5) const int acstep = 0;
33

34
layout (constant_id = shape_constant_id_offset + 6) const int bdims = 0;
35
layout (constant_id = shape_constant_id_offset + 7) const int bw = 0;
36
layout (constant_id = shape_constant_id_offset + 8) const int bh = 0;
37
layout (constant_id = shape_constant_id_offset + 9) const int bd = 0;
38
layout (constant_id = shape_constant_id_offset + 10) const int bc = 0;
39
layout (constant_id = shape_constant_id_offset + 11) const int bcstep = 0;
40

41
layout (constant_id = shape_constant_id_offset + 12) const int outdims = 0;
42
layout (constant_id = shape_constant_id_offset + 13) const int outw = 0;
43
layout (constant_id = shape_constant_id_offset + 14) const int outh = 0;
44
layout (constant_id = shape_constant_id_offset + 15) const int outd = 0;
45
layout (constant_id = shape_constant_id_offset + 16) const int outc = 0;
46
layout (constant_id = shape_constant_id_offset + 17) const int outcstep = 0;
47

48
#if NCNN_image_shader
49
layout (binding = 0) uniform unfp sampler3D a_blob_3d;
50
layout (binding = 1) uniform unfp sampler3D b_blob_3d;
51
layout (binding = 2, imfmtc1) writeonly uniform unfp image3D top_blob_3d;
52
#else
53
layout (binding = 0) readonly buffer a_blob { sfp a_blob_data[]; };
54
layout (binding = 1) readonly buffer b_blob { sfp b_blob_data[]; };
55
layout (binding = 2) writeonly buffer top_blob { sfp top_blob_data[]; };
56
#endif
57

58
layout (push_constant) uniform parameter
59
{
60
    int adims;
61
    int aw;
62
    int ah;
63
    int ad;
64
    int ac;
65
    int acstep;
66

67
    int bdims;
68
    int bw;
69
    int bh;
70
    int bd;
71
    int bc;
72
    int bcstep;
73

74
    int outdims;
75
    int outw;
76
    int outh;
77
    int outd;
78
    int outc;
79
    int outcstep;
80
} p;
81

82
void main()
83
{
84
    int gx = int(gl_GlobalInvocationID.x);
85
    int gy = int(gl_GlobalInvocationID.y);
86
    int gz = int(gl_GlobalInvocationID.z);
87

88
    if (gx >= psc(outw) || gy >= psc(outh) * psc(outd) || gz >= psc(outc))
89
        return;
90

91
    int yd = gy / psc(outh);
92
    int yh = gy % psc(outh);
93

94
    int ax = gx;
95
    int ay = gy;
96
    int az = gz;
97

98
    int bx = gx;
99
    int by = gy;
100
    int bz = gz;
101

102
    if (psc(adims) == psc(bdims))
103
    {
104
        // explicit broadcast
105
        ax = min(gx, psc(aw) - 1);
106
        ay = min(yd, psc(ad) - 1) * psc(ah) + min(yh, psc(ah) - 1);
107
        az = min(gz, psc(ac) - 1);
108

109
        bx = min(gx, psc(bw) - 1);
110
        by = min(yd, psc(bd) - 1) * psc(bh) + min(yh, psc(bh) - 1);
111
        bz = min(gz, psc(bc) - 1);
112
    }
113
    else
114
    {
115
        // implicit broadcast
116
        if (psc(adims) == 4)
117
        {
118
            if (psc(bdims) == 3)
119
            {
120
                // type 13
121
                bx = yh;
122
                by = yd;
123
                bz = gz;
124
            }
125

126
            if (psc(bdims) == 2)
127
            {
128
                // type 12
129
                bx = yd;
130
                by = gz;
131
                bz = 0;
132
            }
133

134
            if (psc(bdims) == 1)
135
            {
136
                // type 11
137
                bx = gz;
138
                by = 0;
139
                bz = 0;
140
            }
141
        }
142
        else if (psc(adims) == 3)
143
        {
144
            if (psc(bdims) == 2)
145
            {
146
                // type 10
147
                bx = gy;
148
                by = gz;
149
                bz = 0;
150
            }
151

152
            if (psc(bdims) == 1)
153
            {
154
                // type 9
155
                bx = gz;
156
                by = 0;
157
                bz = 0;
158
            }
159
        }
160
        else // if (psc(adims) == 2)
161
        {
162
            // if (psc(bdims) == 1)
163
            {
164
                // type 8
165
                bx = gy;
166
                by = 0;
167
                bz = 0;
168
            }
169
        }
170
    }
171

172
#if NCNN_image_shader
173
    afp v1 = image3d_ld1(a_blob_3d, ivec3(ax, ay, az));
174
    afp v2 = image3d_ld1(b_blob_3d, ivec3(bx, by, bz));
175
#else
176
    int ai = az * psc(acstep) + ay * psc(aw) + ax;
177
    int bi = bz * psc(bcstep) + by * psc(bw) + bx;
178

179
    afp v1 = buffer_ld1(a_blob_data, ai);
180
    afp v2 = buffer_ld1(b_blob_data, bi);
181
#endif
182

183
    afp res;
184

185
    if (op_type == 0) res = v1 + v2;
186
    if (op_type == 1) res = v1 - v2;
187
    if (op_type == 2) res = v1 * v2;
188
    if (op_type == 3) res = v1 / v2;
189
    if (op_type == 4) res = max(v1, v2);
190
    if (op_type == 5) res = min(v1, v2);
191
    if (op_type == 6) res = pow(v1, v2);
192
    if (op_type == 7) res = v2 - v1;
193
    if (op_type == 8) res = v2 / v1;
194
    if (op_type == 9) res = pow(v2, v1);
195
#if NCNN_moltenvk
196
    if (op_type == 10) res = afp(atan(float(v1), float(v2)));
197
    if (op_type == 11) res = afp(atan(float(v2), float(v1)));
198
#else
199
    if (op_type == 10) res = atan(v1, v2);
200
    if (op_type == 11) res = atan(v2, v1);
201
#endif
202

203
#if NCNN_image_shader
204
    image3d_st1(top_blob_3d, ivec3(gx, gy, gz), res);
205
#else
206
    int gi = gz * psc(outcstep) + gy * psc(outw) + gx;
207
    buffer_st1(top_blob_data, gi, res);
208
#endif
209
}
210

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.