dot.hpp 2.71 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
#ifndef MIGRAPHX_GUARD_OPERATORS_DOT_HPP
#define MIGRAPHX_GUARD_OPERATORS_DOT_HPP

#include <array>
#include <migraphx/check_shapes.hpp>
#include <migraphx/stringutils.hpp>
#include <migraphx/streamutils.hpp>
#include <migraphx/literal.hpp>
#include <migraphx/shape_for_each.hpp>
#include <migraphx/config.hpp>
11
#include <migraphx/gemm.hpp>
12
13
14
15
16
17
18
19
20
#include <cmath>
#include <utility>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace op {

struct dot
{
21
22
23
24
25
26
27
28
29
    float alpha = 1.0;
    float beta  = 1.0;

    template <class Self, class F>
    static auto reflect(Self& self, F f)
    {
        return pack(f(self.alpha, "alpha"), f(self.beta, "beta"));
    }

30
31
32
    std::string name() const { return "dot"; }
    shape compute_shape(std::vector<shape> inputs) const
    {
Shucai Xiao's avatar
Shucai Xiao committed
33
        check_shapes{inputs, *this}.same_type();
34
35
36
37
        const shape& a = inputs.at(0);
        const shape& b = inputs.at(1);
        auto t         = a.type();

Shucai Xiao's avatar
Shucai Xiao committed
38
        if(!std::all_of(inputs.begin(), inputs.end(), [](auto s) { return s.lens().size() >= 2; }))
39
        {
Shucai Xiao's avatar
Shucai Xiao committed
40
41
42
43
44
45
46
47
48
            MIGRAPHX_THROW("DOT: dot only accept 2 or more dims operands");
        }

        // only handle the case that the batch size of a and b are the same
        if(!std::equal(
               a.lens().rbegin() + 2, a.lens().rend(), b.lens().rbegin() + 2, b.lens().rend()))
        {
            MIGRAPHX_THROW("DOT: batch size of A and B mismatch: {" + to_string_range(a.lens()) +
                           "} x {" + to_string_range(b.lens()) + "}");
49
50
51
52
53
        }

        std::size_t dim_0 = a.lens().size() - 2;
        std::size_t dim_1 = a.lens().size() - 1;
        if(a.lens()[dim_1] != b.lens()[dim_0])
Shucai Xiao's avatar
Shucai Xiao committed
54
55
        {
            MIGRAPHX_THROW("DOT: inner dimensions do not match: {" + to_string_range(a.lens()) +
56
                           "} x {" + to_string_range(b.lens()) + "}");
Shucai Xiao's avatar
Shucai Xiao committed
57
58
        }

59
60
        auto out_lens   = a.lens();
        out_lens[dim_1] = b.lens()[dim_1];
Shucai Xiao's avatar
Shucai Xiao committed
61
62
63
64
65
66
67
        if(inputs.size() == 3 && out_lens != inputs.at(2).lens())
        {
            MIGRAPHX_THROW("DOT: dimension mismatch, operand C: {" +
                           to_string_range(inputs.at(2).lens()) +
                           "}, cannot add to operand A * B: {" + to_string_range(out_lens) + "}");
        }

68
69
        return {t, out_lens};
    }
70

71
    argument compute(shape output_shape, std::vector<argument> args) const
72
73
74
75
76
77
78
    {
        argument result;
        if(args.size() == 3)
            result = args[2];
        else
            result = argument{output_shape};
        visit_all(result, args[0], args[1])(
79
            [&](auto cmat, auto amat, auto bmat) { gemm(cmat, amat, bmat, alpha, beta); });
80
81
        return result;
    }
82
83
84
85
86
87
88
};

} // namespace op
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx

#endif