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 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
|
/* **************************************************************************
* Copyright (C) 2023-2024 Advanced Micro Devices, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* *************************************************************************/
#pragma once
#include "common/misc/client_util.hpp"
#include "common/misc/clientcommon.hpp"
#include "common/misc/lapack_host_reference.hpp"
#include "common/misc/norm.hpp"
#include "common/misc/rocsolver.hpp"
#include "common/misc/rocsolver_arguments.hpp"
#include "common/misc/rocsolver_test.hpp"
template <typename T>
void csrrf_splitlu_checkBadArgs(rocblas_handle handle,
const rocblas_int n,
const rocblas_int nnzT,
rocblas_int* ptrT,
rocblas_int* indT,
T valT,
rocblas_int* ptrL,
rocblas_int* indL,
T valL,
rocblas_int* ptrU,
rocblas_int* indU,
T valU)
{
// handle
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(nullptr, n, nnzT, ptrT, indT, valT, ptrL, indL,
valL, ptrU, indU, valU),
rocblas_status_invalid_handle);
// values
// N/A
// sizes (only check batch_count if applicable)
// N/A
// pointers
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, (rocblas_int*)nullptr, indT,
valT, ptrL, indL, valL, ptrU, indU, valU),
rocblas_status_invalid_pointer);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, ptrT, (rocblas_int*)nullptr,
valT, ptrL, indL, valL, ptrU, indU, valU),
rocblas_status_invalid_pointer);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, ptrT, indT, (T) nullptr, ptrL,
indL, valL, ptrU, indU, valU),
rocblas_status_invalid_pointer);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, ptrT, indT, valT,
(rocblas_int*)nullptr, indL, valL, ptrU, indU, valU),
rocblas_status_invalid_pointer);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, ptrT, indT, valT, ptrL,
(rocblas_int*)nullptr, valL, ptrU, indU, valU),
rocblas_status_invalid_pointer);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, ptrT, indT, valT, ptrL, indL,
(T) nullptr, ptrU, indU, valU),
rocblas_status_invalid_pointer);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, ptrT, indT, valT, ptrL, indL,
valL, (rocblas_int*)nullptr, indU, valU),
rocblas_status_invalid_pointer);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, ptrT, indT, valT, ptrL, indL,
valL, ptrU, (rocblas_int*)nullptr, valU),
rocblas_status_invalid_pointer);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, ptrT, indT, valT, ptrL, indL,
valL, ptrU, indU, (T) nullptr),
rocblas_status_invalid_pointer);
// quick return with invalid pointers
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, 0, ptrT, (rocblas_int*)nullptr,
(T) nullptr, ptrL, indL, valL, ptrU,
(rocblas_int*)nullptr, (T) nullptr),
rocblas_status_success);
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, 0, 0, ptrT, (rocblas_int*)nullptr,
(T) nullptr, ptrL, (rocblas_int*)nullptr,
(T) nullptr, ptrU, (rocblas_int*)nullptr,
(T) nullptr),
rocblas_status_success);
// quick return with zero batch_count if applicable
// N/A
}
template <typename T>
void testing_csrrf_splitlu_bad_arg()
{
// safe arguments
rocblas_local_handle handle;
rocblas_int n = 1;
rocblas_int nnzT = 1;
// memory allocations
device_strided_batch_vector<rocblas_int> ptrT(1, 1, 1, 1);
device_strided_batch_vector<rocblas_int> indT(1, 1, 1, 1);
device_strided_batch_vector<T> valT(1, 1, 1, 1);
device_strided_batch_vector<rocblas_int> ptrL(1, 1, 1, 1);
device_strided_batch_vector<rocblas_int> indL(1, 1, 1, 1);
device_strided_batch_vector<T> valL(1, 1, 1, 1);
device_strided_batch_vector<rocblas_int> ptrU(1, 1, 1, 1);
device_strided_batch_vector<rocblas_int> indU(1, 1, 1, 1);
device_strided_batch_vector<T> valU(1, 1, 1, 1);
CHECK_HIP_ERROR(ptrT.memcheck());
CHECK_HIP_ERROR(indT.memcheck());
CHECK_HIP_ERROR(valT.memcheck());
CHECK_HIP_ERROR(ptrL.memcheck());
CHECK_HIP_ERROR(indL.memcheck());
CHECK_HIP_ERROR(valL.memcheck());
CHECK_HIP_ERROR(ptrU.memcheck());
CHECK_HIP_ERROR(indU.memcheck());
CHECK_HIP_ERROR(valU.memcheck());
// check bad arguments
csrrf_splitlu_checkBadArgs(handle, n, nnzT, ptrT.data(), indT.data(), valT.data(), ptrL.data(),
indL.data(), valL.data(), ptrU.data(), indU.data(), valU.data());
}
template <bool CPU, bool GPU, typename T, typename Td, typename Ud, typename Th, typename Uh>
void csrrf_splitlu_initData(rocblas_handle handle,
const rocblas_int n,
const rocblas_int nnzT,
const rocblas_int nnzL,
const rocblas_int nnzU,
Ud& dptrT,
Ud& dindT,
Td& dvalT,
Uh& hptrT,
Uh& hindT,
Th& hvalT,
Uh& hptrL,
Uh& hindL,
Th& hvalL,
Uh& hptrU,
Uh& hindU,
Th& hvalU)
{
// As the bundle matrix T = L - I + U, nnzT = 0 indicates that the
// factorized matrix is the matrix zero, i.e. L = I and U = 0
bool mat_zero = (nnzT == 0);
// if not matrix zero, generate input data
if(!mat_zero)
{
if(CPU)
{
// initialize golden result (factor L)
random_sparse_matrix(n, nnzL, hptrL.data(), hindL.data(), hvalL.data(),
rocblas_fill_lower, rocsolver_diagonal_mode_unit);
// initialize golden result (factor U)
random_sparse_matrix(n, nnzU, hptrU.data(), hindU.data(), hvalU.data(),
rocblas_fill_upper, rocsolver_diagonal_mode_random);
// construct input matrix (bundle matrix L - I + U)
cpu_sumlu(n, hptrL.data(), hindL.data(), hvalL.data(), hptrU.data(), hindU.data(),
hvalU.data(), hptrT.data(), hindT.data(), hvalT.data());
}
if(GPU)
{
CHECK_HIP_ERROR(dptrT.transfer_from(hptrT));
CHECK_HIP_ERROR(dindT.transfer_from(hindT));
CHECK_HIP_ERROR(dvalT.transfer_from(hvalT));
}
}
}
template <typename T, typename Td, typename Ud, typename Th, typename Uh>
void csrrf_splitlu_getError(rocblas_handle handle,
const rocblas_int n,
const rocblas_int nnzT,
Ud& dptrT,
Ud& dindT,
Td& dvalT,
const rocblas_int nnzL,
Ud& dptrL,
Ud& dindL,
Td& dvalL,
const rocblas_int nnzU,
Ud& dptrU,
Ud& dindU,
Td& dvalU,
Uh& hptrT,
Uh& hindT,
Th& hvalT,
Uh& hptrL,
Uh& hindL,
Th& hvalL,
Uh& hptrU,
Uh& hindU,
Th& hvalU,
Uh& hptrLres,
Uh& hindLres,
Th& hvalLres,
Uh& hptrUres,
Uh& hindUres,
Th& hvalUres,
double* max_err)
{
// input data initialization
csrrf_splitlu_initData<true, true, T>(handle, n, nnzT, nnzL, nnzU, dptrT, dindT, dvalT, hptrT,
hindT, hvalT, hptrL, hindL, hvalL, hptrU, hindU, hvalU);
// execute computations
// GPU lapack
CHECK_ROCBLAS_ERROR(rocsolver_csrrf_splitlu(
handle, n, nnzT, dptrT.data(), dindT.data(), dvalT.data(), dptrL.data(), dindL.data(),
dvalL.data(), dptrU.data(), dindU.data(), dvalU.data()));
CHECK_HIP_ERROR(hptrLres.transfer_from(dptrL));
CHECK_HIP_ERROR(hindLres.transfer_from(dindL));
CHECK_HIP_ERROR(hvalLres.transfer_from(dvalL));
CHECK_HIP_ERROR(hptrUres.transfer_from(dptrU));
CHECK_HIP_ERROR(hindUres.transfer_from(dindU));
CHECK_HIP_ERROR(hvalUres.transfer_from(dvalU));
double err = 0;
bool mat_zero = (nnzT == 0);
// if not matrix zero, compare computed results with golden result
if(!mat_zero)
{
for(rocblas_int i = 0; i <= n; ++i)
{
err += (hptrL[0][i] - hptrLres[0][i]);
err += (hptrU[0][i] - hptrUres[0][i]);
}
for(rocblas_int i = 0; i < nnzL; ++i)
{
err += (hindL[0][i] - hindLres[0][i]);
err += (hvalL[0][i] - hvalLres[0][i]);
}
for(rocblas_int i = 0; i < nnzU; ++i)
{
err += (hindU[0][i] - hindUres[0][i]);
err += (hvalU[0][i] - hvalUres[0][i]);
}
}
// otherwise simply check that L = identity and ptrU = 0
else
{
for(rocblas_int i = 0; i < n; ++i)
{
err += i - hptrLres[0][i];
err += i - hindLres[0][i];
err += 1 - hvalLres[0][i];
err += hptrUres[0][i];
}
err += n - hptrLres[0][n];
err += hptrUres[0][n];
}
*max_err = err;
}
template <typename T, typename Td, typename Ud, typename Th, typename Uh>
void csrrf_splitlu_getPerfData(rocblas_handle handle,
const rocblas_int n,
const rocblas_int nnzT,
Ud& dptrT,
Ud& dindT,
Td& dvalT,
const rocblas_int nnzL,
Ud& dptrL,
Ud& dindL,
Td& dvalL,
const rocblas_int nnzU,
Ud& dptrU,
Ud& dindU,
Td& dvalU,
Uh& hptrT,
Uh& hindT,
Th& hvalT,
Uh& hptrL,
Uh& hindL,
Th& hvalL,
Uh& hptrU,
Uh& hindU,
Th& hvalU,
double* gpu_time_used,
double* cpu_time_used,
const rocblas_int hot_calls,
const int profile,
const bool profile_kernels,
const bool perf)
{
*cpu_time_used = nan(""); // no timing on cpu-lapack execution
csrrf_splitlu_initData<true, false, T>(handle, n, nnzT, nnzL, nnzU, dptrT, dindT, dvalT, hptrT,
hindT, hvalT, hptrL, hindL, hvalL, hptrU, hindU, hvalU);
// cold calls
for(int iter = 0; iter < 2; iter++)
{
csrrf_splitlu_initData<false, true, T>(handle, n, nnzT, nnzL, nnzU, dptrT, dindT, dvalT,
hptrT, hindT, hvalT, hptrL, hindL, hvalL, hptrU,
hindU, hvalU);
CHECK_ROCBLAS_ERROR(rocsolver_csrrf_splitlu(
handle, n, nnzT, dptrT.data(), dindT.data(), dvalT.data(), dptrL.data(), dindL.data(),
dvalL.data(), dptrU.data(), dindU.data(), dvalU.data()));
}
// gpu-lapack performance
hipStream_t stream;
CHECK_ROCBLAS_ERROR(rocblas_get_stream(handle, &stream));
double start;
if(profile > 0)
{
if(profile_kernels)
rocsolver_log_set_layer_mode(rocblas_layer_mode_log_profile
| rocblas_layer_mode_ex_log_kernel);
else
rocsolver_log_set_layer_mode(rocblas_layer_mode_log_profile);
rocsolver_log_set_max_levels(profile);
}
for(rocblas_int iter = 0; iter < hot_calls; iter++)
{
csrrf_splitlu_initData<false, true, T>(handle, n, nnzT, nnzL, nnzU, dptrT, dindT, dvalT,
hptrT, hindT, hvalT, hptrL, hindL, hvalL, hptrU,
hindU, hvalU);
start = get_time_us_sync(stream);
rocsolver_csrrf_splitlu(handle, n, nnzT, dptrT.data(), dindT.data(), dvalT.data(),
dptrL.data(), dindL.data(), dvalL.data(), dptrU.data(),
dindU.data(), dvalU.data());
*gpu_time_used += get_time_us_sync(stream) - start;
}
*gpu_time_used /= hot_calls;
}
template <typename T>
void testing_csrrf_splitlu(Arguments& argus)
{
// get arguments
rocblas_local_handle handle;
rocblas_int n = argus.get<rocblas_int>("n");
rocblas_int nnzT = argus.get<rocblas_int>("nnzT");
rocblas_int hot_calls = argus.iters;
// check non-supported values
// N/A
// check invalid sizes
bool invalid_size = (n < 0 || nnzT < 0);
if(invalid_size)
{
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, (rocblas_int*)nullptr,
(rocblas_int*)nullptr, (T*)nullptr,
(rocblas_int*)nullptr, (rocblas_int*)nullptr,
(T*)nullptr, (rocblas_int*)nullptr,
(rocblas_int*)nullptr, (T*)nullptr),
rocblas_status_invalid_size);
if(argus.timing)
rocsolver_bench_inform(inform_invalid_size);
return;
}
// memory size query if necessary
if(argus.mem_query || !USE_ROCBLAS_REALLOC_ON_DEMAND)
{
CHECK_ROCBLAS_ERROR(rocblas_start_device_memory_size_query(handle));
CHECK_ALLOC_QUERY(rocsolver_csrrf_splitlu(
handle, n, nnzT, (rocblas_int*)nullptr, (rocblas_int*)nullptr, (T*)nullptr,
(rocblas_int*)nullptr, (rocblas_int*)nullptr, (T*)nullptr, (rocblas_int*)nullptr,
(rocblas_int*)nullptr, (T*)nullptr));
size_t size;
CHECK_ROCBLAS_ERROR(rocblas_stop_device_memory_size_query(handle, &size));
if(argus.mem_query)
{
rocsolver_bench_inform(inform_mem_query, size);
return;
}
CHECK_ROCBLAS_ERROR(rocblas_set_device_memory_size(handle, size));
}
// determine/validate number of non-zeros
rocblas_int nnzL = n;
rocblas_int nnzU = 0;
bool mat_zero = (nnzT == 0);
if(!mat_zero)
{
if(nnzT > n * n)
nnzT = n * n;
// assign a random number of nonzeros to L and U
rocblas_seedrand();
rocblas_int high, low;
low = std::max(0, nnzT - n * (n - 1) / 2);
high = std::min(nnzT, n * (n + 1) / 2);
nnzU = random_generator<rocblas_int>(low, high);
nnzL += nnzT - nnzU;
}
// determine sizes
size_t size_ptrT = size_t(n) + 1;
size_t size_indT = size_t(nnzT);
size_t size_valT = size_t(nnzT);
size_t size_ptrL = size_t(n) + 1;
size_t size_indL = size_t(nnzL);
size_t size_valL = size_t(nnzL);
size_t size_ptrU = size_t(n) + 1;
size_t size_indU = size_t(nnzU);
size_t size_valU = size_t(nnzU);
size_t size_ptrLres = 0;
size_t size_indLres = 0;
size_t size_valLres = 0;
size_t size_ptrUres = 0;
size_t size_indUres = 0;
size_t size_valUres = 0;
if(argus.unit_check || argus.norm_check)
{
size_ptrLres = size_ptrL;
size_indLres = size_indL;
size_valLres = size_valL;
size_ptrUres = size_ptrU;
size_indUres = size_indU;
size_valUres = size_valU;
}
double max_error = 0, gpu_time_used = 0, cpu_time_used = 0;
// memory allocations
host_strided_batch_vector<rocblas_int> hptrT(size_ptrT, 1, size_ptrT, 1);
host_strided_batch_vector<rocblas_int> hindT(size_indT, 1, size_indT, 1);
host_strided_batch_vector<T> hvalT(size_valT, 1, size_valT, 1);
host_strided_batch_vector<rocblas_int> hptrL(size_ptrL, 1, size_ptrL, 1);
host_strided_batch_vector<rocblas_int> hindL(size_indL, 1, size_indL, 1);
host_strided_batch_vector<T> hvalL(size_valL, 1, size_valL, 1);
host_strided_batch_vector<rocblas_int> hptrU(size_ptrU, 1, size_ptrU, 1);
host_strided_batch_vector<rocblas_int> hindU(size_indU, 1, size_indU, 1);
host_strided_batch_vector<T> hvalU(size_valU, 1, size_valU, 1);
host_strided_batch_vector<rocblas_int> hptrUres(size_ptrUres, 1, size_ptrUres, 1);
host_strided_batch_vector<rocblas_int> hindUres(size_indUres, 1, size_indUres, 1);
host_strided_batch_vector<T> hvalUres(size_valUres, 1, size_valUres, 1);
host_strided_batch_vector<rocblas_int> hptrLres(size_ptrLres, 1, size_ptrLres, 1);
host_strided_batch_vector<rocblas_int> hindLres(size_indLres, 1, size_indLres, 1);
host_strided_batch_vector<T> hvalLres(size_valLres, 1, size_valLres, 1);
device_strided_batch_vector<rocblas_int> dptrT(size_ptrT, 1, size_ptrT, 1);
device_strided_batch_vector<rocblas_int> dindT(size_indT, 1, size_indT, 1);
device_strided_batch_vector<T> dvalT(size_valT, 1, size_valT, 1);
device_strided_batch_vector<rocblas_int> dptrL(size_ptrL, 1, size_ptrL, 1);
device_strided_batch_vector<rocblas_int> dindL(size_indL, 1, size_indL, 1);
device_strided_batch_vector<T> dvalL(size_valL, 1, size_valL, 1);
device_strided_batch_vector<rocblas_int> dptrU(size_ptrU, 1, size_ptrU, 1);
device_strided_batch_vector<rocblas_int> dindU(size_indU, 1, size_indU, 1);
device_strided_batch_vector<T> dvalU(size_valU, 1, size_valU, 1);
CHECK_HIP_ERROR(dptrT.memcheck());
CHECK_HIP_ERROR(dptrL.memcheck());
CHECK_HIP_ERROR(dptrU.memcheck());
if(size_indT)
CHECK_HIP_ERROR(dindT.memcheck());
if(size_valT)
CHECK_HIP_ERROR(dvalT.memcheck());
if(size_indL)
CHECK_HIP_ERROR(dindL.memcheck());
if(size_valL)
CHECK_HIP_ERROR(dvalL.memcheck());
if(size_valU)
CHECK_HIP_ERROR(dvalU.memcheck());
if(size_indU)
CHECK_HIP_ERROR(dindU.memcheck());
// check quick return
if(n == 0)
{
EXPECT_ROCBLAS_STATUS(rocsolver_csrrf_splitlu(handle, n, nnzT, dptrT.data(), dindT.data(),
dvalT.data(), dptrL.data(), dindL.data(),
dvalL.data(), dptrU.data(), dindU.data(),
dvalU.data()),
rocblas_status_success);
if(argus.timing)
rocsolver_bench_inform(inform_quick_return);
return;
}
// check computations
if(argus.unit_check || argus.norm_check)
csrrf_splitlu_getError<T>(handle, n, nnzT, dptrT, dindT, dvalT, nnzL, dptrL, dindL, dvalL,
nnzU, dptrU, dindU, dvalU, hptrT, hindT, hvalT, hptrL, hindL,
hvalL, hptrU, hindU, hvalU, hptrLres, hindLres, hvalLres,
hptrUres, hindUres, hvalUres, &max_error);
// collect performance data
if(argus.timing)
csrrf_splitlu_getPerfData<T>(handle, n, nnzT, dptrT, dindT, dvalT, nnzL, dptrL, dindL, dvalL,
nnzU, dptrU, dindU, dvalU, hptrT, hindT, hvalT, hptrL, hindL,
hvalL, hptrU, hindU, hvalU, &gpu_time_used, &cpu_time_used,
hot_calls, argus.profile, argus.profile_kernels, argus.perf);
// validate results for rocsolver-test
// using machine precision for tolerance
if(argus.unit_check)
ROCSOLVER_TEST_CHECK(T, max_error, 1);
// output results for rocsolver-bench
if(argus.timing)
{
if(!argus.perf)
{
rocsolver_bench_header("Arguments:");
rocsolver_bench_output("n", "nnzT");
rocsolver_bench_output(n, nnzT);
rocsolver_bench_header("Results:");
if(argus.norm_check)
{
rocsolver_bench_output("cpu_time_us", "gpu_time_us", "error");
rocsolver_bench_output(cpu_time_used, gpu_time_used, max_error);
}
else
{
rocsolver_bench_output("cpu_time_us", "gpu_time_us");
rocsolver_bench_output(cpu_time_used, gpu_time_used);
}
rocsolver_bench_endl();
}
else
{
if(argus.norm_check)
rocsolver_bench_output(gpu_time_used, max_error);
else
rocsolver_bench_output(gpu_time_used);
}
}
// ensure all arguments were consumed
argus.validate_consumed();
}
#define EXTERN_TESTING_CSRRF_SPLITLU(...) \
extern template void testing_csrrf_splitlu<__VA_ARGS__>(Arguments&);
INSTANTIATE(EXTERN_TESTING_CSRRF_SPLITLU, FOREACH_REAL_TYPE, APPLY_STAMP)
|