ncnn

Форк
0
/
crop_pack8.comp 
141 строка · 4.3 Кб
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
layout (constant_id = 0) const int bugihfa = 0;
26

27
#define shape_constant_id_offset 1
28
layout (constant_id = shape_constant_id_offset + 0) const int dims = 0;
29
layout (constant_id = shape_constant_id_offset + 1) const int w = 0;
30
layout (constant_id = shape_constant_id_offset + 2) const int h = 0;
31
layout (constant_id = shape_constant_id_offset + 3) const int d = 0;
32
layout (constant_id = shape_constant_id_offset + 4) const int c = 0;
33
layout (constant_id = shape_constant_id_offset + 5) const int cstep = 0;
34

35
layout (constant_id = shape_constant_id_offset + 6) const int outdims = 0;
36
layout (constant_id = shape_constant_id_offset + 7) const int outw = 0;
37
layout (constant_id = shape_constant_id_offset + 8) const int outh = 0;
38
layout (constant_id = shape_constant_id_offset + 9) const int outd = 0;
39
layout (constant_id = shape_constant_id_offset + 10) const int outc = 0;
40
layout (constant_id = shape_constant_id_offset + 11) const int outcstep = 0;
41

42
#if NCNN_image_shader
43
layout (binding = 0) uniform unfp sampler3D bottom_blob;
44
layout (binding = 1, imfmtc4) writeonly uniform unfp image3D top_blob;
45
#else
46
layout (binding = 0) readonly buffer bottom_blob { sfpvec8 bottom_blob_data[]; };
47
layout (binding = 1) writeonly buffer top_blob { sfpvec8 top_blob_data[]; };
48
#endif
49

50
layout (push_constant) uniform parameter
51
{
52
    int dims;
53
    int w;
54
    int h;
55
    int d;
56
    int c;
57
    int cstep;
58

59
    int outdims;
60
    int outw;
61
    int outh;
62
    int outd;
63
    int outc;
64
    int outcstep;
65

66
    int woffset;
67
    int hoffset;
68
    int doffset;
69
    int coffset;
70
} p;
71

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

78
    if (gx >= psc(outw) || gy >= psc(outh) * psc(outd) || gz >= psc(outc))
79
        return;
80

81
    if (psc(dims) == 1)
82
    {
83
        int x = gx + p.woffset / 8;
84

85
#if NCNN_image_shader
86
        image3d_cp8(top_blob, ivec3(gx, 0, 0), bottom_blob, ivec3(x, 0, 0));
87
#else
88
        buffer_cp8(top_blob_data, gx, bottom_blob_data, x);
89
#endif
90
    }
91
    else if (psc(dims) == 2)
92
    {
93
        int x = gx + p.woffset;
94
        int y = gy + p.hoffset / 8;
95

96
#if NCNN_image_shader
97
        image3d_cp8(top_blob, ivec3(gx, gy, 0), bottom_blob, ivec3(x, y, 0));
98
#else
99
        const int gi = gy * psc(outw) + gx;
100

101
        int v_offset = y * psc(w) + x;
102

103
        buffer_cp8(top_blob_data, gi, bottom_blob_data, v_offset);
104
#endif
105
    }
106
    else if (psc(dims) == 3)
107
    {
108
        int x = gx + p.woffset;
109
        int y = gy + p.hoffset;
110
        int z = gz + p.coffset / 8;
111

112
#if NCNN_image_shader
113
        image3d_cp8(top_blob, ivec3(gx, gy, gz), bottom_blob, ivec3(x, y, z));
114
#else
115
        const int gi = gz * psc(outcstep) + gy * psc(outw) + gx;
116

117
        int v_offset = z * psc(cstep) + y * psc(w) + x;
118

119
        buffer_cp8(top_blob_data, gi, bottom_blob_data, v_offset);
120
#endif
121
    }
122
    else // if (psc(dims) == 4)
123
    {
124
        int yd = gy / psc(outh);
125
        int yh = gy % psc(outh);
126

127
        int x = gx + p.woffset;
128
        int y = (yd + p.doffset) * psc(h) + (yh + p.hoffset);
129
        int z = gz + p.coffset / 8;
130

131
#if NCNN_image_shader
132
        image3d_cp8(top_blob, ivec3(gx, gy, gz), bottom_blob, ivec3(x, y, z));
133
#else
134
        const int gi = gz * psc(outcstep) + gy * psc(outw) + gx;
135

136
        int v_offset = z * psc(cstep) + y * psc(w) + x;
137

138
        buffer_cp8(top_blob_data, gi, bottom_blob_data, v_offset);
139
#endif
140
    }
141
}
142

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

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

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

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