gemm_2args_vv.cpp 980 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11

#include "verify_program.hpp"
#include <migraphx/program.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/operators.hpp>

struct gemm_2args_vv : verify_program<gemm_2args_vv>
{
    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, {8}};
        migraphx::shape m2_shape{migraphx::shape::float_type, {8}};
15
16
17
18
        auto l1     = mm->add_parameter("1", m1_shape);
        auto ul1    = mm->add_instruction(migraphx::op::unsqueeze{{0}}, l1);
        auto l2     = mm->add_parameter("2", m2_shape);
        auto ul2    = mm->add_instruction(migraphx::op::unsqueeze{{1}}, l2);
19
20
        float alpha = 0.23f;

21
22
23
        auto res  = mm->add_instruction(migraphx::op::dot{alpha}, ul1, ul2);
        auto sres = mm->add_instruction(migraphx::op::squeeze{{0}}, res);
        mm->add_instruction(migraphx::op::squeeze{{0}}, sres);
24
25
26
27

        return p;
    }
};