"vscode:/vscode.git/clone" did not exist on "9eed4a90ce465c94433d384672bdac0c2c4885df"
test_avg_pool3d_fwd.cpp 2.89 KB
Newer Older
rocking's avatar
rocking committed
1
// SPDX-License-Identifier: MIT
2
// Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved.
rocking's avatar
rocking committed
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#include "gtest/gtest.h"
#include "profiler/profile_pool3d_fwd_impl.hpp"
#include "test_pool_fwd_common.hpp"

template <typename Tuple>
class TestAvgPool3dFwd : public ::testing::Test
{
    protected:
    using InDataType      = std::tuple_element_t<0, Tuple>;
    using OutDataType     = std::tuple_element_t<1, Tuple>;
    using ComputeDataType = std::tuple_element_t<2, Tuple>;
    using IndexDataType   = std::tuple_element_t<3, Tuple>;

    std::vector<PoolingParam> params;

19
20
    ck::profiler::PoolFwdInputParams in_params_avg_pool{true, 2, false, false, false, 1};

rocking's avatar
rocking committed
21
22
23
24
    void Run()
    {
        for(auto param : params)
        {
25
26
27
28
29
30
31
            ck::profiler::PoolFwdKernelParams kernel_params{param.length_,
                                                            param.window_spatial_lengths_,
                                                            param.window_strides_,
                                                            param.window_dilations_,
                                                            param.input_left_pads_,
                                                            param.input_right_pads_};

rocking's avatar
rocking committed
32
33
34
35
36
            bool success =
                ck::profiler::profile_pool3d_fwd_impl<InDataType,
                                                      OutDataType,
                                                      ComputeDataType,
                                                      IndexDataType,
rocking's avatar
rocking committed
37
38
                                                      ck::tensor_layout::convolution::NDHWC,
                                                      ck::tensor_layout::convolution::NDHWC,
rocking's avatar
rocking committed
39
40
                                                      ck::ReduceTensorOp::AVG,
                                                      false,
41
                                                      false>(in_params_avg_pool, kernel_params);
rocking's avatar
rocking committed
42
43
44
45
            EXPECT_TRUE(success);
        }
    }
};
46
47
48
49
50
51
52

using KernelTypes = ::testing::Types<std::tuple<I8, I8, I32, I32>,
                                     std::tuple<F8, F8, F32, I32>,
                                     std::tuple<F16, F16, F32, I32>,
                                     std::tuple<BF16, BF16, F32, I32>,
                                     std::tuple<F32, F32, F32, I32>>;

rocking's avatar
rocking committed
53
54
55
TYPED_TEST_SUITE(TestAvgPool3dFwd, KernelTypes);
TYPED_TEST(TestAvgPool3dFwd, Test_Pool)
{
rocking's avatar
rocking committed
56
57
58
59
60
    // length, window_length, window_stride, window_dilation, left_pad, right_pad
    this->params = {{{1, 1, 1, 1, 1}, {1, 1, 1}, {1, 1, 1}, {1, 1, 1}, {0, 0, 0}, {0, 0, 0}},
                    {{2, 16, 64, 64, 64}, {64, 64, 64}, {1, 1, 1}, {1, 1, 1}, {0, 0, 0}, {0, 0, 0}},
                    {{2, 16, 64, 64, 64}, {4, 4, 4}, {4, 4, 4}, {2, 2, 2}, {0, 0, 0}, {0, 0, 0}},
                    {{2, 32, 30, 30, 30}, {2, 2, 2}, {2, 2, 2}, {1, 1, 1}, {1, 1, 1}, {1, 1, 1}}};
rocking's avatar
rocking committed
61
62
63

    this->Run();
}