gemm_2args_vbm.cpp 964 Bytes
Newer Older
1
2
3
4

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

struct gemm_2args_vbm : verify_program<gemm_2args_vbm>
{
    migraphx::program create_program() const
    {
        migraphx::program p;
12
        auto* mm = p.get_main_module();
13
14
        migraphx::shape m1_shape{migraphx::shape::float_type, {5}};
        migraphx::shape m2_shape{migraphx::shape::float_type, {2, 2, 5, 4}};
15
        auto l1   = mm->add_parameter("1", m1_shape);
16
17
        auto ul1  = mm->add_instruction(migraphx::make_op("unsqueeze", {{"axes", {0}}}), l1);
        auto bul1 = mm->add_instruction(
18
            migraphx::make_op("multibroadcast", {{"out_lens", {2, 2, 1, 5}}}), ul1);
19

20
        auto l2 = mm->add_parameter("2", m2_shape);
21

22
23
        auto res = mm->add_instruction(migraphx::make_op("dot"), bul1, l2);
        mm->add_instruction(migraphx::make_op("squeeze", {{"axes", {2}}}), res);
24
25
26
27

        return p;
    }
};