ncnn

Форк
0
/
convolutiondepthwise.comp 
147 строк · 4.6 Кб
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, imfmtc1) 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 { sfp bottom_blob_data[]; };
59
layout (binding = 1) writeonly buffer top_blob { sfp top_blob_data[]; };
60
layout (binding = 2) readonly buffer weight_blob { sfp weight_data[]; };
61
layout (binding = 3) readonly buffer bias_blob { sfp bias_data[]; };
62
#endif
63

64
layout (push_constant) uniform parameter
65
{
66
    int dims;
67
    int w;
68
    int h;
69
    int c;
70
    int cstep;
71

72
    int outdims;
73
    int outw;
74
    int outh;
75
    int outc;
76
    int outcstep;
77
} p;
78

79
void main()
80
{
81
    int gx = int(gl_GlobalInvocationID.x);
82
    int gy = int(gl_GlobalInvocationID.y);
83
    int gz = int(gl_GlobalInvocationID.z);
84

85
    if (gx >= psc(outw) || gy >= psc(outh) || gz >= psc(outc))
86
        return;
87

88
    afp sum;
89

90
    if (bias_term == 1)
91
    {
92
#if NCNN_image_shader
93
        sum = image3d_ld1(bias_blob, ivec3(gz, 0, 0));
94
#else
95
        sum = buffer_ld1(bias_data, gz);
96
#endif
97
    }
98
    else
99
    {
100
        sum = afp(0.f);
101
    }
102

103
    // depth-wise convolution
104
#if NCNN_image_shader
105
    int sy = gy * stride_h;
106
    int wx = 0;
107

108
    for (int y = 0; y < kernel_h; y++)
109
    {
110
        int sx = gx * stride_w;
111

112
        for (int x = 0; x < kernel_w; x++)
113
        {
114
            sum += image3d_ld1(weight_blob, ivec3(wx, gz, 0)) * image3d_ld1(bottom_blob, ivec3(sx, sy, gz));
115

116
            sx += dilation_w;
117
            wx += 1;
118
        }
119

120
        sy += dilation_h;
121
    }
122
#else
123
    int w_offset = gz * kernel_w * kernel_h;
124
    int v_offset = gz * psc(cstep) + gy * stride_h * psc(w) + gx * stride_w;
125

126
    for (int y = 0; y < kernel_h; y++)
127
    {
128
        for (int x = 0; x < kernel_w; x++)
129
        {
130
            sum += buffer_ld1(weight_data, w_offset + x) * buffer_ld1(bottom_blob_data, v_offset + x * dilation_w);
131
        }
132

133
        v_offset += dilation_h * psc(w);
134
        w_offset += kernel_w;
135
    }
136
#endif
137

138
    sum = activation_afp(sum, activation_type, activation_param_0, activation_param_1);
139

140
#if NCNN_image_shader
141
    image3d_st1(top_blob, ivec3(gx, gy, gz), sum);
142
#else
143
    const int gi = gz * psc(outcstep) + gy * psc(outw) + gx;
144

145
    buffer_st1(top_blob_data, gi, sum);
146
#endif
147
}
148

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

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

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

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