mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-20 04:49:54 +00:00
Reorganize project folders (#6)
This commit is contained in:
28
test/pool/CMakeLists.txt
Normal file
28
test/pool/CMakeLists.txt
Normal file
@@ -0,0 +1,28 @@
|
||||
add_custom_target(test_pool)
|
||||
|
||||
add_gtest_executable(test_avg_pool3d_bwd test_avg_pool3d_bwd.cpp)
|
||||
add_gtest_executable(test_max_pool3d_bwd test_max_pool3d_bwd.cpp)
|
||||
add_gtest_executable(test_avg_pool3d_fwd test_avg_pool3d_fwd.cpp)
|
||||
add_gtest_executable(test_max_pool3d_fwd test_max_pool3d_fwd.cpp)
|
||||
add_gtest_executable(test_avg_pool2d_bwd test_avg_pool2d_bwd.cpp)
|
||||
add_gtest_executable(test_max_pool2d_bwd test_max_pool2d_bwd.cpp)
|
||||
add_gtest_executable(test_avg_pool2d_fwd test_avg_pool2d_fwd.cpp)
|
||||
add_gtest_executable(test_max_pool2d_fwd test_max_pool2d_fwd.cpp)
|
||||
|
||||
target_link_libraries(test_avg_pool3d_bwd PRIVATE utility device_avg_pool3d_bwd_instance)
|
||||
target_link_libraries(test_avg_pool2d_bwd PRIVATE utility device_avg_pool2d_bwd_instance)
|
||||
target_link_libraries(test_max_pool2d_bwd PRIVATE utility device_max_pool_bwd_instance)
|
||||
target_link_libraries(test_max_pool3d_bwd PRIVATE utility device_max_pool_bwd_instance)
|
||||
target_link_libraries(test_avg_pool3d_fwd PRIVATE utility device_pool3d_fwd_instance)
|
||||
target_link_libraries(test_max_pool3d_fwd PRIVATE utility device_pool3d_fwd_instance)
|
||||
target_link_libraries(test_avg_pool2d_fwd PRIVATE utility device_pool2d_fwd_instance)
|
||||
target_link_libraries(test_max_pool2d_fwd PRIVATE utility device_pool2d_fwd_instance)
|
||||
|
||||
add_dependencies(test_pool test_avg_pool3d_bwd)
|
||||
add_dependencies(test_pool test_max_pool3d_bwd)
|
||||
add_dependencies(test_pool test_avg_pool3d_fwd)
|
||||
add_dependencies(test_pool test_max_pool3d_fwd)
|
||||
add_dependencies(test_pool test_avg_pool2d_bwd)
|
||||
add_dependencies(test_pool test_max_pool2d_bwd)
|
||||
add_dependencies(test_pool test_avg_pool2d_fwd)
|
||||
add_dependencies(test_pool test_max_pool2d_fwd)
|
||||
133
test/pool/test_avg_pool2d_bwd.cpp
Normal file
133
test/pool/test_avg_pool2d_bwd.cpp
Normal file
@@ -0,0 +1,133 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "profiler/profile_avg_pool2d_bwd_impl.hpp"
|
||||
#include "test_pool_fwd_common.hpp"
|
||||
|
||||
template <typename T>
|
||||
class AvgPool2dBWDTest : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
using InDataType = std::tuple_element_t<0, T>;
|
||||
using OutDataType = std::tuple_element_t<1, T>;
|
||||
|
||||
static std::vector<PoolingParam> params;
|
||||
|
||||
void Run()
|
||||
{
|
||||
for(auto param : this->params)
|
||||
{
|
||||
bool success =
|
||||
ck::profiler::profile_avg_pool2d_bwd_impl<InDataType, OutDataType, NHWC, NHWC>(
|
||||
true,
|
||||
2,
|
||||
false,
|
||||
false,
|
||||
param.length_,
|
||||
param.window_spatial_lengths_,
|
||||
param.window_strides_,
|
||||
param.window_dilations_,
|
||||
param.input_left_pads_,
|
||||
param.input_right_pads_);
|
||||
EXPECT_TRUE(success);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
std::vector<PoolingParam> AvgPool2dBWDTest<T>::params = {
|
||||
{{1, 1, 1, 1}, {1, 1}, {1, 1}, {1, 1}, {0, 0}, {0, 0}},
|
||||
{{1, 1, 64, 64}, {64, 64}, {1, 1}, {1, 1}, {0, 0}, {0, 0}},
|
||||
{{1, 5, 7, 7}, {2, 2}, {2, 2}, {1, 1}, {2, 2}, {0, 0}},
|
||||
{{1, 1, 8, 8}, {2, 2}, {2, 2}, {1, 1}, {2, 2}, {0, 0}},
|
||||
{{1, 1, 8, 8}, {2, 2}, {1, 1}, {1, 1}, {1, 1}, {0, 0}},
|
||||
{{2, 32, 30, 30}, {2, 2}, {2, 2}, {1, 1}, {1, 1}, {1, 1}},
|
||||
{{1, 2, 30, 30}, {2, 2}, {2, 2}, {1, 1}, {0, 0}, {0, 0}}};
|
||||
|
||||
using Avg_Pool_2D_f32_types = ::testing::Types<std::tuple<F32, F32>>;
|
||||
using Avg_Pool_2D_int8_types = ::testing::Types<std::tuple<I8, I8>>;
|
||||
using Avg_Pool_2D_f16_types = ::testing::Types<std::tuple<F16, F16>>;
|
||||
using Avg_Pool_2D_bf16_types = ::testing::Types<std::tuple<BF16, BF16>>;
|
||||
using Avg_Pool_2D_f8_types = ::testing::Types<std::tuple<F8, F8>>;
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_f32 : public AvgPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP32)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_f32 tests because CK_ENABLE_FP32 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_int8 : public AvgPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_INT8)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_int8 tests because CK_ENABLE_INT8 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_f16 : public AvgPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP16)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_f16 because CK_ENABLE_FP16 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_bf16 : public AvgPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_BF16)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_bf16 tests because CK_ENABLE_BF16 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_f8 : public AvgPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP8)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_f8 tests because CK_ENABLE_FP8 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
TYPED_TEST_SUITE(AvgPool2D_f32, Avg_Pool_2D_f32_types);
|
||||
TYPED_TEST_SUITE(AvgPool2D_int8, Avg_Pool_2D_int8_types);
|
||||
TYPED_TEST_SUITE(AvgPool2D_f16, Avg_Pool_2D_f16_types);
|
||||
TYPED_TEST_SUITE(AvgPool2D_bf16, Avg_Pool_2D_bf16_types);
|
||||
TYPED_TEST_SUITE(AvgPool2D_f8, Avg_Pool_2D_f8_types);
|
||||
|
||||
TYPED_TEST(AvgPool2D_f32, AvgPool2DTest_f32) { this->Run(); }
|
||||
|
||||
TYPED_TEST(AvgPool2D_int8, AvgPool2DTest_int8) { this->Run(); }
|
||||
|
||||
TYPED_TEST(AvgPool2D_f16, AvgPool2DTest_f16) { this->Run(); }
|
||||
|
||||
TYPED_TEST(AvgPool2D_bf16, AvgPool2DTest_bf16) { this->Run(); }
|
||||
|
||||
TYPED_TEST(AvgPool2D_f8, AvgPool2DTest_f8) { this->Run(); }
|
||||
145
test/pool/test_avg_pool2d_fwd.cpp
Normal file
145
test/pool/test_avg_pool2d_fwd.cpp
Normal file
@@ -0,0 +1,145 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "profiler/profile_pool2d_fwd_impl.hpp"
|
||||
#include "test_pool_fwd_common.hpp"
|
||||
|
||||
template <typename Tuple>
|
||||
class TestAvgPool2dFwd : 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>;
|
||||
|
||||
static std::vector<PoolingParam> params;
|
||||
|
||||
void Run()
|
||||
{
|
||||
for(auto param : params)
|
||||
{
|
||||
bool success =
|
||||
ck::profiler::profile_pool2d_fwd_impl<InDataType,
|
||||
OutDataType,
|
||||
ComputeDataType,
|
||||
IndexDataType,
|
||||
ck::tensor_layout::convolution::NHWC,
|
||||
ck::tensor_layout::convolution::NHWC,
|
||||
ck::ReduceTensorOp::AVG,
|
||||
false,
|
||||
false>(true,
|
||||
2,
|
||||
false,
|
||||
false,
|
||||
param.length_,
|
||||
param.window_spatial_lengths_,
|
||||
param.window_strides_,
|
||||
param.window_dilations_,
|
||||
param.input_left_pads_,
|
||||
param.input_right_pads_);
|
||||
EXPECT_TRUE(success);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
std::vector<PoolingParam> TestAvgPool2dFwd<T>::params = {
|
||||
{{{1, 1, 1, 1}, {1, 1}, {1, 1}, {1, 1}, {0, 0}, {0, 0}},
|
||||
{{2, 16, 64, 64}, {64, 64}, {1, 1}, {1, 1}, {0, 0}, {0, 0}},
|
||||
{{2, 16, 64, 64}, {4, 4}, {4, 4}, {2, 2}, {0, 0}, {0, 0}},
|
||||
{{2, 32, 30, 30}, {2, 2}, {2, 2}, {1, 1}, {1, 1}, {1, 1}}}};
|
||||
|
||||
using AvgPool2D_F32_Types =
|
||||
::testing::Types<std::tuple<F32, F32, F32, I32>, std::tuple<F32, F32, F32, I32>>;
|
||||
using AvgPool2D_F16_Types =
|
||||
::testing::Types<std::tuple<F16, F16, F32, I32>, std::tuple<F16, F16, F32, I32>>;
|
||||
using AvgPool2D_BF16_Types =
|
||||
::testing::Types<std::tuple<I8, I8, F32, I32>, std::tuple<BF16, BF16, F32, I32>>;
|
||||
using AvgPool2D_I8_Types =
|
||||
::testing::Types<std::tuple<I8, I8, F32, I32>, std::tuple<I8, I8, F32, I32>>;
|
||||
using AvgPool2D_F8_Types =
|
||||
::testing::Types<std::tuple<F8, F8, F32, I32>, std::tuple<F8, F8, F32, I32>>;
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_F32 : public TestAvgPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP32)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_F32 tests because CK_ENABLE_FP32 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_F16 : public TestAvgPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP16)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_F16 tests because CK_ENABLE_FP16 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_BF16 : public TestAvgPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_BF16)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_BF16 tests because CK_ENABLE_BF16 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_I8 : public TestAvgPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_INT8)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_I8 tests because CK_ENABLE_INT8 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class AvgPool2D_F8 : public TestAvgPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP8)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping AvgPool2D_F8 tests because CK_ENABLE_FP8 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
TYPED_TEST_SUITE(AvgPool2D_F32, AvgPool2D_F32_Types);
|
||||
TYPED_TEST_SUITE(AvgPool2D_F16, AvgPool2D_F16_Types);
|
||||
TYPED_TEST_SUITE(AvgPool2D_BF16, AvgPool2D_BF16_Types);
|
||||
TYPED_TEST_SUITE(AvgPool2D_I8, AvgPool2D_I8_Types);
|
||||
TYPED_TEST_SUITE(AvgPool2D_F8, AvgPool2D_F8_Types);
|
||||
|
||||
TYPED_TEST(AvgPool2D_F32, AvgPool2D_F32_Test) { this->Run(); }
|
||||
TYPED_TEST(AvgPool2D_F16, AvgPool2D_F16_Test) { this->Run(); }
|
||||
TYPED_TEST(AvgPool2D_BF16, AvgPool2D_BF16_Test) { this->Run(); }
|
||||
TYPED_TEST(AvgPool2D_I8, AvgPool2D_I8_Test) { this->Run(); }
|
||||
TYPED_TEST(AvgPool2D_F8, AvgPool2D_F8_Test) { this->Run(); }
|
||||
74
test/pool/test_avg_pool3d_bwd.cpp
Normal file
74
test/pool/test_avg_pool3d_bwd.cpp
Normal file
@@ -0,0 +1,74 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "profiler/profile_avg_pool3d_bwd_impl.hpp"
|
||||
#include "test_pool_fwd_common.hpp"
|
||||
|
||||
template <typename Tuple>
|
||||
class TestAvgPool3dBwd : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
using DOutDataType = std::tuple_element_t<0, Tuple>;
|
||||
using DInDataType = std::tuple_element_t<1, Tuple>;
|
||||
using ComputeDataType = std::tuple_element_t<2, Tuple>;
|
||||
using DOutLayout = std::tuple_element_t<3, Tuple>;
|
||||
using DInLayout = std::tuple_element_t<4, Tuple>;
|
||||
|
||||
std::vector<PoolingParam> params;
|
||||
|
||||
void Run()
|
||||
{
|
||||
for(auto param : params)
|
||||
{
|
||||
bool success =
|
||||
ck::profiler::profile_avg_pool3d_bwd_impl<DOutDataType,
|
||||
DInDataType,
|
||||
ComputeDataType,
|
||||
DOutLayout,
|
||||
DInLayout>(true,
|
||||
2,
|
||||
false,
|
||||
false,
|
||||
param.length_,
|
||||
param.window_spatial_lengths_,
|
||||
param.window_strides_,
|
||||
param.window_dilations_,
|
||||
param.input_left_pads_,
|
||||
param.input_right_pads_);
|
||||
EXPECT_TRUE(success);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#if defined(CK_ENABLE_FP16) && defined(CK_ENABLE_BF16) && defined(CK_ENABLE_FP32)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F16, F16, F32, NDHWC, NDHWC>,
|
||||
std::tuple<BF16, BF16, F32, NDHWC, NDHWC>,
|
||||
std::tuple<F32, F32, F32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_FP16) && defined(CK_ENABLE_FP32)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F16, F16, F32, NDHWC, NDHWC>,
|
||||
std::tuple<F32, F32, F32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_BF16) && defined(CK_ENABLE_FP32)
|
||||
using KernelTypes = ::testing::Types<std::tuple<BF16, BF16, F32, NDHWC, NDHWC>,
|
||||
std::tuple<F32, F32, F32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_FP16) && defined(CK_ENABLE_BF16)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F16, F16, F32, NDHWC, NDHWC>,
|
||||
std::tuple<BF16, BF16, F32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_FP16)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F16, F16, F32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_BF16)
|
||||
using KernelTypes = ::testing::Types<std::tuple<BF16, BF16, F32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_FP32)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F32, F32, F32, NDHWC, NDHWC>>;
|
||||
#endif
|
||||
|
||||
TYPED_TEST_SUITE(TestAvgPool3dBwd, KernelTypes);
|
||||
TYPED_TEST(TestAvgPool3dBwd, Test_Pool)
|
||||
{
|
||||
// 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}, {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}}};
|
||||
|
||||
this->Run();
|
||||
}
|
||||
63
test/pool/test_avg_pool3d_fwd.cpp
Normal file
63
test/pool/test_avg_pool3d_fwd.cpp
Normal file
@@ -0,0 +1,63 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2018-2024, 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 <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;
|
||||
|
||||
ck::profiler::PoolFwdInputParams in_params_avg_pool{true, 2, false, false, false, 1};
|
||||
|
||||
void Run()
|
||||
{
|
||||
for(auto param : params)
|
||||
{
|
||||
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_};
|
||||
|
||||
bool success =
|
||||
ck::profiler::profile_pool3d_fwd_impl<InDataType,
|
||||
OutDataType,
|
||||
ComputeDataType,
|
||||
IndexDataType,
|
||||
ck::tensor_layout::convolution::NDHWC,
|
||||
ck::tensor_layout::convolution::NDHWC,
|
||||
ck::ReduceTensorOp::AVG,
|
||||
false,
|
||||
false>(in_params_avg_pool, kernel_params);
|
||||
EXPECT_TRUE(success);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
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>>;
|
||||
|
||||
TYPED_TEST_SUITE(TestAvgPool3dFwd, KernelTypes);
|
||||
TYPED_TEST(TestAvgPool3dFwd, Test_Pool)
|
||||
{
|
||||
// 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}}};
|
||||
|
||||
this->Run();
|
||||
}
|
||||
139
test/pool/test_max_pool2d_bwd.cpp
Normal file
139
test/pool/test_max_pool2d_bwd.cpp
Normal file
@@ -0,0 +1,139 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "profiler/profile_max_pool2d_bwd_impl.hpp"
|
||||
#include "test_pool_fwd_common.hpp"
|
||||
|
||||
template <typename T>
|
||||
class MaxPool2dBWDTest : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
using DOutDataType = std::tuple_element_t<0, T>;
|
||||
using DInDataType = std::tuple_element_t<1, T>;
|
||||
using IndexDataType = std::tuple_element_t<2, T>;
|
||||
|
||||
using InDataType = DInDataType;
|
||||
using OutDataType = DOutDataType;
|
||||
|
||||
static std::vector<PoolingParam> params;
|
||||
|
||||
void Run()
|
||||
{
|
||||
for(auto param : this->params)
|
||||
{
|
||||
bool success =
|
||||
ck::profiler::profile_max_pool2d_bwd_impl<InDataType,
|
||||
OutDataType,
|
||||
IndexDataType,
|
||||
DOutDataType,
|
||||
DInDataType,
|
||||
false>(true,
|
||||
2,
|
||||
false,
|
||||
false,
|
||||
param.length_,
|
||||
param.window_spatial_lengths_,
|
||||
param.window_strides_,
|
||||
param.window_dilations_,
|
||||
param.input_left_pads_,
|
||||
param.input_right_pads_);
|
||||
EXPECT_TRUE(success);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
std::vector<PoolingParam> MaxPool2dBWDTest<T>::params = {
|
||||
{{1, 1, 1, 1}, {1, 1}, {1, 1}, {1, 1}, {0, 0}, {0, 0}},
|
||||
{{2, 16, 64, 64}, {64, 64}, {1, 1}, {1, 1}, {0, 0}, {0, 0}},
|
||||
{{2, 16, 64, 64}, {4, 4}, {4, 4}, {2, 2}, {0, 0}, {0, 0}},
|
||||
{{2, 32, 30, 30}, {2, 2}, {2, 2}, {1, 1}, {1, 1}, {1, 1}},
|
||||
{{2, 2, 30, 30}, {2, 2}, {2, 2}, {1, 1}, {1, 1}, {1, 1}}};
|
||||
|
||||
using Max_Pool_2D_f32_types = ::testing::Types<std::tuple<F32, F32, I32>>;
|
||||
using Max_Pool_2D_int8_types = ::testing::Types<std::tuple<I8, I8, I32>>;
|
||||
using Max_Pool_2D_f16_types = ::testing::Types<std::tuple<F16, F16, I32>>;
|
||||
using Max_Pool_2D_bf16_types = ::testing::Types<std::tuple<BF16, BF16, I32>>;
|
||||
using Max_Pool_2D_f8_types = ::testing::Types<std::tuple<F8, F8, I32>>;
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_f32 : public MaxPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP32)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_f32 tests because CK_ENABLE_FP32 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_int8 : public MaxPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_INT8)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_int8 tests because CK_ENABLE_INT8 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_f16 : public MaxPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP16)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_f16 because CK_ENABLE_FP16 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_bf16 : public MaxPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_BF16)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_bf16 tests because CK_ENABLE_BF16 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_f8 : public MaxPool2dBWDTest<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP8)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_f8 tests because CK_ENABLE_FP8 is not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
TYPED_TEST_SUITE(MaxPool2D_f32, Max_Pool_2D_f32_types);
|
||||
TYPED_TEST_SUITE(MaxPool2D_int8, Max_Pool_2D_int8_types);
|
||||
TYPED_TEST_SUITE(MaxPool2D_f16, Max_Pool_2D_f16_types);
|
||||
TYPED_TEST_SUITE(MaxPool2D_bf16, Max_Pool_2D_bf16_types);
|
||||
TYPED_TEST_SUITE(MaxPool2D_f8, Max_Pool_2D_f8_types);
|
||||
|
||||
TYPED_TEST(MaxPool2D_f32, MaxPool2DTest_f32) { this->Run(); }
|
||||
|
||||
TYPED_TEST(MaxPool2D_int8, MaxPool2DTest_int8) { this->Run(); }
|
||||
|
||||
TYPED_TEST(MaxPool2D_f16, MaxPool2DTest_f16) { this->Run(); }
|
||||
|
||||
TYPED_TEST(MaxPool2D_bf16, MaxPool2DTest_bf16) { this->Run(); }
|
||||
|
||||
TYPED_TEST(MaxPool2D_f8, MaxPool2DTest_f8) { this->Run(); }
|
||||
150
test/pool/test_max_pool2d_fwd.cpp
Normal file
150
test/pool/test_max_pool2d_fwd.cpp
Normal file
@@ -0,0 +1,150 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "profiler/profile_pool2d_fwd_impl.hpp"
|
||||
#include "test_pool_fwd_common.hpp"
|
||||
|
||||
template <typename Tuple>
|
||||
class TestMaxPool2dFwd : 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>;
|
||||
static constexpr bool ReturnIndex = std::tuple_element_t<4, Tuple>::value;
|
||||
|
||||
static std::vector<PoolingParam> params;
|
||||
|
||||
void Run()
|
||||
{
|
||||
for(auto param : params)
|
||||
{
|
||||
// max pool
|
||||
bool success =
|
||||
ck::profiler::profile_pool2d_fwd_impl<InDataType,
|
||||
OutDataType,
|
||||
ComputeDataType,
|
||||
IndexDataType,
|
||||
ck::tensor_layout::convolution::NHWC,
|
||||
ck::tensor_layout::convolution::NHWC,
|
||||
ck::ReduceTensorOp::MAX,
|
||||
false,
|
||||
ReturnIndex>(true,
|
||||
2,
|
||||
false,
|
||||
false,
|
||||
param.length_,
|
||||
param.window_spatial_lengths_,
|
||||
param.window_strides_,
|
||||
param.window_dilations_,
|
||||
param.input_left_pads_,
|
||||
param.input_right_pads_);
|
||||
EXPECT_TRUE(success);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
std::vector<PoolingParam> TestMaxPool2dFwd<T>::params = {
|
||||
{{{1, 1, 1, 1}, {1, 1}, {1, 1}, {1, 1}, {0, 0}, {0, 0}},
|
||||
{{2, 16, 64, 64}, {64, 64}, {1, 1}, {1, 1}, {0, 0}, {0, 0}},
|
||||
{{2, 16, 64, 64}, {4, 4}, {4, 4}, {2, 2}, {0, 0}, {0, 0}},
|
||||
{{2, 32, 30, 30}, {2, 2}, {2, 2}, {1, 1}, {1, 1}, {1, 1}}}};
|
||||
|
||||
using true_t = std::integral_constant<bool, true>;
|
||||
using false_t = std::integral_constant<bool, false>;
|
||||
|
||||
using MaxPool2D_F32_Types = ::testing::Types<std::tuple<F32, F32, F32, I32, true_t>,
|
||||
std::tuple<F32, F32, F32, I32, false_t>>;
|
||||
using MaxPool2D_F16_Types = ::testing::Types<std::tuple<F16, F16, F32, I32, true_t>,
|
||||
std::tuple<F16, F16, F32, I32, false_t>>;
|
||||
using MaxPool2D_BF16_Types = ::testing::Types<std::tuple<I8, I8, F32, I32, true_t>,
|
||||
std::tuple<BF16, BF16, F32, I32, false_t>>;
|
||||
using MaxPool2D_I8_Types =
|
||||
::testing::Types<std::tuple<I8, I8, F32, I32, true_t>, std::tuple<I8, I8, F32, I32, false_t>>;
|
||||
using MaxPool2D_F8_Types =
|
||||
::testing::Types<std::tuple<F8, F8, F32, I32, true_t>, std::tuple<F8, F8, F32, I32, false_t>>;
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_F32 : public TestMaxPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP32)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_F32 tests because CK_ENABLE_FP32 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_F16 : public TestMaxPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP16)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_F16 tests because CK_ENABLE_FP16 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_BF16 : public TestMaxPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_BF16)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_BF16 tests because CK_ENABLE_BF16 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_I8 : public TestMaxPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_INT8)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_I8 tests because CK_ENABLE_INT8 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
template <typename TType>
|
||||
class MaxPool2D_F8 : public TestMaxPool2dFwd<TType>
|
||||
{
|
||||
protected:
|
||||
void SetUp() override
|
||||
{
|
||||
if(!CK_ENABLE_FP8)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping MaxPool2D_F8 tests because CK_ENABLE_FP8 is "
|
||||
"not enabled";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
TYPED_TEST_SUITE(MaxPool2D_F32, MaxPool2D_F32_Types);
|
||||
TYPED_TEST_SUITE(MaxPool2D_F16, MaxPool2D_F16_Types);
|
||||
TYPED_TEST_SUITE(MaxPool2D_BF16, MaxPool2D_BF16_Types);
|
||||
TYPED_TEST_SUITE(MaxPool2D_I8, MaxPool2D_I8_Types);
|
||||
TYPED_TEST_SUITE(MaxPool2D_F8, MaxPool2D_F8_Types);
|
||||
|
||||
TYPED_TEST(MaxPool2D_F32, MaxPool2D_F32_Test) { this->Run(); }
|
||||
TYPED_TEST(MaxPool2D_F16, MaxPool2D_F16_Test) { this->Run(); }
|
||||
TYPED_TEST(MaxPool2D_BF16, MaxPool2D_BF16_Test) { this->Run(); }
|
||||
TYPED_TEST(MaxPool2D_I8, MaxPool2D_I8_Test) { this->Run(); }
|
||||
TYPED_TEST(MaxPool2D_F8, MaxPool2D_F8_Test) { this->Run(); }
|
||||
79
test/pool/test_max_pool3d_bwd.cpp
Normal file
79
test/pool/test_max_pool3d_bwd.cpp
Normal file
@@ -0,0 +1,79 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "profiler/profile_max_pool3d_bwd_impl.hpp"
|
||||
#include "test_pool_fwd_common.hpp"
|
||||
|
||||
template <typename Tuple>
|
||||
class TestMaxPool3dBwd : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
using DOutDataType = std::tuple_element_t<0, Tuple>;
|
||||
using DInDataType = std::tuple_element_t<1, Tuple>;
|
||||
using IndexDataType = std::tuple_element_t<2, Tuple>;
|
||||
|
||||
using InDataType = DInDataType;
|
||||
using OutDataType = DOutDataType;
|
||||
|
||||
std::vector<PoolingParam> params;
|
||||
|
||||
void Run()
|
||||
{
|
||||
for(auto param : params)
|
||||
{
|
||||
bool success =
|
||||
ck::profiler::profile_max_pool3d_bwd_impl<InDataType,
|
||||
OutDataType,
|
||||
IndexDataType,
|
||||
DOutDataType,
|
||||
DInDataType,
|
||||
false>(true,
|
||||
2,
|
||||
false,
|
||||
false,
|
||||
param.length_,
|
||||
param.window_spatial_lengths_,
|
||||
param.window_strides_,
|
||||
param.window_dilations_,
|
||||
param.input_left_pads_,
|
||||
param.input_right_pads_);
|
||||
EXPECT_TRUE(success);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#if defined(CK_ENABLE_FP16) && defined(CK_ENABLE_BF16) && defined(CK_ENABLE_FP32)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F16, F16, I32, NDHWC, NDHWC>,
|
||||
std::tuple<BF16, BF16, I32, NDHWC, NDHWC>,
|
||||
std::tuple<F32, F32, I32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_FP16) && defined(CK_ENABLE_FP32)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F16, F16, I32, NDHWC, NDHWC>,
|
||||
std::tuple<F32, F32, I32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_BF16) && defined(CK_ENABLE_FP32)
|
||||
using KernelTypes = ::testing::Types<std::tuple<BF16, BF16, I32, NDHWC, NDHWC>,
|
||||
std::tuple<F32, F32, I32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_FP16) && defined(CK_ENABLE_BF16)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F16, F16, I32, NDHWC, NDHWC>,
|
||||
std::tuple<BF16, BF16, I32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_FP16)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F16, F16, I32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_BF16)
|
||||
using KernelTypes = ::testing::Types<std::tuple<BF16, BF16, I32, NDHWC, NDHWC>>;
|
||||
#elif defined(CK_ENABLE_FP32)
|
||||
using KernelTypes = ::testing::Types<std::tuple<F32, F32, I32, NDHWC, NDHWC>>;
|
||||
#endif
|
||||
|
||||
TYPED_TEST_SUITE(TestMaxPool3dBwd, KernelTypes);
|
||||
TYPED_TEST(TestMaxPool3dBwd, Test_Pool)
|
||||
{
|
||||
// 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}, {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}}};
|
||||
|
||||
// this->params = {{{2, 32, 30, 30, 30}, {2, 2, 2}, {2, 2, 2}, {1, 1, 1}, {1, 1, 1}, {1, 1,
|
||||
// 1}}};
|
||||
|
||||
this->Run();
|
||||
}
|
||||
78
test/pool/test_max_pool3d_fwd.cpp
Normal file
78
test/pool/test_max_pool3d_fwd.cpp
Normal file
@@ -0,0 +1,78 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2018-2024, 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 <typename Tuple>
|
||||
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<PoolingParam> params;
|
||||
|
||||
ck::profiler::PoolFwdInputParams in_params_max_pool{true, 2, false, false, false, 0};
|
||||
ck::profiler::PoolFwdInputParams in_params_max_pool_indexed{true, 2, false, false, true, 0};
|
||||
|
||||
void Run()
|
||||
{
|
||||
for(auto param : params)
|
||||
{
|
||||
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_};
|
||||
|
||||
// max pool
|
||||
bool success =
|
||||
ck::profiler::profile_pool3d_fwd_impl<InDataType,
|
||||
OutDataType,
|
||||
ComputeDataType,
|
||||
IndexDataType,
|
||||
ck::tensor_layout::convolution::NDHWC,
|
||||
ck::tensor_layout::convolution::NDHWC,
|
||||
ck::ReduceTensorOp::MAX,
|
||||
false,
|
||||
false>(in_params_max_pool, kernel_params);
|
||||
EXPECT_TRUE(success);
|
||||
|
||||
// max pool + index
|
||||
success = ck::profiler::profile_pool3d_fwd_impl<InDataType,
|
||||
OutDataType,
|
||||
ComputeDataType,
|
||||
IndexDataType,
|
||||
ck::tensor_layout::convolution::NDHWC,
|
||||
ck::tensor_layout::convolution::NDHWC,
|
||||
ck::ReduceTensorOp::MAX,
|
||||
false,
|
||||
true>(in_params_max_pool_indexed,
|
||||
kernel_params);
|
||||
EXPECT_TRUE(success);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
using KernelTypes = ::testing::Types<std::tuple<I8, I8, I8, I32>,
|
||||
std::tuple<F8, F8, F8, I32>,
|
||||
std::tuple<F16, F16, F16, I32>,
|
||||
std::tuple<BF16, BF16, BF16, I32>,
|
||||
std::tuple<F32, F32, F32, I32>>;
|
||||
|
||||
TYPED_TEST_SUITE(TestMaxPool3dFwd, KernelTypes);
|
||||
TYPED_TEST(TestMaxPool3dFwd, Test_Pool)
|
||||
{
|
||||
// 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}}};
|
||||
|
||||
this->Run();
|
||||
}
|
||||
41
test/pool/test_pool_fwd_common.hpp
Normal file
41
test/pool/test_pool_fwd_common.hpp
Normal file
@@ -0,0 +1,41 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "ck/ck.hpp"
|
||||
|
||||
using I8 = int8_t;
|
||||
using F8 = ck::f8_t;
|
||||
using F16 = ck::half_t;
|
||||
using BF16 = ck::bhalf_t;
|
||||
using F32 = float;
|
||||
using I32 = int32_t;
|
||||
using I8 = int8_t;
|
||||
using F8 = ck::f8_t;
|
||||
using ck::index_t;
|
||||
using NDHWC = ck::tensor_layout::convolution::NDHWC;
|
||||
using NHWC = ck::tensor_layout::convolution::NHWC;
|
||||
|
||||
struct PoolingParam
|
||||
{
|
||||
PoolingParam(const std::vector<index_t>& length,
|
||||
const std::vector<index_t>& window_spatial_lengths,
|
||||
const std::vector<index_t>& window_strides,
|
||||
const std::vector<index_t>& window_dilations,
|
||||
const std::vector<index_t>& input_left_pads,
|
||||
const std::vector<index_t>& input_right_pads)
|
||||
: length_(length),
|
||||
window_spatial_lengths_(window_spatial_lengths),
|
||||
window_strides_(window_strides),
|
||||
window_dilations_(window_dilations),
|
||||
input_left_pads_(input_left_pads),
|
||||
input_right_pads_(input_right_pads)
|
||||
{
|
||||
}
|
||||
std::vector<index_t> length_;
|
||||
std::vector<index_t> window_spatial_lengths_;
|
||||
std::vector<index_t> window_strides_;
|
||||
std::vector<index_t> window_dilations_;
|
||||
std::vector<index_t> input_left_pads_;
|
||||
std::vector<index_t> input_right_pads_;
|
||||
};
|
||||
Reference in New Issue
Block a user