common_dims.cpp 1.02 KB
Newer Older
Paul's avatar
Paul committed
1
2
3
#include <migraphx/common_dims.hpp>
#include <test.hpp>

Paul's avatar
Paul committed
4
5
6
7
8
9
10
11
12
13
using axes_map = std::vector<std::vector<std::size_t>>;

TEST_CASE(common_d1_less)
{
    auto cd = migraphx::common_dims::compute({2, 32, 40, 8}, {2, 1280, 8});
    EXPECT(cd.dims == std::vector<std::size_t>{2, 32, 40, 8});
    EXPECT(cd.axes_map1 == axes_map{{0}, {1}, {2}, {3}});
    EXPECT(cd.axes_map2 == axes_map{{0}, {1, 2}, {3}});
}

Paul's avatar
Paul committed
14
15
16
17
TEST_CASE(common1)
{
    auto cd = migraphx::common_dims::compute({2, 32, 2560}, {2, 1280, 8, 8});
    EXPECT(cd.dims == std::vector<std::size_t>{2, 32, 40, 8, 8});
Paul's avatar
Paul committed
18
19
20
21
22
23
24
25
26
27
    EXPECT(cd.axes_map1 == axes_map{{0}, {1}, {2, 3, 4}});
    EXPECT(cd.axes_map2 == axes_map{{0}, {1, 2}, {3}, {4}});
}

TEST_CASE(common2)
{
    auto cd = migraphx::common_dims::compute({2, 1280, 8, 8}, {2, 32, 2560});
    EXPECT(cd.dims == std::vector<std::size_t>{2, 32, 40, 8, 8});
    EXPECT(cd.axes_map1 == axes_map{{0}, {1, 2}, {3}, {4}});
    EXPECT(cd.axes_map2 == axes_map{{0}, {1}, {2, 3, 4}});
Paul's avatar
Paul committed
28
29
30
}

int main(int argc, const char* argv[]) { test::run(argc, argv); }