quantizelinear.hpp 3.78 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.
 */
turneram's avatar
turneram committed
24
25
26
27
28
#ifndef MIGRAPHX_GUARD_OPERATORS_QUANTIZE_LINEAR_HPP
#define MIGRAPHX_GUARD_OPERATORS_QUANTIZE_LINEAR_HPP

#include <migraphx/check_shapes.hpp>
#include <migraphx/config.hpp>
29
#include <migraphx/argument.hpp>
turneram's avatar
turneram committed
30
31
32
#include <migraphx/par_for.hpp>
#include <migraphx/value.hpp>
#include <cmath>
33
#include <fenv.h>
turneram's avatar
turneram committed
34
35
36
37
38
39
40

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace op {
struct quantizelinear
{
    std::string name() const { return "quantizelinear"; }
41
42
43
44
45
46
47
48
49

    value attributes() const
    {
        // Note: point_op attribute is not used in this op. Instead, in
        // gpu compilation pipeline, rewrite_quantization will be invoked
        // from generate_pointwise() to rewrite this op.
        return {{"pointwise", true}};
    }

turneram's avatar
turneram committed
50
51
    shape compute_shape(std::vector<shape> inputs) const
    {
52
53
54
55
56
        check_shapes{inputs, *this}.same_dims().has(2, 3);
        if(inputs[0].type() != inputs[1].type())
        {
            MIGRAPHX_THROW("QUANTIZELINEAR: Scales and input must be the same type");
        }
turneram's avatar
turneram committed
57
58
59
60
61
62
63
64
65
66
67
        if(inputs.size() == 3)
        {
            return {inputs[2].type(), inputs[0].lens(), inputs[0].strides()};
        }
        return {shape::uint8_type, inputs[0].lens(), inputs[0].strides()};
    }

    argument compute(const shape& output_shape, std::vector<argument> args) const
    {
        auto x       = args.at(0);
        auto y_scale = args.at(1);
turneram's avatar
turneram committed
68
        std::vector<int8_t> zeros(output_shape.bytes(), 0);
turneram's avatar
turneram committed
69
70
71
72
73
74
        argument y_zero_point{output_shape, zeros.data()};
        if(args.size() == 3)
        {
            y_zero_point = args.at(2);
        }
        argument result{output_shape};
75
76
        auto rounding_mode = fegetround();
        fesetround(FE_TONEAREST);
turneram's avatar
turneram committed
77
        visit_all(result, y_zero_point)([&](auto output, auto zero_pts) {
78
79
80
81
82
            visit_all(x, y_scale)([&](auto input, auto scales) {
                using quant_type = typename decltype(output)::value_type;
                auto min_value   = std::numeric_limits<quant_type>::min();
                auto max_value   = std::numeric_limits<quant_type>::max();
                par_for(output_shape.elements(), [&](auto i) {
83
                    int64_t quantized = static_cast<int64_t>(std::nearbyint(input[i] / scales[i])) +
84
85
86
                                        static_cast<int64_t>(zero_pts[i]);
                    output[i] = std::max(static_cast<int64_t>(min_value),
                                         std::min(static_cast<int64_t>(max_value), quantized));
turneram's avatar
turneram committed
87
88
89
                });
            });
        });
90
        fesetround(rounding_mode);
turneram's avatar
turneram committed
91
92
93
94
95
96
97
98
        return result;
    }
};
} // namespace op
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx

#endif