quantization.cpp 6.38 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
24
25
#include <migraphx/float_equal.hpp>
#include <migraphx/instruction_ref.hpp>
Shucai Xiao's avatar
Shucai Xiao committed
26
#include <migraphx/quantization.hpp>
27
28
29
30
31
32
#include <migraphx/quantize_fp16.hpp>
#include <migraphx/quantize_int8.hpp>
#include <migraphx/simplify_reshapes.hpp>
#include <migraphx/simplify_qdq.hpp>
#include <migraphx/eliminate_common_subexpression.hpp>
#include <migraphx/dead_code_elimination.hpp>
33
34
35
36
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/stringutils.hpp>
37
#include <migraphx/op/capture.hpp>
38
#include <migraphx/ranges.hpp>
39
#include <migraphx/target.hpp>
40
#include <migraphx/make_op.hpp>
41
42
#include <migraphx/pass_manager.hpp>
#include <set>
43
44
45
46

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

Shucai Xiao's avatar
Shucai Xiao committed
47
48
MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_INT8_QUANTIZATION_PARAMS)

Shucai Xiao's avatar
Shucai Xiao committed
49
50
51
52
53
// This function is to convert any instructions specified in the input
// from double or float to float16 by inserting a convert operator.
// For the conversion, there could be cases of overflowing, but it
// is very rare in the area of deeping learning, so we just do a
// truncate of the input to get the fp16.
Shucai Xiao's avatar
Shucai Xiao committed
54
void quantize_fp16(program& prog, const std::vector<std::string>& ins_names)
55
{
56
57
58
59
60
61
62
63
    run_passes(prog,
               {quantize_fp16_pass{ins_names},
                eliminate_common_subexpression{},
                dead_code_elimination{},
                simplify_reshapes{},
                dead_code_elimination{},
                simplify_qdq{},
                dead_code_elimination{}});
Shucai Xiao's avatar
Shucai Xiao committed
64
65
}

Shucai Xiao's avatar
Shucai Xiao committed
66
67
void quantize_int8(program& prog,
                   const target& t,
68
                   const std::vector<parameter_map>& calibration,
Shucai Xiao's avatar
Shucai Xiao committed
69
                   const std::vector<std::string>& ins_names)
Shucai Xiao's avatar
Shucai Xiao committed
70
{
71
    std::set<std::string> op_names = {"convolution", "dot"};
Shucai Xiao's avatar
Shucai Xiao committed
72
    std::set<std::string> input_ins_names(ins_names.begin(), ins_names.end());
73
    if(not std::includes(
Shucai Xiao's avatar
Shucai Xiao committed
74
           op_names.begin(), op_names.end(), input_ins_names.begin(), input_ins_names.end()))
Shucai Xiao's avatar
Shucai Xiao committed
75
    {
76
        MIGRAPHX_THROW("QUANTIZE_INT8: only support DOT and CONVOLUTION operation");
Shucai Xiao's avatar
Shucai Xiao committed
77
    }
Shucai Xiao's avatar
Shucai Xiao committed
78

Shucai Xiao's avatar
Shucai Xiao committed
79
80
81
82
    std::shared_ptr<std::vector<std::pair<float, float>>> int8_quant_params =
        std::make_shared<std::vector<std::pair<float, float>>>();
    std::shared_ptr<std::vector<float>> max_abs_vals = std::make_shared<std::vector<float>>();

Shucai Xiao's avatar
Shucai Xiao committed
83
84
    auto calc_quant_params = [int8_quant_params, max_abs_vals, &t](std::size_t ins_index,
                                                                   std::vector<argument> args) {
Shucai Xiao's avatar
Shucai Xiao committed
85
        std::pair<float, float> param_pair{64.0f, 0.0f};
86
87
88
        // scale and shift is need for only int8 type, and we do not
        // consider shift, so set shift to 0
        std::vector<float> vec_val;
Shucai Xiao's avatar
Shucai Xiao committed
89
        argument arg = t.copy_from(args.front());
Shucai Xiao's avatar
Shucai Xiao committed
90
        arg.visit([&](auto output) { vec_val.assign(output.begin(), output.end()); });
Shucai Xiao's avatar
Shucai Xiao committed
91
92
93
        auto max_val                = *std::max_element(vec_val.begin(), vec_val.end());
        auto min_val                = *std::min_element(vec_val.begin(), vec_val.end());
        auto max_abs                = std::max(std::fabs(max_val), std::fabs(min_val));
Shucai Xiao's avatar
Shucai Xiao committed
94
        max_abs_vals->at(ins_index) = std::max(max_abs_vals->at(ins_index), max_abs);
95

Shucai Xiao's avatar
Shucai Xiao committed
96
        // if all values are 0, no need to do scaling
Shucai Xiao's avatar
Shucai Xiao committed
97
        if(max_abs_vals->at(ins_index) == 0.0f)
Shucai Xiao's avatar
Shucai Xiao committed
98
99
100
101
102
103
104
        {
            param_pair.first = 1.0f;
        }
        else
        {
            param_pair.first = 127.0f / max_abs_vals->at(ins_index);
        }
Shucai Xiao's avatar
Shucai Xiao committed
105
        int8_quant_params->at(ins_index) = param_pair;
106
107
    };

108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
    // pass to add capture argument op
    std::size_t param_num = 0;
    run_passes(prog, {capture_arguments_pass{ins_names, calc_quant_params, &param_num}});
    int8_quant_params->resize(param_num, std::pair<float, float>(64.0f, 0.0f));
    max_abs_vals->resize(param_num, 0.0f);

    // use the calibration data to compute the quantization scale
    auto capture_prog = prog;
    capture_prog.compile(t);

    // use all calibration data to run the program to calculate the
    // quantization scale and shift
    for(auto&& arg : calibration)
    {
        parameter_map m;
        for(auto&& x : capture_prog.get_parameter_shapes())
        {
            if(arg.count(x.first) > 0)
            {
                assert(x.second == arg.at(x.first).get_shape());
                m[x.first] = t.copy_to(arg.at(x.first));
            }
            else
            {
                m[x.first] = t.allocate(x.second);
            }
        }
        capture_prog.eval(m);
    }
Shucai Xiao's avatar
Shucai Xiao committed
137

138
139
140
141
142
143
144
145
146
147
148
    // print the quantization parameters in only the main module
    if(enabled(MIGRAPHX_INT8_QUANTIZATION_PARAMS{}))
    {
        for(std::size_t i = 0; i < int8_quant_params->size(); ++i)
        {
            auto param = int8_quant_params->at(i);
            std::cout << "ins_index = " << i << ", scale = " << param.first
                      << ", shift = " << param.second << std::endl;
        }
        std::cout << std::endl;
    }
Shucai Xiao's avatar
Shucai Xiao committed
149

150
151
152
153
154
155
156
157
    run_passes(prog,
               {quantize_int8_pass{ins_names, *int8_quant_params},
                eliminate_common_subexpression{},
                dead_code_elimination{},
                simplify_reshapes{},
                dead_code_elimination{},
                simplify_qdq{},
                dead_code_elimination{}});
Shucai Xiao's avatar
Shucai Xiao committed
158
159
}

160
161
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx