"src/targets/vscode:/vscode.git/clone" did not exist on "966638154643d55ddbf51346ffbd981f66678d90"
test_roialign.cpp 2.63 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
Shucai Xiao's avatar
Shucai Xiao committed
24
25
26
27
28
29

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

Umang Yadav's avatar
Umang Yadav committed
30
31
template <migraphx::shape::type_t DType>
struct test_roialign : verify_program<test_roialign<DType>>
Shucai Xiao's avatar
Shucai Xiao committed
32
33
34
35
36
{
    migraphx::program create_program() const
    {
        migraphx::program p;
        auto* mm = p.get_main_module();
Umang Yadav's avatar
Umang Yadav committed
37
        migraphx::shape x_s{DType, {5, 4, 10, 10}};
Shucai Xiao's avatar
Shucai Xiao committed
38

Umang Yadav's avatar
Umang Yadav committed
39
        migraphx::shape roi_s{DType, {5, 4}};
Shucai Xiao's avatar
Shucai Xiao committed
40
41
42
43
44
45
46
47

        migraphx::shape ind_s{migraphx::shape::int64_type, {5}};
        std::vector<int64_t> ind_vec = {0, 2, 3, 4, 1};

        auto x   = mm->add_parameter("x", x_s);
        auto roi = mm->add_parameter("roi", roi_s);
        auto ind = mm->add_literal(migraphx::literal(ind_s, ind_vec));
        auto r   = mm->add_instruction(migraphx::make_op("roialign",
Umang Yadav's avatar
Umang Yadav committed
48
49
50
51
                                                         {{"spatial_scale", 1.0},
                                                          {"output_height", 5},
                                                          {"output_width", 5},
                                                          {"sampling_ratio", 2}}),
Shucai Xiao's avatar
Shucai Xiao committed
52
53
54
55
56
57
58
59
                                     x,
                                     roi,
                                     ind);
        mm->add_return({r});

        return p;
    }
};
Umang Yadav's avatar
Umang Yadav committed
60
61
62
63

template struct test_roialign<migraphx::shape::float_type>;
template struct test_roialign<migraphx::shape::half_type>;
template struct test_roialign<migraphx::shape::fp8e4m3fnuz_type>;