ncnn

Форк
0
/
test_quantize.cpp 
89 строк · 2.9 Кб
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
#include "testutil.h"
16

17
static int test_quantize(const ncnn::Mat& a, float scale_low, float scale_high)
18
{
19
    ncnn::Mat scale_data;
20
    if (scale_low == scale_high)
21
    {
22
        scale_data.create(1);
23
        scale_data[0] = scale_low;
24
    }
25
    else
26
    {
27
        if (a.dims == 1) scale_data.create(a.w);
28
        if (a.dims == 2) scale_data.create(a.h);
29
        if (a.dims == 3) scale_data.create(a.c);
30
        Randomize(scale_data, scale_low, scale_high);
31
    }
32

33
    ncnn::ParamDict pd;
34
    pd.set(0, scale_data.w);
35

36
    std::vector<ncnn::Mat> weights(1);
37
    weights[0] = scale_data;
38

39
    int ret = test_layer("Quantize", pd, weights, a);
40
    if (ret != 0)
41
    {
42
        fprintf(stderr, "test_quantize failed a.dims=%d a=(%d %d %d) scale_low=%f scale_high=%f\n", a.dims, a.w, a.h, a.c, scale_low, scale_high);
43
    }
44

45
    return ret;
46
}
47

48
static int test_quantize_0()
49
{
50
    return 0
51
           || test_quantize(RandomMat(5, 7, 24), 100.f, 100.f)
52
           || test_quantize(RandomMat(5, 7, 24), 120.f, 140.f)
53
           || test_quantize(RandomMat(7, 9, 12), 100.f, 100.f)
54
           || test_quantize(RandomMat(7, 9, 12), 120.f, 140.f)
55
           || test_quantize(RandomMat(3, 5, 13), 100.f, 100.f)
56
           || test_quantize(RandomMat(3, 5, 13), 120.f, 140.f);
57
}
58

59
static int test_quantize_1()
60
{
61
    return 0
62
           || test_quantize(RandomMat(15, 24), 100.f, 100.f)
63
           || test_quantize(RandomMat(15, 24), 120.f, 140.f)
64
           || test_quantize(RandomMat(17, 12), 100.f, 100.f)
65
           || test_quantize(RandomMat(17, 12), 120.f, 140.f)
66
           || test_quantize(RandomMat(19, 15), 100.f, 100.f)
67
           || test_quantize(RandomMat(19, 15), 120.f, 140.f);
68
}
69

70
static int test_quantize_2()
71
{
72
    return 0
73
           || test_quantize(RandomMat(128), 100.f, 100.f)
74
           || test_quantize(RandomMat(128), 120.f, 140.f)
75
           || test_quantize(RandomMat(124), 100.f, 100.f)
76
           || test_quantize(RandomMat(124), 120.f, 140.f)
77
           || test_quantize(RandomMat(127), 100.f, 100.f)
78
           || test_quantize(RandomMat(127), 120.f, 140.f);
79
}
80

81
int main()
82
{
83
    SRAND(7767517);
84

85
    return 0
86
           || test_quantize_0()
87
           || test_quantize_1()
88
           || test_quantize_2();
89
}
90

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

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

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

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