ncnn

Форк
0
/
convolutiondepthwise_group_pack4.comp 
195 строк · 6.1 Кб
1
// Tencent is pleased to support the open source community by making ncnn available.
2
//
3
// Copyright (C) 2019 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
#extension GL_GOOGLE_include_directive: enable
25
#include "vulkan_activation.comp"
26

27
layout (constant_id = 0) const int kernel_w = 1;
28
layout (constant_id = 1) const int kernel_h = 1;
29
layout (constant_id = 2) const int dilation_w = 1;
30
layout (constant_id = 3) const int dilation_h = 1;
31
layout (constant_id = 4) const int stride_w = 1;
32
layout (constant_id = 5) const int stride_h = 1;
33
layout (constant_id = 6) const int bias_term = 0;
34
layout (constant_id = 7) const int group = 1;
35
layout (constant_id = 8) const int activation_type = 0;
36
layout (constant_id = 9) const float activation_param_0 = 0;
37
layout (constant_id = 10) const float activation_param_1 = 0;
38

39
#define shape_constant_id_offset 11
40
layout (constant_id = shape_constant_id_offset + 0) const int dims = 0;
41
layout (constant_id = shape_constant_id_offset + 1) const int w = 0;
42
layout (constant_id = shape_constant_id_offset + 2) const int h = 0;
43
layout (constant_id = shape_constant_id_offset + 3) const int c = 0;
44
layout (constant_id = shape_constant_id_offset + 4) const int cstep = 0;
45

46
layout (constant_id = shape_constant_id_offset + 5) const int outdims = 0;
47
layout (constant_id = shape_constant_id_offset + 6) const int outw = 0;
48
layout (constant_id = shape_constant_id_offset + 7) const int outh = 0;
49
layout (constant_id = shape_constant_id_offset + 8) const int outc = 0;
50
layout (constant_id = shape_constant_id_offset + 9) const int outcstep = 0;
51

52
#if NCNN_image_shader
53
layout (binding = 0) uniform unfp sampler3D bottom_blob;
54
layout (binding = 1, imfmtc4) writeonly uniform unfp image3D top_blob;
55
layout (binding = 2) uniform unfp sampler3D weight_blob;
56
layout (binding = 3) uniform unfp sampler3D bias_blob;
57
#else
58
layout (binding = 0) readonly buffer bottom_blob { sfpvec4 bottom_blob_data[]; };
59
layout (binding = 1) writeonly buffer top_blob { sfpvec4 top_blob_data[]; };
60
#if NCNN_fp16_packed || (NCNN_fp16_storage && !NCNN_fp16_arithmetic)
61
// GL_EXT_shader_16bit_storage does not define f16mat4 type :(
62
layout (binding = 2) readonly buffer weight_blob { sfpvec4 weight_data[]; };
63
#else
64
layout (binding = 2) readonly buffer weight_blob { sfpmat4 weight_data[]; };
65
#endif
66
layout (binding = 3) readonly buffer bias_blob { sfpvec4 bias_data[]; };
67
#endif
68

69
layout (push_constant) uniform parameter
70
{
71
    int dims;
72
    int w;
73
    int h;
74
    int c;
75
    int cstep;
76

77
    int outdims;
78
    int outw;
79
    int outh;
80
    int outc;
81
    int outcstep;
82
} p;
83

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

90
    if (gx >= psc(outw) || gy >= psc(outh) || gz >= psc(outc))
91
        return;
92

93
    afpvec4 sum;
94

95
    if (bias_term == 1)
96
    {
97
#if NCNN_image_shader
98
        sum = image3d_ld4(bias_blob, ivec3(gz, 0, 0));
99
#else
100
        sum = buffer_ld4(bias_data, gz);
101
#endif
102
    }
103
    else
104
    {
105
        sum = afpvec4(0.f);
106
    }
107

108
    // group convolution
109
    const int channels_g = psc(c) / group;
110
    const int num_output_g = psc(outc) / group;
111

112
    // group id
113
    const int gg = gz / num_output_g;
114

115
#if NCNN_image_shader
116
    int sz = gg * channels_g;
117

118
    for (int z = 0; z < channels_g; z++)
119
    {
120
        int sy = gy * stride_h;
121
        int wx = 0;
122

123
        for (int y = 0; y < kernel_h; y++)
124
        {
125
            int sx = gx * stride_w;
126

127
            for (int x = 0; x < kernel_w; x++)
128
            {
129
                afpvec4 v = image3d_ld4(bottom_blob, ivec3(sx, sy, sz));
130

131
                afpmat4 k = afpmat4(
132
                    image3d_ld4(weight_blob, ivec3(wx + 0, z, gz)),
133
                    image3d_ld4(weight_blob, ivec3(wx + 1, z, gz)),
134
                    image3d_ld4(weight_blob, ivec3(wx + 2, z, gz)),
135
                    image3d_ld4(weight_blob, ivec3(wx + 3, z, gz))
136
                );
137

138
                sum += v * k;
139

140
                sx += dilation_w;
141
                wx += 4;
142
            }
143

144
            sy += dilation_h;
145
        }
146

147
        sz += 1;
148
    }
149
#else
150
    int w_offset = gz * channels_g * kernel_w * kernel_h;
151
    int v_offset_0 = gg * channels_g * psc(cstep);
152

153
    for (int z = 0; z < channels_g; z++)
154
    {
155
        int v_offset = v_offset_0 + gy * stride_h * psc(w) + gx * stride_w;
156

157
        for (int y = 0; y < kernel_h; y++)
158
        {
159
            for (int x = 0; x < kernel_w; x++)
160
            {
161
                afpvec4 v = buffer_ld4(bottom_blob_data, v_offset + x * dilation_w);
162

163
#if NCNN_fp16_packed || (NCNN_fp16_storage && !NCNN_fp16_arithmetic)
164
                // GL_EXT_shader_16bit_storage does not define f16mat4 type :(
165
                afpmat4 k = afpmat4(
166
                    buffer_ld4(weight_data, (w_offset + x) * 4 + 0),
167
                    buffer_ld4(weight_data, (w_offset + x) * 4 + 1),
168
                    buffer_ld4(weight_data, (w_offset + x) * 4 + 2),
169
                    buffer_ld4(weight_data, (w_offset + x) * 4 + 3)
170
                );
171
#else
172
                afpmat4 k = afpmat4(weight_data[w_offset + x]);
173
#endif
174

175
                sum += v * k;
176
            }
177

178
            v_offset += dilation_h * psc(w);
179
            w_offset += kernel_w;
180
        }
181

182
        v_offset_0 += psc(cstep);
183
    }
184
#endif
185

186
    sum = activation_afpvec4(sum, activation_type, activation_param_0, activation_param_1);
187

188
#if NCNN_image_shader
189
    image3d_st4(top_blob, ivec3(gx, gy, gz), sum);
190
#else
191
    const int gi = gz * psc(outcstep) + gy * psc(outw) + gx;
192

193
    buffer_st4(top_blob_data, gi, sum);
194
#endif
195
}
196

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

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

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

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