test_contiguous.cpp 607 Bytes
Newer Older
1
2
3
4

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

7
8
9
10
11
12
13
#include <cassert>

struct test_contiguous : verify_program<test_contiguous>
{
    migraphx::program create_program() const
    {
        migraphx::program p;
14
        auto* mm = p.get_main_module();
15
        migraphx::shape s{migraphx::shape::float_type, {4, 4, 4, 3}, {48, 4, 1, 16}};
16
        auto x = mm->add_parameter("x", s);
17
        mm->add_instruction(migraphx::make_op("contiguous"), x);
18
19
20
21
        assert(p.get_output_shapes().back().standard());
        return p;
    }
};