ncnn

Форк
0
/
padding.comp 
259 строк · 8.0 Кб
1
// Tencent is pleased to support the open source community by making ncnn available.
2
//
3
// Copyright (C) 2018 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 type = 1;
25
layout (constant_id = 1) const float value = 0;
26
layout (constant_id = 2) const int per_channel_pad = 0;
27

28
#define shape_constant_id_offset 3
29
layout (constant_id = shape_constant_id_offset + 0) const int dims = 0;
30
layout (constant_id = shape_constant_id_offset + 1) const int w = 0;
31
layout (constant_id = shape_constant_id_offset + 2) const int h = 0;
32
layout (constant_id = shape_constant_id_offset + 3) const int c = 0;
33
layout (constant_id = shape_constant_id_offset + 4) const int cstep = 0;
34

35
layout (constant_id = shape_constant_id_offset + 5) const int outdims = 0;
36
layout (constant_id = shape_constant_id_offset + 6) const int outw = 0;
37
layout (constant_id = shape_constant_id_offset + 7) const int outh = 0;
38
layout (constant_id = shape_constant_id_offset + 8) const int outc = 0;
39
layout (constant_id = shape_constant_id_offset + 9) const int outcstep = 0;
40

41
#if NCNN_image_shader
42
layout (binding = 0) uniform unfp sampler3D bottom_blob;
43
layout (binding = 1, imfmtc1) writeonly uniform unfp image3D top_blob;
44
layout (binding = 2) uniform unfp sampler3D per_channel_pad_blob;
45
#else
46
layout (binding = 0) readonly buffer bottom_blob { sfp bottom_blob_data[]; };
47
layout (binding = 1) writeonly buffer top_blob { sfp top_blob_data[]; };
48
layout (binding = 2) readonly buffer per_channel_pad_blob { sfp per_channel_pad_blob_data[]; };
49
#endif
50

51
layout (push_constant) uniform parameter
52
{
53
    int dims;
54
    int w;
55
    int h;
56
    int c;
57
    int cstep;
58

59
    int outdims;
60
    int outw;
61
    int outh;
62
    int outc;
63
    int outcstep;
64

65
    int left;
66
    int top;
67
    int front;
68
} p;
69

70
void main()
71
{
72
    int gx = int(gl_GlobalInvocationID.x);
73
    int gy = int(gl_GlobalInvocationID.y);
74
    int gz = int(gl_GlobalInvocationID.z);
75

76
    if (gx >= psc(outw) || gy >= psc(outh) || gz >= psc(outc))
77
        return;
78

79
    if (psc(dims) == 1)
80
    {
81
        int x = gx - p.left;
82

83
        if (type == 0)
84
        {
85
            if (x >= 0 && x < psc(w))
86
            {
87
#if NCNN_image_shader
88
                image3d_cp1(top_blob, ivec3(gx, 0, 0), bottom_blob, ivec3(x, 0, 0));
89
#else
90
                buffer_cp1(top_blob_data, gx, bottom_blob_data, x);
91
#endif
92
            }
93
            else
94
            {
95
                afp v = afp(value);
96
#if NCNN_image_shader
97
                image3d_st1(top_blob, ivec3(gx, 0, 0), v);
98
#else
99
                buffer_st1(top_blob_data, gx, v);
100
#endif
101
            }
102
        }
103
        if (type == 1)
104
        {
105
            x = clamp(x, 0, psc(w) - 1);
106

107
#if NCNN_image_shader
108
            image3d_cp1(top_blob, ivec3(gx, 0, 0), bottom_blob, ivec3(x, 0, 0));
109
#else
110
            buffer_cp1(top_blob_data, gx, bottom_blob_data, x);
111
#endif
112
        }
113
        if (type == 2)
114
        {
115
            x = abs(x);
116
            // NOTE psc(X) get zeros on nvidia
117
            // TODO only enable this workaround for some nvidia driver
118
            x = (p.w - 1) - abs(x - (p.w - 1));
119
//             x = (psc(w) - 1) - abs(x - (psc(w) - 1));
120

121
#if NCNN_image_shader
122
            image3d_cp1(top_blob, ivec3(gx, 0, 0), bottom_blob, ivec3(x, 0, 0));
123
#else
124
            buffer_cp1(top_blob_data, gx, bottom_blob_data, x);
125
#endif
126
        }
127
    }
128
    else if (psc(dims) == 2)
129
    {
130
        const int gi = gy * psc(outw) + gx;
131

132
        int x = gx - p.left;
133
        int y = gy - p.top;
134

135
        if (type == 0)
136
        {
137
            if (x >= 0 && x < psc(w) && y >= 0 && y < psc(h))
138
            {
139
#if NCNN_image_shader
140
                image3d_cp1(top_blob, ivec3(gx, gy, 0), bottom_blob, ivec3(x, y, 0));
141
#else
142
                int v_offset = y * psc(w) + x;
143
                buffer_cp1(top_blob_data, gi, bottom_blob_data, v_offset);
144
#endif
145
            }
146
            else
147
            {
148
                afp v = afp(value);
149
#if NCNN_image_shader
150
                image3d_st1(top_blob, ivec3(gx, gy, 0), v);
151
#else
152
                buffer_st1(top_blob_data, gi, v);
153
#endif
154
            }
155
        }
156
        if (type == 1)
157
        {
158
            x = clamp(x, 0, psc(w) - 1);
159
            y = clamp(y, 0, psc(h) - 1);
160

161
#if NCNN_image_shader
162
            image3d_cp1(top_blob, ivec3(gx, gy, 0), bottom_blob, ivec3(x, y, 0));
163
#else
164
            int v_offset = y * psc(w) + x;
165
            buffer_cp1(top_blob_data, gi, bottom_blob_data, v_offset);
166
#endif
167
        }
168
        if (type == 2)
169
        {
170
            x = abs(x);
171
            y = abs(y);
172
            // NOTE psc(X) get zeros on nvidia
173
            // TODO only enable this workaround for some nvidia driver
174
            x = (p.w - 1) - abs(x - (p.w - 1));
175
            y = (p.h - 1) - abs(y - (p.h - 1));
176
//             x = (psc(w) - 1) - abs(x - (psc(w) - 1));
177
//             y = (psc(h) - 1) - abs(y - (psc(h) - 1));
178

179
#if NCNN_image_shader
180
            image3d_cp1(top_blob, ivec3(gx, gy, 0), bottom_blob, ivec3(x, y, 0));
181
#else
182
            int v_offset = y * psc(w) + x;
183
            buffer_cp1(top_blob_data, gi, bottom_blob_data, v_offset);
184
#endif
185
        }
186
    }
187
    else // if (psc(dims) == 3)
188
    {
189
        const int gi = gz * psc(outcstep) + gy * psc(outw) + gx;
190

191
        int x = gx - p.left;
192
        int y = gy - p.top;
193
        int z = gz - p.front;
194

195
        if (type == 0)
196
        {
197
            if (x >= 0 && x < psc(w) && y >= 0 && y < psc(h) && z >= 0 && z < psc(c))
198
            {
199
#if NCNN_image_shader
200
                image3d_cp1(top_blob, ivec3(gx, gy, gz), bottom_blob, ivec3(x, y, z));
201
#else
202
                int v_offset = z * psc(cstep) + y * psc(w) + x;
203
                buffer_cp1(top_blob_data, gi, bottom_blob_data, v_offset);
204
#endif
205
            }
206
            else if (per_channel_pad == 1)
207
            {
208
#if NCNN_image_shader
209
                image3d_cp1(top_blob, ivec3(gx, gy, gz), per_channel_pad_blob, ivec3(gz, 0, 0));
210
#else
211
                buffer_cp1(top_blob_data, gi, per_channel_pad_blob_data, gz);
212
#endif
213
            }
214
            else
215
            {
216
                afp v = afp(value);
217
#if NCNN_image_shader
218
                image3d_st1(top_blob, ivec3(gx, gy, gz), v);
219
#else
220
                buffer_st1(top_blob_data, gi, v);
221
#endif
222
            }
223
        }
224
        if (type == 1)
225
        {
226
            x = clamp(x, 0, psc(w) - 1);
227
            y = clamp(y, 0, psc(h) - 1);
228
            z = clamp(z, 0, psc(c) - 1);
229

230
#if NCNN_image_shader
231
            image3d_cp1(top_blob, ivec3(gx, gy, gz), bottom_blob, ivec3(x, y, z));
232
#else
233
            int v_offset = z * psc(cstep) + y * psc(w) + x;
234
            buffer_cp1(top_blob_data, gi, bottom_blob_data, v_offset);
235
#endif
236
        }
237
        if (type == 2)
238
        {
239
            x = abs(x);
240
            y = abs(y);
241
            z = abs(z);
242
            // NOTE psc(X) get zeros on nvidia
243
            // TODO only enable this workaround for some nvidia driver
244
            x = (p.w - 1) - abs(x - (p.w - 1));
245
            y = (p.h - 1) - abs(y - (p.h - 1));
246
            z = (p.c - 1) - abs(z - (p.c - 1));
247
//             x = (psc(w) - 1) - abs(x - (psc(w) - 1));
248
//             y = (psc(h) - 1) - abs(y - (psc(h) - 1));
249
//             z = (psc(c) - 1) - abs(z - (psc(c) - 1));
250

251
#if NCNN_image_shader
252
            image3d_cp1(top_blob, ivec3(gx, gy, gz), bottom_blob, ivec3(x, y, z));
253
#else
254
            int v_offset = z * psc(cstep) + y * psc(w) + x;
255
            buffer_cp1(top_blob_data, gi, bottom_blob_data, v_offset);
256
#endif
257
        }
258
    }
259
}
260

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

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

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

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