"test/verify/quant_dot_3args_5.cpp" did not exist on "8d21fdc9dd58e62192d9408132585eea94bbf79b"
batch_quant_dot_3.cpp 665 Bytes
Newer Older
Shucai Xiao's avatar
Shucai Xiao committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

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

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

        auto l1 = mm->add_parameter("a", m1_shape);
        auto l2 = mm->add_parameter("b", m2_shape);
18
        mm->add_instruction(migraphx::make_op("quant_dot"), l1, l2);
Shucai Xiao's avatar
Shucai Xiao committed
19
20
21
        return p;
    }
};