ncnn

Форк
0
/
innerproduct_gemm_wp8to1.comp 
146 строк · 5.0 Кб
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
struct sfpvec8 { f16vec4 abcd; f16vec4 efgh; };
20
#endif
21
#if NCNN_fp16_arithmetic
22
#extension GL_EXT_shader_explicit_arithmetic_types_float16: require
23
#endif
24

25
#extension GL_GOOGLE_include_directive: enable
26
#include "vulkan_activation.comp"
27

28
layout (constant_id = 0) const int bias_term = 0;
29
layout (constant_id = 1) const int activation_type = 0;
30
layout (constant_id = 2) const float activation_param_0 = 0;
31
layout (constant_id = 3) const float activation_param_1 = 0;
32

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

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

46
#if NCNN_image_shader
47
layout (binding = 0) uniform unfp sampler3D bottom_blob;
48
layout (binding = 1, imfmtc1) writeonly uniform unfp image3D top_blob;
49
layout (binding = 2) uniform unfp sampler3D weight_blob;
50
layout (binding = 3) uniform unfp sampler3D bias_blob;
51
#else
52
layout (binding = 0) readonly buffer bottom_blob { sfp bottom_blob_data[]; };
53
layout (binding = 1) writeonly buffer top_blob { sfp top_blob_data[]; };
54
layout (binding = 2) readonly buffer weight_blob { sfpvec8 weight_data[]; };
55
layout (binding = 3) readonly buffer bias_blob { sfp bias_data[]; };
56
#endif
57

58
layout (push_constant) uniform parameter
59
{
60
    int dims;
61
    int w;
62
    int h;
63
    int c;
64
    int cstep;
65

66
    int outdims;
67
    int outw;
68
    int outh;
69
    int outc;
70
    int outcstep;
71
} p;
72

73
void main()
74
{
75
    int gx = int(gl_GlobalInvocationID.x);
76
    int gy = int(gl_GlobalInvocationID.y);
77
    int gz = int(gl_GlobalInvocationID.z);
78

79
    if (gx >= psc(outw) || gy >= psc(outh) || gz >= 1)
80
        return;
81

82
    afp sum;
83

84
    if (bias_term == 1)
85
    {
86
#if NCNN_image_shader
87
        sum = image3d_ld1(bias_blob, ivec3(gx, 0, 0));
88
#else
89
        sum = buffer_ld1(bias_data, gx);
90
#endif
91
    }
92
    else
93
    {
94
        sum = afp(0.f);
95
    }
96

97
#if NCNN_image_shader
98
    for (int i = 0; i < psc(w) / 8; i++)
99
    {
100
        afpvec8 v;
101
        v[0].r = image3d_ld1(bottom_blob, ivec3(i * 8 + 0, gy, 0));
102
        v[0].g = image3d_ld1(bottom_blob, ivec3(i * 8 + 1, gy, 0));
103
        v[0].b = image3d_ld1(bottom_blob, ivec3(i * 8 + 2, gy, 0));
104
        v[0].a = image3d_ld1(bottom_blob, ivec3(i * 8 + 3, gy, 0));
105
        v[1].r = image3d_ld1(bottom_blob, ivec3(i * 8 + 4, gy, 0));
106
        v[1].g = image3d_ld1(bottom_blob, ivec3(i * 8 + 5, gy, 0));
107
        v[1].b = image3d_ld1(bottom_blob, ivec3(i * 8 + 6, gy, 0));
108
        v[1].a = image3d_ld1(bottom_blob, ivec3(i * 8 + 7, gy, 0));
109

110
        afpvec8 k = image3d_ld8(weight_blob, ivec3(i, gx, 0));
111

112
        // sum += dot(v, k);
113
        sum += dot(v[0], k[0]) + dot(v[1], k[1]);
114
    }
115
#else
116
    int v_offset = gy * psc(w);
117
    int w_offset = gx * psc(w) / 8;
118

119
    for (int i = 0; i < psc(w) / 8; i++)
120
    {
121
        afpvec8 v;
122
        v[0].r = buffer_ld1(bottom_blob_data, v_offset + i * 8 + 0);
123
        v[0].g = buffer_ld1(bottom_blob_data, v_offset + i * 8 + 1);
124
        v[0].b = buffer_ld1(bottom_blob_data, v_offset + i * 8 + 2);
125
        v[0].a = buffer_ld1(bottom_blob_data, v_offset + i * 8 + 3);
126
        v[1].r = buffer_ld1(bottom_blob_data, v_offset + i * 8 + 4);
127
        v[1].g = buffer_ld1(bottom_blob_data, v_offset + i * 8 + 5);
128
        v[1].b = buffer_ld1(bottom_blob_data, v_offset + i * 8 + 6);
129
        v[1].a = buffer_ld1(bottom_blob_data, v_offset + i * 8 + 7);
130

131
        afpvec8 k = buffer_ld8(weight_data, w_offset + i);
132

133
        // sum += dot(v, k);
134
        sum += dot(v[0], k[0]) + dot(v[1], k[1]);
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, 0), sum);
142
#else
143
    const int gi = gy * psc(outw) + gx;
144
    buffer_st1(top_blob_data, gi, sum);
145
#endif
146
}
147

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

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

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

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