"src/libtorchaudio/CMakeLists.txt" did not exist on "7b5317b3e983e8c5d41a95a8ac78951f52017a1a"
test_gathernd_default.cpp 710 Bytes
Newer Older
turneram's avatar
turneram committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "verify_program.hpp"
#include <migraphx/program.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/make_op.hpp>

struct test_gathernd_default : verify_program<test_gathernd_default>
{
    migraphx::program create_program() const
    {
        migraphx::program p;
        auto* mm = p.get_main_module();
        migraphx::shape ds{migraphx::shape::float_type, {2, 2}};
        migraphx::shape is{migraphx::shape::int64_type, {2, 2}};
        std::vector<int64_t> indices{0, 0, 1, 1};
        auto a0 = mm->add_parameter("data", ds);
        auto a1 = mm->add_literal(migraphx::literal{is, indices});
        mm->add_instruction(migraphx::make_op("gathernd"), a0, a1);
        return p;
    }
};