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
|
/* ************************************************************************
* Copyright (C) 2023-2024 Advanced Micro Devices, Inc.
* ************************************************************************ */
#include "testing_csrrf_refactlu.hpp"
using ::testing::Combine;
using ::testing::TestWithParam;
using ::testing::Values;
using ::testing::ValuesIn;
using namespace std;
typedef std::tuple<int, int> csrrf_refactlu_tuple;
// case when n = 20 and nnz = 60 also execute the bad arguments test
// (null handle, null pointers and invalid values)
// for checkin_lapack tests
const vector<int> n_range = {
// normal (valid) samples
20,
50,
};
const vector<int> nnz_range = {
// normal (valid) samples
60,
100,
140,
};
// // for daily_lapack tests
// const vector<int> large_n_range = {
// // normal (valid) samples
// 100,
// 250,
// };
// const vector<int> large_nnz_range = {
// // normal (valid) samples
// 300,
// 500,
// 700,
// };
Arguments csrrf_refactlu_setup_arguments(csrrf_refactlu_tuple tup)
{
int n = std::get<0>(tup);
int nnz = std::get<1>(tup);
Arguments arg;
arg.set<rocblas_int>("n", n);
arg.set<rocblas_int>("nnzA", nnz);
arg.timing = 0;
return arg;
}
class CSRRF_REFACTLU : public ::TestWithParam<csrrf_refactlu_tuple>
{
protected:
void TearDown() override
{
EXPECT_EQ(hipGetLastError(), hipSuccess);
}
template <typename T>
void run_tests()
{
Arguments arg = csrrf_refactlu_setup_arguments(GetParam());
if(arg.peek<rocblas_int>("n") == 20 && arg.peek<rocblas_int>("nnzA") == 60)
testing_csrrf_refactlu_bad_arg<T>();
arg.batch_count = 1;
testing_csrrf_refactlu<T>(arg);
}
};
// non-batch tests
/*TEST_P(CSRRF_REFACTLU, __float)
{
run_tests<float>();
}*/
TEST_P(CSRRF_REFACTLU, __double)
{
run_tests<double>();
}
/*TEST_P(CSRRF_REFACTLU, __float_complex)
{
run_tests<rocblas_float_complex>();
}
TEST_P(CSRRF_REFACTLU, __double_complex)
{
run_tests<rocblas_double_complex>();
}*/
// INSTANTIATE_TEST_SUITE_P(daily_lapack,
// CSRRF_REFACTLU,
// Combine(ValuesIn(large_n_range), ValuesIn(large_nnz_range)));
INSTANTIATE_TEST_SUITE_P(checkin_lapack,
CSRRF_REFACTLU,
Combine(ValuesIn(n_range), ValuesIn(nnz_range)));
|