// SPDX-License-Identifier: MIT // Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved. #include "gtest/gtest.h" #include "profiler/profile_pool3d_fwd_impl.hpp" #include "test_pool_fwd_common.hpp" template class TestMaxPool3dFwd : 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 params; void Run() { for(auto param : params) { // max pool bool success = ck::profiler::profile_pool3d_fwd_impl(true, 2, false, false, param.length_, param.window_spatial_lengths_, param.window_strides_, param.input_left_pads_, param.input_right_pads_); EXPECT_TRUE(success); // max pool + index success = ck::profiler::profile_pool3d_fwd_impl(true, 2, false, false, param.length_, param.window_spatial_lengths_, param.window_strides_, param.input_left_pads_, param.input_right_pads_); EXPECT_TRUE(success); } } }; using KernelTypes = ::testing::Types, std::tuple>; TYPED_TEST_SUITE(TestMaxPool3dFwd, KernelTypes); TYPED_TEST(TestMaxPool3dFwd, Test_Pool) { // length, window_length, window_stride, left_pad, right_pad this->params = {{{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}, {0, 0, 0}, {0, 0, 0}}, {{2, 32, 30, 30, 30}, {2, 2, 2}, {2, 2, 2}, {1, 1, 1}, {1, 1, 1}}}; this->Run(); }