quant_dot_3args_5.cpp 947 Bytes
Newer Older
Shucai Xiao's avatar
Shucai Xiao committed
1
2
3

#include "verify_program.hpp"
#include <migraphx/program.hpp>
4
#include <migraphx/apply_alpha_beta.hpp>
Shucai Xiao's avatar
Shucai Xiao committed
5
6
7
8
9
10
11
12
13
14
15
16
#include <migraphx/generate.hpp>
#include <migraphx/make_op.hpp>

struct quant_dot_3args_5 : verify_program<quant_dot_3args_5>
{
    migraphx::program create_program() const
    {
        migraphx::program p;
        auto* mm = p.get_main_module();
        migraphx::shape m1_shape{migraphx::shape::int8_type, {6, 2}};
        migraphx::shape m2_shape{migraphx::shape::int8_type, {7, 6}};

17
18
19
20
21
22
        auto l1 = mm->add_parameter("a", m1_shape);
        auto tl1 =
            mm->add_instruction(migraphx::make_op("transpose", {{"permutation", {1, 0}}}), l1);
        auto l2 = mm->add_parameter("b", m2_shape);
        auto tl2 =
            mm->add_instruction(migraphx::make_op("transpose", {{"permutation", {1, 0}}}), l2);
23
        migraphx::add_apply_alpha_beta(*mm, {tl1, tl2}, migraphx::make_op("quant_dot"), 3);
Shucai Xiao's avatar
Shucai Xiao committed
24
25
26
        return p;
    }
};