1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
// Copyright (C) 2021 - 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.
#include "accuracy_test.h"
std::vector<std::vector<size_t>> callback_sizes = {
// some single kernel sizes
{4},
{16},
{81},
{100},
// L1D_TRTRT sizes
{220},
{330},
{1344},
// L1D_CC sizes
{8192},
{10000},
// prime
{23},
{29},
// 2D_SINGLE sizes, small and big
{16, 8},
{32, 32},
{9, 81},
{27, 81},
{81, 27},
{256, 9},
{9, 256},
{125, 32},
{32, 125},
// 2D_RTRT
{20, 40},
{81, 81},
// 2D_RC
{128, 64},
{128, 256},
// more complicated children of 2D_RTRT (L1D_TRTRT, L1D_CC, prime)
{4, 220},
{220, 4},
{4, 8192},
{8192, 4},
{4, 23},
{23, 4},
// 3D_TRTRTR, with complicated children
{63, 5, 6},
{6, 5, 63},
{23, 5, 6},
{6, 5, 23},
{70, 5, 6},
{6, 5, 70},
{8192, 5, 6},
{6, 5, 8192},
// 3D_RTRT, with complicated children
{23, 4, 4},
{4, 4, 23},
{70, 4, 4},
{4, 4, 70},
{8192, 4, 4},
{4, 4, 8192},
// 3D odd lengths
{27, 27, 27},
// 3D_BLOCK_RC
{64, 64, 64},
};
const static std::vector<std::vector<size_t>> stride_range = {{1}};
const static std::vector<std::vector<size_t>> ioffset_range_zero = {{0, 0}};
const static std::vector<std::vector<size_t>> ooffset_range_zero = {{0, 0}};
const static std::vector<std::vector<size_t>> ioffset_range = {{0, 0}, {1, 1}};
const static std::vector<std::vector<size_t>> ooffset_range = {{0, 0}, {1, 1}};
auto forward_transform_types
= {fft_transform_type_complex_forward, fft_transform_type_real_forward};
INSTANTIATE_TEST_SUITE_P(callback,
accuracy_test,
::testing::ValuesIn(param_generator_base(forward_transform_types,
callback_sizes,
precision_range_sp_dp,
batch_range,
generate_types,
stride_range,
stride_range,
ioffset_range_zero,
ooffset_range_zero,
place_range,
false,
true)),
accuracy_test::TestName);
INSTANTIATE_TEST_SUITE_P(DISABLED_callback,
accuracy_test,
::testing::ValuesIn(param_generator_base(forward_transform_types,
callback_sizes,
precision_range_sp_dp,
batch_range,
generate_types,
stride_range,
stride_range,
ioffset_range,
ooffset_range,
place_range,
false,
true)),
accuracy_test::TestName);
// one of the obvious use cases for callbacks is to implement result
// scaling manually, so use the same sizes to test rocFFT's own
// result scaling feature.
inline auto param_generator_scaling(const std::vector<std::vector<size_t>>& v_lengths)
{
auto params = param_generator(callback_sizes,
precision_range_sp_dp,
batch_range,
stride_range,
stride_range,
ioffset_range_zero,
ooffset_range_zero,
place_range,
true);
for(auto& param : params)
param.scale_factor = 7.23;
return params;
}
INSTANTIATE_TEST_SUITE_P(scaling,
accuracy_test,
::testing::ValuesIn(param_generator_scaling(callback_sizes)),
accuracy_test::TestName);
|