"test/vscode:/vscode.git/clone" did not exist on "f279cda6ade4a1cca67d503ff4a3576c23ee7dc6"
test_add_broadcast6.cpp 753 Bytes
Newer Older
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>

#include <migraphx/instruction.hpp>

struct test_add_broadcast6 : verify_program<test_add_broadcast6>
{
    migraphx::program create_program() const
    {
        migraphx::program p;
        auto* mm = p.get_main_module();
        auto x   = mm->add_parameter("x", {migraphx::shape::float_type, {1, 64, 568, 1328}});
        auto y   = mm->add_parameter("y", {migraphx::shape::float_type, {64}});
        auto by  = mm->add_instruction(
18
            migraphx::make_op("broadcast", {{"axis", 1}, {"out_lens", {1, 64, 568, 1328}}}), y);
19
20
21
22
        mm->add_instruction(migraphx::make_op("add"), x, by);
        return p;
    }
};