ncnn

Форк
0
/
innerproduct_pack1to8.comp 
132 строки · 4.0 Кб
1
// Tencent is pleased to support the open source community by making ncnn available.
2
//
3
// Copyright (C) 2020 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, imfmtc4) 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 { sfpvec8 top_blob_data[]; };
54
layout (binding = 2) readonly buffer weight_blob { sfpvec8 weight_data[]; };
55
layout (binding = 3) readonly buffer bias_blob { sfpvec8 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 >= 1 || gz >= 1)
80
        return;
81

82
    afpvec8 sum;
83

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

97
#if NCNN_image_shader
98
    int wx = 0;
99

100
    for (int i = 0; i < psc(w); i++)
101
    {
102
        afp v = image3d_ld1(bottom_blob, ivec3(i, 0, 0));
103

104
        afpvec8 k = image3d_ld8(weight_blob, ivec3(i, gx, 0));
105

106
        // sum += v * k;
107
        sum[0] += v * k[0];
108
        sum[1] += v * k[1];
109
    }
110
#else
111
    int w_offset = gx * psc(w);
112

113
    for (int i = 0; i < psc(w); i++)
114
    {
115
        afp v = buffer_ld1(bottom_blob_data, i);
116

117
        afpvec8 k = buffer_ld8(weight_data, w_offset + i);
118

119
        // sum += v * k;
120
        sum[0] += v * k[0];
121
        sum[1] += v * k[1];
122
    }
123
#endif
124

125
    sum = activation_afpvec8(sum, activation_type, activation_param_0, activation_param_1);
126

127
#if NCNN_image_shader
128
    image3d_st8(top_blob, ivec3(gx, 0, 0), sum);
129
#else
130
    buffer_st8(top_blob_data, gx, sum);
131
#endif
132
}
133

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

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

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

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