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 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
|
/*
-- MAGMA (version 2.9.0) --
Univ. of Tennessee, Knoxville
Univ. of California, Berkeley
Univ. of Colorado, Denver
@date January 2025
@author Mark Gates
Utilities for testing.
*/
#include <stdarg.h>
#include <string.h>
#include <assert.h>
#include <errno.h>
#ifdef _OPENMP
#include <omp.h>
#endif
#include "magma_v2.h"
#include "testings.h"
#include "../control/magma_threadsetting.h" // internal header
// --------------------
// global variable
#if defined(MAGMA_HAVE_CUDA)
const char* g_platform_str = "cuBLAS";
#elif defined(MAGMA_HAVE_OPENCL)
const char* g_platform_str = "clBLAS";
#elif defined(HAVE_MIC)
const char* g_platform_str = "Xeon Phi";
#elif defined(MAGMA_HAVE_HIP)
const char* g_platform_str = "HIPBLAS";
#else
#error "unknown platform"
#endif
// --------------------
// If condition is false, print error message and exit.
// Error message is formatted using printf, using any additional arguments.
extern "C"
void magma_assert( bool condition, const char* msg, ... )
{
if ( ! condition ) {
printf( "Assert failed: " );
va_list va;
va_start( va, msg );
vprintf( msg, va );
va_end( va );
printf( "\n" );
exit(1);
}
}
// --------------------
// If condition is false, print warning message; does not exit.
// Warning message is formatted using printf, using any additional arguments.
extern "C"
void magma_assert_warn( bool condition, const char* msg, ... )
{
if ( ! condition ) {
printf( "Assert failed: " );
va_list va;
va_start( va, msg );
vprintf( msg, va );
va_end( va );
printf( "\n" );
}
}
// --------------------
const char *usage_short =
"%% Usage: %s [options] [-h|--help]\n\n";
const char *usage =
"Options are:\n"
" -n m[,n[,k] Adds problem sizes. All of -n, -N, --range are now synonymous.\n"
" -N m[,n[,k] m, n, k can each be a single size or an inclusive range start:end:step.\n"
" --range m[,n[,k] If two ranges are given, the number of sizes is limited by the smaller range.\n"
" If only m,n are given, then k=n. If only m is given, then n=k=m.\n"
" Examples: -N 100 -N 100,200,300 -N 100,200:1000:100,300 -N 100:1000:100\n"
" Default test sizes are the range 1088 : 10304 : 1024, that is, 1K+64 : 10K+64 : 1K.\n"
" For batched, default sizes are 32 : 512 : 32.\n"
"\n"
" -c --[no]check Whether to check results. Some tests always check.\n"
" Also set with $MAGMA_TESTINGS_CHECK.\n"
" -c2 --check2 For getrf, check residual |Ax-b| instead of |PA-LU|.\n"
" -l --[no]lapack Whether to run lapack. Some tests always run lapack.\n"
" Also set with $MAGMA_RUN_LAPACK.\n"
" --[no]warmup Whether to warmup. Not yet implemented in most cases.\n"
" Also set with $MAGMA_WARMUP.\n"
" --dev x GPU device to use, default 0.\n"
" --align n Round up LDDA on GPU to multiple of align, default 32.\n"
" --verbose Verbose output.\n"
"\n"
"The following options apply to only some routines.\n"
" --batch x number of matrices for the batched routines, default 1000.\n"
" --kl x number of sub-diagonals in a band matrix, default 1.\n"
" --ku x number of super diagonals in a band matrix, default 1.\n"
" --cache x cache size to flush, in MiB, default 2 MiB * NUM_THREADS.\n"
" --nb x Block size, default set automatically.\n"
" --nrhs x Number of right hand sides, default 1.\n"
" --nqueue x Number of device queues, default 1.\n"
" --ngpu x Number of GPUs, default 1. Also set with $MAGMA_NUM_GPUS.\n"
" (Some testers take --ngpu -1 to run the multi-GPU code with 1 GPU.\n"
" --nsub x Number of submatrices, default 1.\n"
" --niter x Number of iterations to repeat each test, default 1.\n"
" --nthread x Number of CPU threads for some experimental codes, default 1.\n"
" (For most testers, set $OMP_NUM_THREADS or $MKL_NUM_THREADS\n"
" to control the number of CPU threads.)\n"
" --offset x Offset from beginning of matrix, default 0.\n"
" --itype [123] Generalized Hermitian-definite eigenproblem type, default 1.\n"
" --svd-work x SVD workspace size, one of:\n"
" query* queries LAPACK and MAGMA\n"
" doc is what LAPACK and MAGMA document as required\n"
" doc_old is what LAPACK <= 3.6 documents\n"
" min is minimum required, which may be smaller than doc\n"
" min_old is minimum required by LAPACK <= 3.6\n"
" min_fast is minimum to take fast path in gesvd\n"
" min-1 is (minimum - 1), to test error return\n"
" opt is optimal\n"
" opt_old is optimal as computed by LAPACK <= 3.6\n"
" opt_slow is optimal for slow path in gesvd\n"
" max is maximum that will be used\n"
"\n"
" --version x version of routine, e.g., during development, default 1.\n"
" --fraction [lower,]upper computes eigen/singular values and vectors indexed in range [lower*N + 1, upper*N]. Default lower=0, upper=1.\n"
" --irange [lower,]upper computes eigen/singular values and vectors indexed in range [lower, upper]. Default lower=1, upper=min(m,n).\n"
" --vrange lower,upper computes eigen/singular values and vectors in range [lower, upper].\n"
" --tolerance x accuracy tolerance, multiplied by machine epsilon, default 30.\n"
" --tol x same.\n"
" -L -U -F uplo = Lower*, Upper, or Full.\n"
" -[NTC][NTC] transA = NoTrans*, Trans, or ConjTrans (first letter) and\n"
" transB = NoTrans*, Trans, or ConjTrans (second letter).\n"
" -[TC] transA = Trans or ConjTrans. Default is NoTrans. Doesn't change transB.\n"
" -S[LR] side = Left*, Right.\n"
" -D[NU] diag = NonUnit*, Unit.\n"
" --jobu [nsoa] No*, Some, Overwrite, or All left singular vectors (U). gesdd uses this for jobz.\n"
" --jobv [nsoa] No*, Some, Overwrite, or All right singular vectors (V).\n"
" -J[NV] jobz = No* or Vectors; compute eigenvectors (symmetric).\n"
" -L[NV] jobvl = No* or Vectors; compute left eigenvectors (non-symmetric).\n"
" -R[NV] jobvr = No* or Vectors; compute right eigenvectors (non-symmetric).\n"
"\n"
" --matrix name name of test matrix type from magma_generate, default 'rand',\n"
" or 'rand_dominant' if SPD required (e.g., for posv).\n"
" --cond kA where applicable, condition number for test matrix, default sqrt( 1/eps ); see magma_generate_matrix.\n"
" --condD kD where applicable, condition number for scaling test matrix, default 1; see magma_generate_matrix.\n"
"\n"
" * default values\n";
// constructor fills in default values
magma_opts::magma_opts( magma_opts_t flag )
{
int nt = magma_get_lapack_numthreads();
// fill in default values
this->batchcount = 300;
this->device = 0;
this->cache = 2*1024*1024 * nt; // assume 2 MiB per core
this->align = 32;
this->nb = 0; // auto
this->nrhs = 1;
this->nqueue = 1;
this->ngpu = magma_num_gpus();
this->nsub = 1;
this->niter = 1;
this->nthread = 1;
this->offset = 0;
this->itype = 1;
this->version = 1;
this->verbose = 0;
this->kl = 1;
this->ku = 1;
this->fraction_lo = 0.;
this->fraction_up = 1.;
this->irange_lo = 0;
this->irange_up = 0;
this->vrange_lo = 0;
this->vrange_up = 0;
this->tolerance = 30.;
this->check = (getenv("MAGMA_TESTINGS_CHECK") != NULL);
this->magma = true;
this->lapack = (getenv("MAGMA_RUN_LAPACK") != NULL);
this->warmup = (getenv("MAGMA_WARMUP") != NULL);
this->uplo = MagmaLower; // potrf, etc.
this->transA = MagmaNoTrans; // gemm, etc.
this->transB = MagmaNoTrans; // gemm
this->side = MagmaLeft; // trsm, etc.
this->diag = MagmaNonUnit; // trsm, etc.
this->jobz = MagmaNoVec; // heev: no eigen vectors
this->jobvr = MagmaNoVec; // geev: no right eigen vectors
this->jobvl = MagmaNoVec; // geev: no left eigen vectors
this->matrix = "rand";
this->cond = 0; // zero means cond = sqrt( 1/eps ), which varies by precision
this->condD = 1;
this->iseed[0] = 0;
this->iseed[1] = 0;
this->iseed[2] = 0;
this->iseed[3] = 1;
if ( flag == MagmaOptsBatched ) {
// 32, 64, ..., 512
this->default_nstart = 32;
this->default_nstep = 32;
this->default_nend = 512;
}
else {
// 1K + 64, 2K + 64, ..., 10K + 64
this->default_nstart = 1024 + 64;
this->default_nstep = 1024;
this->default_nend = 10304;
}
}
// Given pointer to a string, scans the string for a comma,
// and advances the string to after the comma.
// Returns true if comma found, otherwise false.
bool scan_comma( char** handle )
{
char* ptr = *handle;
// scan past whitespace
while( *ptr == ' ' ) {
ptr += 1;
}
// scan comma
if ( *ptr == ',' ) {
*handle = ptr + 1;
return true;
}
else {
return false;
}
}
// Given pointer to a string, scans the string for a range "%d:%d:%d" or a number "%d".
// If range, then start, end, step are set accordingly.
// If number, then start = end and step = 0.
// Advances the string to after the range or number.
// Ensures start, end >= 0.
// If step >= 0, ensures start <= end;
// if step < 0, ensures start >= end.
// Returns true if found valid range or number, otherwise false.
bool scan_range( char** handle, int* start, int* end, int* step )
{
int bytes1, bytes3, cnt;
char* ptr = *handle;
cnt = sscanf( ptr, "%d%n:%d:%d%n", start, &bytes1, end, step, &bytes3 );
if ( cnt == 3 ) {
*handle += bytes3;
return (*start >= 0 && *end >= 0 && (*step >= 0 ? *start <= *end : *start >= *end));
}
else if ( cnt == 1 ) {
*handle += bytes1;
*end = *start;
*step = 0;
return (*start >= 0);
}
else {
return false;
}
}
// parse values from command line
void magma_opts::parse_opts( int argc, char** argv )
{
printf( usage_short, argv[0] );
magma_int_t ndevices;
magma_device_t devices[ MagmaMaxGPUs ];
magma_getdevices( devices, MagmaMaxGPUs, &ndevices );
this->ntest = 0;
for( int i = 1; i < argc; ++i ) {
// ----- problem size
// -n or -N or --range fill in single size or range of sizes, and update ntest
if ( (strcmp("-n", argv[i]) == 0 ||
strcmp("-N", argv[i]) == 0 ||
strcmp("--range", argv[i]) == 0) && i+1 < argc )
{
i++;
int m_start, m_end, m_step;
int n_start, n_end, n_step;
int k_start, k_end, k_step;
char* ptr = argv[i];
bool valid = scan_range( &ptr, &m_start, &m_end, &m_step );
if ( valid ) {
if ( *ptr == '\0' ) {
n_start = k_start = m_start;
n_end = k_end = m_end;
n_step = k_step = m_step;
}
else {
valid = scan_comma( &ptr ) && scan_range( &ptr, &n_start, &n_end, &n_step );
if ( valid ) {
if ( *ptr == '\0' ) {
k_start = n_start;
k_end = n_end;
k_step = n_step;
}
else {
valid = scan_comma( &ptr ) && scan_range( &ptr, &k_start, &k_end, &k_step );
valid = (valid && *ptr == '\0');
}
}
}
}
magma_assert( valid, "error: '%s %s' is not valid, expected (m|m_start:m_end:m_step)[,(n|n_start:n_end:n_step)[,(k|k_start:k_end:k_step)]]\n",
argv[i-1], argv[i] );
// if all zero steps, just give start point
if ( m_step == 0 && n_step == 0 && k_step == 0 ) {
magma_assert( this->ntest < MAX_NTEST, "error: %s %s exceeded maximum number of tests (%d).\n",
argv[i-1], argv[i], MAX_NTEST );
this->msize[ this->ntest ] = m_start;
this->nsize[ this->ntest ] = n_start;
this->ksize[ this->ntest ] = k_start;
this->ntest++;
}
else {
for( int m=m_start, n=n_start, k=k_start;
(m_step >= 0 ? m <= m_end : m >= m_end) &&
(n_step >= 0 ? n <= n_end : n >= n_end) &&
(k_step >= 0 ? k <= k_end : k >= k_end);
m += m_step, n += n_step, k += k_step )
{
magma_assert( this->ntest < MAX_NTEST, "error: %s %s exceeded maximum number of tests (%d).\n",
argv[i-1], argv[i], MAX_NTEST );
this->msize[ this->ntest ] = m;
this->nsize[ this->ntest ] = n;
this->ksize[ this->ntest ] = k;
this->ntest++;
}
}
}
// ----- scalar arguments
else if ( strcmp("--dev", argv[i]) == 0 && i+1 < argc ) {
this->device = atoi( argv[++i] );
magma_assert( this->device >= 0 && this->device < ndevices,
"error: --dev %s is invalid; ensure dev in [0,%d].\n", argv[i], ndevices-1 );
}
else if ( strcmp("--align", argv[i]) == 0 && i+1 < argc ) {
this->align = atoi( argv[++i] );
magma_assert( this->align >= 1 && this->align <= 4096,
"error: --align %s is invalid; ensure align in [1,4096].\n", argv[i] );
}
else if ( strcmp("--cache", argv[i]) == 0 && i+1 < argc ) {
double tmp = atof( argv[++i] );
magma_assert( tmp >= 1 && tmp <= 1024,
"error: --cache %s is invalid; ensure cache in [1,1024].\n", argv[i] );
this->cache = magma_int_t( tmp * 1024 * 1024 );
}
else if ( strcmp("--nrhs", argv[i]) == 0 && i+1 < argc ) {
this->nrhs = atoi( argv[++i] );
magma_assert( this->nrhs >= 0,
"error: --nrhs %s is invalid; ensure nrhs >= 0.\n", argv[i] );
}
else if ( strcmp("--nb", argv[i]) == 0 && i+1 < argc ) {
this->nb = atoi( argv[++i] );
magma_assert( this->nb > 0,
"error: --nb %s is invalid; ensure nb > 0.\n", argv[i] );
}
else if ( strcmp("--ngpu", argv[i]) == 0 && i+1 < argc ) {
this->ngpu = atoi( argv[++i] );
magma_assert( this->ngpu <= MagmaMaxGPUs,
"error: --ngpu %s exceeds MagmaMaxGPUs, %d.\n", argv[i], MagmaMaxGPUs );
magma_assert( this->ngpu <= ndevices,
"error: --ngpu %s exceeds number of CUDA or OpenCL devices, %d.\n", argv[i], ndevices );
// allow ngpu == -1, which forces multi-GPU code with 1 GPU. see testing_zhegvd, etc.
magma_assert( this->ngpu > 0 || this->ngpu == -1,
"error: --ngpu %s is invalid; ensure ngpu != 0.\n", argv[i] );
// save in environment variable, so magma_num_gpus() picks it up
char env_num_gpus[20]; // space for "MAGMA_NUM_GPUS=", 4 digits, and nil
#if defined( _WIN32 ) || defined( _WIN64 )
snprintf( env_num_gpus, sizeof(env_num_gpus), "MAGMA_NUM_GPUS=%lld", (long long) abs(this->ngpu) );
putenv( env_num_gpus );
#else
snprintf( env_num_gpus, sizeof(env_num_gpus), "%lld", (long long) abs(this->ngpu) );
setenv( "MAGMA_NUM_GPUS", env_num_gpus, true );
#endif
}
else if ( strcmp("--nsub", argv[i]) == 0 && i+1 < argc ) {
this->nsub = atoi( argv[++i] );
magma_assert( this->nsub > 0,
"error: --nsub %s is invalid; ensure nsub > 0.\n", argv[i] );
}
else if ( strcmp("--nqueue", argv[i]) == 0 && i+1 < argc ) {
this->nqueue = atoi( argv[++i] );
magma_assert( this->nqueue > 0,
"error: --nqueue %s is invalid; ensure nqueue > 0.\n", argv[i] );
}
else if ( strcmp("--niter", argv[i]) == 0 && i+1 < argc ) {
this->niter = atoi( argv[++i] );
magma_assert( this->niter > 0,
"error: --niter %s is invalid; ensure niter > 0.\n", argv[i] );
}
else if ( strcmp("--nthread", argv[i]) == 0 && i+1 < argc ) {
this->nthread = atoi( argv[++i] );
magma_assert( this->nthread > 0,
"error: --nthread %s is invalid; ensure nthread > 0.\n", argv[i] );
}
else if ( strcmp("--offset", argv[i]) == 0 && i+1 < argc ) {
this->offset = atoi( argv[++i] );
magma_assert( this->offset >= 0,
"error: --offset %s is invalid; ensure offset >= 0.\n", argv[i] );
}
else if ( strcmp("--itype", argv[i]) == 0 && i+1 < argc ) {
this->itype = atoi( argv[++i] );
magma_assert( this->itype >= 1 && this->itype <= 3,
"error: --itype %s is invalid; ensure itype in [1,2,3].\n", argv[i] );
}
else if ( strcmp("--version", argv[i]) == 0 && i+1 < argc ) {
this->version = atoi( argv[++i] );
magma_assert( this->version >= 1,
"error: --version %s is invalid; ensure version > 0.\n", argv[i] );
}
else if ( strcmp("--fraction", argv[i]) == 0 && i+1 < argc ) {
int cnt = sscanf( argv[++i], "%lf,%lf", &this->fraction_lo, &this->fraction_up );
printf( "fraction cnt %d, lo %.2e, up %.2e\n", cnt, this->fraction_lo, this->fraction_up );
if (cnt == 1) {
this->fraction_up = this->fraction_lo;
this->fraction_lo = 0;
}
magma_assert( (cnt == 1 || cnt == 2) &&
this->fraction_lo >= 0 &&
this->fraction_lo <= this->fraction_up &&
this->fraction_up <= 1,
"error: --fraction %s is invalid; ensure 0 <= lower <= upper <= 1.\n", argv[i] );
}
else if ( strcmp("--irange", argv[i]) == 0 && i+1 < argc ) {
int lo, hi;
int cnt = sscanf( argv[++i], "%d,%d", &lo, &hi );
this->irange_lo = lo;
this->irange_up = hi;
if (cnt == 1) {
this->irange_up = this->irange_lo;
this->irange_lo = 1;
}
magma_assert( (cnt == 1 || cnt == 2) &&
this->irange_lo >= 1 &&
this->irange_lo <= this->irange_up,
"error: --irange %s is invalid; ensure 1 <= lower <= upper.\n", argv[i] );
}
else if ( strcmp("--vrange", argv[i]) == 0 && i+1 < argc ) {
int cnt = sscanf( argv[++i], "%lf,%lf", &this->vrange_lo, &this->vrange_up );
magma_assert( cnt == 2 &&
this->vrange_lo <= this->vrange_up,
"error: --vrange %s is invalid; ensure lower <= upper.\n", argv[i] );
}
else if ( (strcmp("--tol", argv[i]) == 0 ||
strcmp("--tolerance", argv[i]) == 0) && i+1 < argc ) {
this->tolerance = atof( argv[++i] );
magma_assert( this->tolerance >= 0 && this->tolerance <= 1000,
"error: --tolerance %s is invalid; ensure tolerance in [0,1000].\n", argv[i] );
}
else if ( strcmp("--batch", argv[i]) == 0 && i+1 < argc ) {
this->batchcount = atoi( argv[++i] );
magma_assert( this->batchcount > 0,
"error: --batch %s is invalid; ensure batch > 0.\n", argv[i] );
}
else if ( strcmp("--kl", argv[i]) == 0 && i+1 < argc ) {
this->kl = atoi( argv[++i] );
magma_assert( this->kl >= 0,
"error: --kl %s is invalid; ensure kl >= 0.\n", argv[i] );
}
else if ( strcmp("--ku", argv[i]) == 0 && i+1 < argc ) {
this->ku = atoi( argv[++i] );
magma_assert( this->ku >= 0,
"error: --ku %s is invalid; ensure ku >= 0.\n", argv[i] );
}
// ----- boolean arguments
// check results
else if ( strcmp("-c", argv[i]) == 0 ||
strcmp("--check", argv[i]) == 0 ) { this->check = 1; }
else if ( strcmp("-c2", argv[i]) == 0 ||
strcmp("--check2", argv[i]) == 0 ) { this->check = 2; }
else if ( strcmp("--nocheck", argv[i]) == 0 ) { this->check = 0; }
else if ( strcmp("-l", argv[i]) == 0 ||
strcmp("--lapack", argv[i]) == 0 ) { this->lapack = true; }
else if ( strcmp("--nolapack", argv[i]) == 0 ) { this->lapack = false; }
else if ( strcmp("--magma", argv[i]) == 0 ) { this->magma = true; }
else if ( strcmp("--nomagma", argv[i]) == 0 ) { this->magma = false; }
else if ( strcmp("--warmup", argv[i]) == 0 ) { this->warmup = true; }
else if ( strcmp("--nowarmup", argv[i]) == 0 ) { this->warmup = false; }
//else if ( strcmp("--all", argv[i]) == 0 ) { this->all = true; }
//else if ( strcmp("--notall", argv[i]) == 0 ) { this->all = false; }
else if ( strcmp("-v", argv[i]) == 0 ||
strcmp("--verbose", argv[i]) == 0 ) { this->verbose += 1; }
// ----- lapack options
else if ( strcmp("-L", argv[i]) == 0 ) { this->uplo = MagmaLower; }
else if ( strcmp("-U", argv[i]) == 0 ) { this->uplo = MagmaUpper; }
else if ( strcmp("-F", argv[i]) == 0 ) { this->uplo = MagmaFull; }
else if ( strcmp("-NN", argv[i]) == 0 ) { this->transA = MagmaNoTrans; this->transB = MagmaNoTrans; }
else if ( strcmp("-NT", argv[i]) == 0 ) { this->transA = MagmaNoTrans; this->transB = MagmaTrans; }
else if ( strcmp("-NC", argv[i]) == 0 ) { this->transA = MagmaNoTrans; this->transB = MagmaConjTrans; }
else if ( strcmp("-TN", argv[i]) == 0 ) { this->transA = MagmaTrans; this->transB = MagmaNoTrans; }
else if ( strcmp("-TT", argv[i]) == 0 ) { this->transA = MagmaTrans; this->transB = MagmaTrans; }
else if ( strcmp("-TC", argv[i]) == 0 ) { this->transA = MagmaTrans; this->transB = MagmaConjTrans; }
else if ( strcmp("-CN", argv[i]) == 0 ) { this->transA = MagmaConjTrans; this->transB = MagmaNoTrans; }
else if ( strcmp("-CT", argv[i]) == 0 ) { this->transA = MagmaConjTrans; this->transB = MagmaTrans; }
else if ( strcmp("-CC", argv[i]) == 0 ) { this->transA = MagmaConjTrans; this->transB = MagmaConjTrans; }
else if ( strcmp("-T", argv[i]) == 0 ) { this->transA = MagmaTrans; }
else if ( strcmp("-C", argv[i]) == 0 ) { this->transA = MagmaConjTrans; }
else if ( strcmp("-SL", argv[i]) == 0 ) { this->side = MagmaLeft; }
else if ( strcmp("-SR", argv[i]) == 0 ) { this->side = MagmaRight; }
else if ( strcmp("-DN", argv[i]) == 0 ) { this->diag = MagmaNonUnit; }
else if ( strcmp("-DU", argv[i]) == 0 ) { this->diag = MagmaUnit; }
else if ( strcmp("-JN", argv[i]) == 0 ) { this->jobz = MagmaNoVec; }
else if ( strcmp("-JV", argv[i]) == 0 ) { this->jobz = MagmaVec; }
else if ( strcmp("-LN", argv[i]) == 0 ) { this->jobvl = MagmaNoVec; }
else if ( strcmp("-LV", argv[i]) == 0 ) { this->jobvl = MagmaVec; }
else if ( strcmp("-RN", argv[i]) == 0 ) { this->jobvr = MagmaNoVec; }
else if ( strcmp("-RV", argv[i]) == 0 ) { this->jobvr = MagmaVec; }
// ----- vectors of options
else if ( strcmp("--svd-work", argv[i]) == 0 && i+1 < argc ) {
i += 1;
char *token;
char *arg = strdup( argv[i] );
for (token = strtok( arg, ", " );
token != NULL;
token = strtok( NULL, ", " ))
{
if ( *token == '\0' ) { /* ignore empty tokens */ }
else if ( strcmp( token, "all" ) == 0 ) { this->svd_work.push_back( MagmaSVD_all ); }
else if ( strcmp( token, "query" ) == 0 ) { this->svd_work.push_back( MagmaSVD_query ); }
else if ( strcmp( token, "doc" ) == 0 ) { this->svd_work.push_back( MagmaSVD_doc ); }
else if ( strcmp( token, "doc_old" ) == 0 ) { this->svd_work.push_back( MagmaSVD_doc_old ); }
else if ( strcmp( token, "min" ) == 0 ) { this->svd_work.push_back( MagmaSVD_min ); }
else if ( strcmp( token, "min-1" ) == 0 ) { this->svd_work.push_back( MagmaSVD_min_1 ); }
else if ( strcmp( token, "min_old" ) == 0 ) { this->svd_work.push_back( MagmaSVD_min_old ); }
else if ( strcmp( token, "min_old-1" ) == 0 ) { this->svd_work.push_back( MagmaSVD_min_old_1 ); }
else if ( strcmp( token, "min_fast" ) == 0 ) { this->svd_work.push_back( MagmaSVD_min_fast ); }
else if ( strcmp( token, "min_fast-1") == 0 ) { this->svd_work.push_back( MagmaSVD_min_fast_1 ); }
else if ( strcmp( token, "opt" ) == 0 ) { this->svd_work.push_back( MagmaSVD_opt ); }
else if ( strcmp( token, "opt_old" ) == 0 ) { this->svd_work.push_back( MagmaSVD_opt_old ); }
else if ( strcmp( token, "opt_slow" ) == 0 ) { this->svd_work.push_back( MagmaSVD_opt_slow ); }
else if ( strcmp( token, "max" ) == 0 ) { this->svd_work.push_back( MagmaSVD_max ); }
else {
magma_assert( false, "error: --svd-work '%s' is invalid\n", argv[i] );
}
}
free( arg );
}
else if ( strcmp("--jobu", argv[i]) == 0 && i+1 < argc ) {
i += 1;
const char* arg = argv[i];
while( *arg != '\0' ) {
this->jobu.push_back( magma_vec_const( *arg ));
++arg;
if ( *arg == ',' )
++arg;
}
}
else if ( (strcmp("--jobv", argv[i]) == 0 ||
strcmp("--jobvt", argv[i]) == 0) && i+1 < argc ) {
i += 1;
const char* arg = argv[i];
while( *arg != '\0' ) {
this->jobv.push_back( magma_vec_const( *arg ));
++arg;
if ( *arg == ',' )
++arg;
}
}
// ----- test matrix
else if ( strcmp("--matrix", argv[i]) == 0 && i+1 < argc) {
i += 1;
this->matrix = argv[i];
}
else if ( strcmp("--cond", argv[i]) == 0 && i+1 < argc) {
i += 1;
this->cond = atof( argv[i] );
magma_assert( this->cond >= 1,
"error: --cond %s is invalid; ensure cond >= 1.\n", argv[i] );
}
else if ( strcmp("--condD", argv[i]) == 0 && i+1 < argc) {
i += 1;
this->condD = atof( argv[i] );
magma_assert( this->condD >= 1,
"error: --condD %s is invalid; ensure condD >= 1.\n", argv[i] );
}
// ----- usage
else if ( strcmp("-h", argv[i]) == 0 ||
strcmp("--help", argv[i]) == 0 ) {
fprintf( stderr, usage, argv[0], MAX_NTEST );
exit(0);
}
else {
fprintf( stderr, "error: unrecognized option %s\n", argv[i] );
exit(1);
}
}
// default values
if ( this->svd_work.size() == 0 ) {
this->svd_work.push_back( MagmaSVD_query );
}
if ( this->jobu.size() == 0 ) {
this->jobu.push_back( MagmaNoVec );
}
if ( this->jobv.size() == 0 ) {
this->jobv.push_back( MagmaNoVec );
}
// if -N or --range not given, use default range
if ( this->ntest == 0 ) {
magma_int_t n2 = this->default_nstart; //1024 + 64;
while( n2 <= this->default_nend && this->ntest < MAX_NTEST ) {
this->msize[ this->ntest ] = n2;
this->nsize[ this->ntest ] = n2;
this->ksize[ this->ntest ] = n2;
n2 += this->default_nstep; //1024;
this->ntest++;
}
}
assert( this->ntest <= MAX_NTEST );
#if defined(MAGMA_HAVE_CUDA) || defined(MAGMA_HAVE_HIP)
magma_setdevice( this->device );
#endif
// create queues on this device
// 2 queues + 1 extra NULL entry to catch errors
magma_queue_create( devices[ this->device ], &this->queues2[ 0 ] );
magma_queue_create( devices[ this->device ], &this->queues2[ 1 ] );
this->queues2[ 2 ] = NULL;
this->queue = this->queues2[ 0 ];
#if defined(MAGMA_HAVE_HIP)
// handle for directly calling hipblas
this->handle = magma_queue_get_hipblas_handle( this->queue );
#elif defined(MAGMA_HAVE_CUDA)
// handle for directly calling cublas
this->handle = magma_queue_get_cublas_handle( this->queue );
#else
#error "unknown platform"
#endif
}
// end parse_opts
// -----------------------------------------------------------------------------
void magma_opts::get_range(
magma_int_t n, magma_range_t* range,
double* vl, double* vu,
magma_int_t* il, magma_int_t* iu )
{
*range = MagmaRangeAll;
*il = -1;
*iu = -1;
*vl = MAGMA_D_NAN;
*vu = MAGMA_D_NAN;
if (this->fraction_lo != 0 || this->fraction_up != 1) {
*range = MagmaRangeI;
*il = this->fraction_lo * n;
*iu = this->fraction_up * n;
printf( "fraction (%.2f, %.2f) => irange (%lld, %lld)\n",
this->fraction_lo, this->fraction_up,
(long long) *il, (long long) *iu );
}
else if (this->irange_lo != 0 || this->irange_up != 0) {
*range = MagmaRangeI;
*il = min( this->irange_lo, n );
*iu = min( this->irange_up, n );
printf( "irange (%lld, %lld)\n", (long long) *il, (long long) *iu );
}
else if (this->vrange_lo != 0 || this->vrange_up != 0) {
*range = MagmaRangeV;
*vl = this->vrange_lo;
*vu = this->vrange_up;
printf( "vrange (%.2e, %.2e)\n", *vl, *vu );
}
}
// -----------------------------------------------------------------------------
void magma_opts::get_range(
magma_int_t n, magma_range_t* range,
float* vl, float* vu,
magma_int_t* il, magma_int_t* iu )
{
double dvl, dvu;
this->get_range( n, range, &dvl, &dvu, il, iu );
*vl = float(dvl);
*vu = float(dvu);
}
// -----------------------------------------------------------------------------
void magma_opts::cleanup()
{
this->queue = NULL;
magma_queue_destroy( this->queues2[0] );
magma_queue_destroy( this->queues2[1] );
this->queues2[0] = NULL;
this->queues2[1] = NULL;
#if defined(MAGMA_HAVE_CUDA) || defined(MAGMA_HAVE_HIP)
this->handle = NULL;
#endif
}
// ------------------------------------------------------------
// Initialize PAPI events set to measure flops.
// Note flops counters are inaccurate on Sandy Bridge, and don't exist on Haswell.
// See http://icl.cs.utk.edu/projects/papi/wiki/PAPITopics:SandyFlops
#ifdef HAVE_PAPI
#include <papi.h>
#include <string.h> // memset
#endif // HAVE_PAPI
int gPAPI_flops_set = -1; // i.e., PAPI_NULL
extern "C"
void flops_init()
{
#ifdef HAVE_PAPI
int err = PAPI_library_init( PAPI_VER_CURRENT );
if ( err != PAPI_VER_CURRENT ) {
fprintf( stderr, "Error: PAPI couldn't initialize: %s (%d)\n",
PAPI_strerror(err), err );
}
// read flops
err = PAPI_create_eventset( &gPAPI_flops_set );
if ( err != PAPI_OK ) {
fprintf( stderr, "Error: PAPI_create_eventset failed\n" );
}
err = PAPI_assign_eventset_component( gPAPI_flops_set, 0 );
if ( err != PAPI_OK ) {
fprintf( stderr, "Error: PAPI_assign_eventset_component failed: %s (%d)\n",
PAPI_strerror(err), err );
}
PAPI_option_t opt;
memset( &opt, 0, sizeof(PAPI_option_t) );
opt.inherit.inherit = PAPI_INHERIT_ALL;
opt.inherit.eventset = gPAPI_flops_set;
err = PAPI_set_opt( PAPI_INHERIT, &opt );
if ( err != PAPI_OK ) {
fprintf( stderr, "Error: PAPI_set_opt failed: %s (%d)\n",
PAPI_strerror(err), err );
}
err = PAPI_add_event( gPAPI_flops_set, PAPI_FP_OPS );
if ( err != PAPI_OK ) {
fprintf( stderr, "Error: PAPI_add_event failed: %s (%d)\n",
PAPI_strerror(err), err );
}
err = PAPI_start( gPAPI_flops_set );
if ( err != PAPI_OK ) {
fprintf( stderr, "Error: PAPI_start failed: %s (%d)\n",
PAPI_strerror(err), err );
}
#endif // HAVE_PAPI
}
// -----------------------------------------------------------------------------
// Flushes cache by allocating buffer of 2*cache size, and writing it in parallel.
void magma_flush_cache( size_t cache_size )
{
unsigned char* buf = (unsigned char*) malloc( 2 * cache_size );
int nthread = 1;
#pragma omp parallel
#pragma omp master
{
#ifdef _OPENMP
nthread = omp_get_num_threads();
#endif
}
size_t per_core = 2 * cache_size / nthread;
#pragma omp parallel
{
int tid = 0;
#ifdef _OPENMP
tid = omp_get_thread_num();
#endif
for (size_t i = tid * per_core; i < (tid + 1) * per_core; ++i) {
buf[i] = i % 256;
}
}
free( buf );
}
|