ncnn

Форк
0
/
innerproduct_gemm_wp4.comp 
161 строка · 5.5 Кб
1
// Tencent is pleased to support the open source community by making ncnn available.
2
//
3
// Copyright (C) 2021 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 bias_term = 0;
28
layout (constant_id = 1) const int activation_type = 0;
29
layout (constant_id = 2) const float activation_param_0 = 0;
30
layout (constant_id = 3) const float activation_param_1 = 0;
31

32
#define shape_constant_id_offset 4
33
layout (constant_id = shape_constant_id_offset + 0) const int dims = 0;
34
layout (constant_id = shape_constant_id_offset + 1) const int w = 0;
35
layout (constant_id = shape_constant_id_offset + 2) const int h = 0;
36
layout (constant_id = shape_constant_id_offset + 3) const int c = 0;
37
layout (constant_id = shape_constant_id_offset + 4) const int cstep = 0;
38

39
layout (constant_id = shape_constant_id_offset + 5) const int outdims = 0;
40
layout (constant_id = shape_constant_id_offset + 6) const int outw = 0;
41
layout (constant_id = shape_constant_id_offset + 7) const int outh = 0;
42
layout (constant_id = shape_constant_id_offset + 8) const int outc = 0;
43
layout (constant_id = shape_constant_id_offset + 9) const int outcstep = 0;
44

45
#if NCNN_image_shader
46
layout (binding = 0) uniform unfp sampler3D bottom_blob;
47
layout (binding = 1, imfmtc1) writeonly uniform unfp image3D top_blob;
48
layout (binding = 2) uniform unfp sampler3D weight_blob;
49
layout (binding = 3) uniform unfp sampler3D bias_blob;
50
#else
51
layout (binding = 0) readonly buffer bottom_blob { sfp bottom_blob_data[]; };
52
layout (binding = 1) writeonly buffer top_blob { sfp top_blob_data[]; };
53
#if NCNN_fp16_packed || (NCNN_fp16_storage && !NCNN_fp16_arithmetic)
54
// GL_EXT_shader_16bit_storage does not define f16mat4 type :(
55
layout (binding = 2) readonly buffer weight_blob { sfpvec4 weight_data[]; };
56
#else
57
layout (binding = 2) readonly buffer weight_blob { sfpmat4 weight_data[]; };
58
#endif
59
layout (binding = 3) readonly buffer bias_blob { sfpvec4 bias_data[]; };
60
#endif
61

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

70
    int outdims;
71
    int outw;
72
    int outh;
73
    int outc;
74
    int outcstep;
75
} p;
76

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

83
    if (gx * 4 >= psc(outw) || gy >= psc(outh) || gz >= 1)
84
        return;
85

86
    afpvec4 sum;
87

88
    if (bias_term == 1)
89
    {
90
#if NCNN_image_shader
91
        sum = image3d_ld4(bias_blob, ivec3(gx, 0, 0));
92
#else
93
        sum = buffer_ld4(bias_data, gx);
94
#endif
95
    }
96
    else
97
    {
98
        sum = afpvec4(0.f);
99
    }
100

101
#if NCNN_image_shader
102
    for (int i = 0; i < psc(w) / 4; i++)
103
    {
104
        afpvec4 v;
105
        v.r = image3d_ld1(bottom_blob, ivec3(i * 4 + 0, gy, 0));
106
        v.g = image3d_ld1(bottom_blob, ivec3(i * 4 + 1, gy, 0));
107
        v.b = image3d_ld1(bottom_blob, ivec3(i * 4 + 2, gy, 0));
108
        v.a = image3d_ld1(bottom_blob, ivec3(i * 4 + 3, gy, 0));
109

110
        afpmat4 k = afpmat4(
111
            image3d_ld4(weight_blob, ivec3(i * 4 + 0, gx, 0)),
112
            image3d_ld4(weight_blob, ivec3(i * 4 + 1, gx, 0)),
113
            image3d_ld4(weight_blob, ivec3(i * 4 + 2, gx, 0)),
114
            image3d_ld4(weight_blob, ivec3(i * 4 + 3, gx, 0))
115
        );
116

117
        sum += v * k;
118
    }
119
#else
120
    int v_offset = gy * psc(w);
121
    int w_offset = gx * psc(w) / 4;
122

123
    for (int i = 0; i < psc(w) / 4; i++)
124
    {
125
        afpvec4 v;
126
        v.r = buffer_ld1(bottom_blob_data, v_offset + i * 4 + 0);
127
        v.g = buffer_ld1(bottom_blob_data, v_offset + i * 4 + 1);
128
        v.b = buffer_ld1(bottom_blob_data, v_offset + i * 4 + 2);
129
        v.a = buffer_ld1(bottom_blob_data, v_offset + i * 4 + 3);
130

131
#if NCNN_fp16_packed || (NCNN_fp16_storage && !NCNN_fp16_arithmetic)
132
        // GL_EXT_shader_16bit_storage does not define f16mat4 type :(
133
        afpmat4 k = afpmat4(
134
            buffer_ld4(weight_data, (w_offset + i) * 4 + 0),
135
            buffer_ld4(weight_data, (w_offset + i) * 4 + 1),
136
            buffer_ld4(weight_data, (w_offset + i) * 4 + 2),
137
            buffer_ld4(weight_data, (w_offset + i) * 4 + 3)
138
        );
139
#else
140
        afpmat4 k = afpmat4(weight_data[w_offset + i]);
141
#endif
142

143
        sum += v * k;
144
    }
145
#endif
146

147
    sum = activation_afpvec4(sum, activation_type, activation_param_0, activation_param_1);
148

149
#if NCNN_image_shader
150
    image3d_st1(top_blob, ivec3(gx * 4 + 0, gy, 0), sum.r);
151
    image3d_st1(top_blob, ivec3(gx * 4 + 1, gy, 0), sum.g);
152
    image3d_st1(top_blob, ivec3(gx * 4 + 2, gy, 0), sum.b);
153
    image3d_st1(top_blob, ivec3(gx * 4 + 3, gy, 0), sum.a);
154
#else
155
    const int gi = gy * psc(outw) + gx * 4;
156
    buffer_st1(top_blob_data, gi + 0, sum.r);
157
    buffer_st1(top_blob_data, gi + 1, sum.g);
158
    buffer_st1(top_blob_data, gi + 2, sum.b);
159
    buffer_st1(top_blob_data, gi + 3, sum.a);
160
#endif
161
}
162

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

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

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

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