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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
|
/*! \file */
/* ************************************************************************
* Copyright (C) 2019-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.
*
* ************************************************************************ */
#pragma once
#ifndef ROCSPARSE_TEST_HPP
#define ROCSPARSE_TEST_HPP
#include "rocsparse_arguments.hpp"
#include "test_cleanup.hpp"
#include <cstdio>
#include <sstream>
#include <type_traits>
#include <unordered_map>
#include <utility>
#include <vector>
static constexpr const char* s_timing_info_perf = "GFlop/s";
static constexpr const char* s_timing_info_bandwidth = "GB/s";
static constexpr const char* s_timing_info_time = "msec";
rocsparse_status rocsparse_record_timing(double msec, double gflops, double gbs);
rocsparse_status rocsparse_record_output(const std::string&);
rocsparse_status rocsparse_record_output_legend(const std::string&);
#ifdef GOOGLE_TEST
#include <gtest/gtest.h>
// Extra macro so that macro arguments get expanded before calling Google Test
#define CHECK_HIP_ERROR2(ERROR) ASSERT_EQ(ERROR, hipSuccess)
#define CHECK_HIP_ERROR(ERROR) CHECK_HIP_ERROR2(ERROR)
#define EXPECT_ROCSPARSE_STATUS ASSERT_EQ
#define EXPECT_ROCSPARSE_DATA_STATUS ASSERT_EQ
#else // GOOGLE_TEST
inline const char* rocsparse_status_to_string(rocsparse_status status)
{
switch(status)
{
case rocsparse_status_success:
return "rocsparse_status_success";
case rocsparse_status_invalid_handle:
return "rocsparse_status_invalid_handle";
case rocsparse_status_not_implemented:
return "rocsparse_status_not_implemented";
case rocsparse_status_invalid_pointer:
return "rocsparse_status_invalid_pointer";
case rocsparse_status_invalid_size:
return "rocsparse_status_invalid_size";
case rocsparse_status_memory_error:
return "rocsparse_status_memory_error";
case rocsparse_status_internal_error:
return "rocsparse_status_internal_error";
case rocsparse_status_invalid_value:
return "rocsparse_status_invalid_value";
case rocsparse_status_arch_mismatch:
return "rocsparse_status_arch_mismatch";
case rocsparse_status_zero_pivot:
return "rocsparse_status_zero_pivot";
case rocsparse_status_not_initialized:
return "rocsparse_status_not_initialized";
case rocsparse_status_type_mismatch:
return "rocsparse_status_type_mismatch";
case rocsparse_status_requires_sorted_storage:
return "rocsparse_status_requires_sorted_storage";
default:
return "<undefined rocsparse_status value>";
}
}
inline const char* rocsparse_data_status_to_string(rocsparse_data_status status)
{
switch(status)
{
case rocsparse_data_status_success:
return "rocsparse_data_status_success";
case rocsparse_data_status_inf:
return "rocsparse_data_status_inf";
case rocsparse_data_status_nan:
return "rocsparse_data_status_nan";
case rocsparse_data_status_invalid_offset_ptr:
return "rocsparse_data_status_invalid_offset_ptr";
case rocsparse_data_status_invalid_index:
return "rocsparse_data_status_invalid_index";
case rocsparse_data_status_duplicate_entry:
return "rocsparse_data_status_duplicate_entry";
case rocsparse_data_status_invalid_sorting:
return "rocsparse_data_status_invalid_sorting";
case rocsparse_data_status_invalid_fill:
return "rocsparse_data_status_invalid_fill";
default:
return "<undefined rocsparse_status value>";
}
}
inline void rocsparse_expect_status(rocsparse_status status, rocsparse_status expect)
{
if(status != expect)
{
std::cerr << "rocSPARSE status error: Expected " << rocsparse_status_to_string(expect)
<< ", received " << rocsparse_status_to_string(status) << std::endl;
if(expect == rocsparse_status_success)
{
exit(EXIT_FAILURE);
}
}
}
inline void rocsparse_expect_data_status(rocsparse_data_status status, rocsparse_data_status expect)
{
if(status != expect)
{
std::cerr << "rocSPARSE data status error: Expected "
<< rocsparse_data_status_to_string(expect) << ", received "
<< rocsparse_data_status_to_string(status) << std::endl;
if(expect == rocsparse_data_status_success)
{
exit(EXIT_FAILURE);
}
}
}
#define CHECK_HIP_ERROR(ERROR) \
do \
{ \
auto error = ERROR; \
if(error != hipSuccess) \
{ \
fprintf(stderr, \
"error: '%s'(%d) at %s:%d\n", \
hipGetErrorString(error), \
error, \
__FILE__, \
__LINE__); \
exit(EXIT_FAILURE); \
} \
} while(0)
#define EXPECT_ROCSPARSE_STATUS rocsparse_expect_status
#define EXPECT_ROCSPARSE_DATA_STATUS rocsparse_expect_data_status
#endif // GOOGLE_TEST
#define CHECK_ROCSPARSE_ERROR2(STATUS) EXPECT_ROCSPARSE_STATUS(STATUS, rocsparse_status_success)
#define CHECK_ROCSPARSE_ERROR(STATUS) CHECK_ROCSPARSE_ERROR2(STATUS)
#define CHECK_ROCSPARSE_DATA_ERROR2(STATUS) \
EXPECT_ROCSPARSE_DATA_STATUS(STATUS, rocsparse_data_status_success)
#define CHECK_ROCSPARSE_DATA_ERROR(STATUS) CHECK_ROCSPARSE_DATA_ERROR2(STATUS)
#define CHECK_ROCSPARSE_THROW_ERROR(STATUS) \
if(STATUS != rocsparse_status_success) \
{ \
throw STATUS; \
}
#define CHECK_HIP_THROW_ERROR(ERROR) \
if(ERROR != hipSuccess) \
{ \
throw ERROR; \
}
#ifdef GOOGLE_TEST
// The tests are instantiated by filtering through the RocSPARSE_Data stream
// The filter is by category and by the type_filter() and function_filter()
// functions in the testclass
#define INSTANTIATE_TEST_CATEGORY(testclass, categ0ry) \
INSTANTIATE_TEST_SUITE_P( \
categ0ry, \
testclass, \
testing::ValuesIn(RocSPARSE_TestData::begin([](const Arguments& arg) { \
return !strcmp(arg.category, #categ0ry) \
&& testclass::type_filter(arg) \
&& testclass::function_filter(arg); \
}), \
RocSPARSE_TestData::end()), \
testclass::PrintToStringParamName());
// Instantiate all test categories
#define INSTANTIATE_TEST_CATEGORIES(testclass) \
INSTANTIATE_TEST_CATEGORY(testclass, quick) \
INSTANTIATE_TEST_CATEGORY(testclass, pre_checkin) \
INSTANTIATE_TEST_CATEGORY(testclass, nightly) \
INSTANTIATE_TEST_CATEGORY(testclass, stress) \
INSTANTIATE_TEST_CATEGORY(testclass, known_bug)
/* ============================================================================================ */
/*! \brief Normalized test name to conform to Google Tests */
// Template parameter is used to generate multiple instantiations
template <typename>
class RocSPARSE_TestName
{
std::ostringstream str;
static auto& get_table()
{
// Placed inside function to avoid dependency on initialization order
static std::unordered_map<std::string, size_t>* table = test_cleanup::allocate(&table);
return *table;
}
public:
// Convert stream to normalized Google Test name
// rvalue reference qualified so that it can only be called once
// The name should only be generated once before the stream is destroyed
operator std::string() &&
{
// This table is private to each instantation of RocSPARSE_TestName
auto& table = get_table();
std::string name(str.str());
if(name == "")
name = "1";
// Warn about unset letter parameters
if(name.find('*') != name.npos)
fputs("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"
"Warning: Character * found in name."
" This means a required letter parameter\n"
"(e.g., transA, diag, etc.) has not been set in the YAML file."
" Check the YAML file.\n"
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n",
stderr);
// Replace non-alphanumeric characters with letters
std::replace(name.begin(), name.end(), '-', 'n'); // minus
std::replace(name.begin(), name.end(), '.', 'p'); // decimal point
// Complex (A,B) is replaced with ArBi
name.erase(std::remove(name.begin(), name.end(), '('), name.end());
std::replace(name.begin(), name.end(), ',', 'r');
std::replace(name.begin(), name.end(), ')', 'i');
// If parameters are repeated, append an incrementing suffix
auto p = table.find(name);
if(p != table.end())
name += "_t" + std::to_string(++p->second);
else
table[name] = 1;
return name;
}
// Stream output operations
template <typename U> // Lvalue LHS
friend RocSPARSE_TestName& operator<<(RocSPARSE_TestName& name, U&& obj)
{
name.str << std::forward<U>(obj);
return name;
}
template <typename U> // Rvalue LHS
friend RocSPARSE_TestName&& operator<<(RocSPARSE_TestName&& name, U&& obj)
{
name.str << std::forward<U>(obj);
return std::move(name);
}
RocSPARSE_TestName() = default;
RocSPARSE_TestName(const RocSPARSE_TestName&) = delete;
RocSPARSE_TestName& operator=(const RocSPARSE_TestName&) = delete;
};
// ----------------------------------------------------------------------------
// RocSPARSE_Test base class. All non-legacy rocSPARSE Google tests derive from it.
// It defines a type_filter_functor() and a PrintToStringParamName class
// which calls name_suffix() in the derived class to form the test name suffix.
// ----------------------------------------------------------------------------
template <typename TEST, template <typename...> class FILTER>
class RocSPARSE_Test : public testing::TestWithParam<Arguments>
{
protected:
// This template functor returns true if the type arguments are valid.
// It converts a FILTER specialization to bool to test type matching.
template <typename... T>
struct type_filter_functor
{
bool operator()(const Arguments&)
{
return static_cast<bool>(FILTER<T...>{});
}
};
public:
// Wrapper functor class which calls name_suffix()
struct PrintToStringParamName
{
std::string operator()(const testing::TestParamInfo<Arguments>& info) const
{
return TEST::name_suffix(info.param);
}
};
};
#endif // GOOGLE_TEST
// ----------------------------------------------------------------------------
// Error case which returns false when converted to bool. A void specialization
// of the FILTER class template above, should be derived from this class, in
// order to indicate that the type combination is invalid.
// ----------------------------------------------------------------------------
struct rocsparse_test_invalid
{
// Return false to indicate the type combination is invalid, for filtering
explicit operator bool()
{
return false;
}
// If this specialization is actually called, print fatal error message
void operator()(const Arguments&)
{
static constexpr char msg[] = "Internal error: Test called with invalid types\n";
#ifdef GOOGLE_TEST
FAIL() << msg;
#else
fputs(msg, stderr);
exit(EXIT_FAILURE);
#endif
}
};
#endif // ROCSPARSE_TEST_HPP
|