quant_dot_3args_3.cpp 961 Bytes
Newer Older
1
2
3

#include "verify_program.hpp"
#include <migraphx/program.hpp>
4
#include <migraphx/apply_alpha_beta.hpp>
5
#include <migraphx/generate.hpp>
6
#include <migraphx/make_op.hpp>
7
8
9
10
11
12

struct quant_dot_3args_3 : verify_program<quant_dot_3args_3>
{
    migraphx::program create_program() const
    {
        migraphx::program p;
13
        auto* mm = p.get_main_module();
14
15
16
17
        migraphx::shape m1_shape{migraphx::shape::int8_type, {2, 8}};
        migraphx::shape m2_shape{migraphx::shape::int8_type, {7, 8}};
        migraphx::shape m3_shape{migraphx::shape::int32_type, {2, 7}};

18
19
20
21
22
        auto l1 = mm->add_parameter("a", m1_shape);
        auto l2 = mm->add_parameter("b", m2_shape);
        auto tl2 =
            mm->add_instruction(migraphx::make_op("transpose", {{"permutation", {1, 0}}}), l2);
        auto l3 = mm->add_parameter("c", m3_shape);
23
        migraphx::add_apply_alpha_beta(*mm, {l1, tl2, l3}, migraphx::make_op("quant_dot"), 2, 3);
24
25
26
        return p;
    }
};