test_isnan_broadcast.cpp 1015 Bytes
Newer Older
Charlie Lin's avatar
Charlie Lin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <limits>
#include "verify_program.hpp"
#include <migraphx/program.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/make_op.hpp>

struct test_isnan_broadcast : verify_program<test_isnan_broadcast>
{
    migraphx::program create_program() const
    {
        migraphx::program p;
        auto* mm = p.get_main_module();
        auto x   = mm->add_parameter("x", migraphx::shape{migraphx::shape::float_type, {2}});
        auto s0  = migraphx::shape{migraphx::shape::float_type, {2, 2}};
        x        = mm->add_instruction(
            migraphx::make_op("broadcast", {{"axis", 0}, {"out_lens", s0.lens()}}), x);
        std::vector<float> data0{2, std::numeric_limits<float>::quiet_NaN()};
        migraphx::shape s1{migraphx::shape::float_type, {1, 2}};
        auto l0 = mm->add_literal(migraphx::literal{s1, data0});
        x       = mm->add_instruction(migraphx::make_op("concat", {{"axis", 0}}), x, l0);
        mm->add_instruction(migraphx::make_op("isnan"), x);
        return p;
    }
};