ncnn

Форк
0
/
instancenorm_reduce_mean_pack8.comp 
87 строк · 2.6 Кб
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
#define shape_constant_id_offset 0
26
layout (constant_id = shape_constant_id_offset + 0) const int w = 0;
27
layout (constant_id = shape_constant_id_offset + 1) const int h = 0;
28
layout (constant_id = shape_constant_id_offset + 2) const int c = 0;
29
layout (constant_id = shape_constant_id_offset + 3) const int cstep = 0;
30

31
#if NCNN_image_shader
32
layout (binding = 0) uniform highp sampler3D bottom_top_blob;
33
layout (binding = 1, rgba32f) writeonly uniform highp image3D mean_blob;
34
#else
35
layout (binding = 0) readonly buffer bottom_top_blob { mat2x4 bottom_top_blob_data[]; };
36
layout (binding = 1) writeonly buffer mean_blob { mat2x4 mean_data[]; };
37
#endif
38

39
layout (push_constant) uniform parameter
40
{
41
    int w;
42
    int h;
43
    int c;
44
    int cstep;
45
    float area;
46
} p;
47

48
void main()
49
{
50
    int gx = int(gl_GlobalInvocationID.x);
51
    int gy = int(gl_GlobalInvocationID.y);
52
    int gz = int(gl_GlobalInvocationID.z);
53

54
    if (gx >= psc(c) || gy >= 1 || gz >= 1)
55
        return;
56

57
    mat2x4 sum = mat2x4(0.f);
58

59
#if NCNN_image_shader
60
    for (int i = 0; i < p.h; i++)
61
    {
62
        for (int j = 0; j < p.w; j++)
63
        {
64
            sum += mat2x4(texelFetch(bottom_top_blob, ivec3(j * 2, i, gx), 0), texelFetch(bottom_top_blob, ivec3(j * 2 + 1, i, gx), 0));
65
        }
66
    }
67
#else
68
    int v_offset = gx * psc(cstep);
69

70
    for (int i = 0; i < p.w; i++)
71
    {
72
        sum += bottom_top_blob_data[v_offset];
73
        v_offset += 1;
74
    }
75
#endif
76

77
    mat2x4 mean;
78
    mean[0] = sum[0] / p.area;
79
    mean[1] = sum[1] / p.area;
80

81
#if NCNN_image_shader
82
    imageStore(mean_blob, ivec3(gx * 2, 0, 0), mean[0]);
83
    imageStore(mean_blob, ivec3(gx * 2 + 1, 0, 0), mean[1]);
84
#else
85
    mean_data[gx] = mean;
86
#endif
87
}
88

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

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

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

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