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
|
/* ************************************************************************
*
* Copyright (C) 2018-2025 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 cop-
* ies 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 IM-
* PLIED, 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 CONNE-
* CTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* ************************************************************************ */
#pragma once
#include "../../library/src/include/logging.hpp"
#include "../../library/src/include/utility.hpp"
#include "rocblas.h"
#include "rocblas_vector.hpp"
#include <cstdio>
#include <iomanip>
#include <iostream>
#include <string>
#include <type_traits>
#include <vector>
/*!\file
* \brief provide common utilities
*/
// We use rocblas_cout and rocblas_cerr instead of std::cout, std::cerr, stdout and stderr,
// for thread-safe IO.
//
// All stdio and std::ostream functions related to stdout and stderr are poisoned, as are
// functions which can create buffer overflows, or which are inherently thread-unsafe.
//
// This must come after the header #includes above, to avoid poisoning system headers.
//
// This is only enabled for rocblas-test and rocblas-bench.
//
// If you are here because of a poisoned identifier error, here is the rationale for each
// included identifier:
//
// cout, stdout: rocblas_cout should be used instead, for thread-safe and atomic line buffering
// cerr, stderr: rocblas_cerr should be used instead, for thread-safe and atomic line buffering
// clog: C++ stream which should not be used
// gets: Always unsafe; buffer-overflows; removed from later versions of the language; use fgets
// puts, putchar, fputs, printf, fprintf, vprintf, vfprintf: Use rocblas_cout or rocblas_cerr
// sprintf, vsprintf: Possible buffer overflows; us snprintf or vsnprintf instead
// strerror: Thread-unsafe; use snprintf / dprintf with %m or strerror_* alternatives
// strsignal: Thread-unsafe; use sys_siglist[signal] instead
// strtok: Thread-unsafe; use strtok_r
// gmtime, ctime, asctime, localtime: Thread-unsafe
// tmpnam: Thread-unsafe; use mkstemp or related functions instead
// putenv: Use setenv instead
// clearenv, fcloseall, ecvt, fcvt: Miscellaneous thread-unsafe functions
// sleep: Might interact with signals by using alarm(); use nanosleep() instead
// abort: Does not abort as cleanly as rocblas_abort, and can be caught by a signal handler
#if defined(GOOGLE_TEST) || defined(ROCBLAS_BENCH)
#undef stdout
#undef stderr
#pragma GCC poison cout cerr clog stdout stderr gets puts putchar fputs fprintf printf sprintf \
vfprintf vprintf vsprintf perror strerror strtok gmtime ctime asctime localtime tmpnam putenv \
clearenv fcloseall ecvt fcvt sleep abort strsignal
#else
// Suppress warnings about hipMalloc(), hipFree() except in rocblas-test and rocblas-bench
#undef hipMalloc
#undef hipFree
#endif
// For GTEST_SKIP() we search for these sub-strings in listener to determine skip category
#define LIMITED_RAM_STRING "skip: RAM"
#define LIMITED_VRAM_STRING "skip: VRAM"
#define TOO_FEW_DEVICES_PRESENT_STRING "skip: device_count"
#define HMM_NOT_SUPPORTED_STRING "skip: HMM"
#define NOOP (void)0
// general global initializations
void rocblas_client_init();
void rocblas_client_shutdown();
/*!
* Initialize rocBLAS for the requested number of HIP devices
* and report the time taken to complete the initialization.
* This is to avoid costly startup time at the first call on
* that device. Internal use for benchmark & testing.
* Initializes devices indexed from 0 to parallel_devices-1.
* If parallel_devices is 1, hipSetDevice should be called
* before calling this function.
*/
void rocblas_parallel_initialize(int parallel_devices);
extern thread_local std::unique_ptr<std::function<void(rocblas_handle)>> t_set_stream_callback;
/* ============================================================================================ */
/*! \brief local handle which is automatically created and destroyed */
class rocblas_local_handle
{
rocblas_handle m_handle{nullptr};
void* m_memory{nullptr};
hipStream_t m_graph_stream{nullptr};
hipStream_t m_old_stream{nullptr};
void rocblas_stream_begin_capture();
void rocblas_stream_end_capture();
public:
rocblas_local_handle();
explicit rocblas_local_handle(const Arguments& arg);
~rocblas_local_handle();
rocblas_local_handle(const rocblas_local_handle&) = delete;
rocblas_local_handle(rocblas_local_handle&&) = delete;
rocblas_local_handle& operator=(const rocblas_local_handle&) = delete;
rocblas_local_handle& operator=(rocblas_local_handle&&) = delete;
// Allow rocblas_local_handle to be used anywhere rocblas_handle is expected
operator rocblas_handle&()
{
return m_handle;
}
operator const rocblas_handle&() const
{
return m_handle;
}
void pre_test(const Arguments& arg)
{
#if HIP_VERSION >= 50500000
arg.graph_test ? rocblas_stream_begin_capture() : NOOP;
#endif
}
void post_test(const Arguments& arg)
{
#if HIP_VERSION >= 50500000
arg.graph_test ? rocblas_stream_end_capture() : NOOP;
#endif
}
};
/* ============================================================================================ */
/* device query and print out their ID and name */
rocblas_int query_device_property();
/* set current device to device_id */
void set_device(rocblas_int device_id);
/* ============================================================================================ */
/* timing: HIP only provides very limited timers function clock() and not general;
rocblas sync CPU and device and use more accurate CPU timer*/
/*! \brief CPU Timer(in microsecond): synchronize with the default device and return wall time */
double get_time_us_sync_device();
/*! \brief CPU Timer(in microsecond): synchronize with given queue/stream and return wall time */
double get_time_us_sync(hipStream_t stream);
/*! \brief CPU Timer(in microsecond): no GPU synchronization and return wall time */
double get_time_us_no_sync();
/* ============================================================================================ */
// Return path of this executable
std::string rocblas_exepath();
/* ============================================================================================ */
// Temp directory rooted random path
std::string rocblas_tempname();
/* ============================================================================================ */
/* Compute strided batched matrix allocation size allowing for strides smaller than full matrix */
size_t strided_batched_matrix_size(
int rows, int cols, int lda, rocblas_stride stride, int batch_count);
/* ============================================================================================ */
/*! \brief Debugging purpose, print out CPU and GPU result matrix, not valid in complex number */
template <typename T>
inline void rocblas_print_matrix(
std::vector<T> CPU_result, std::vector<T> GPU_result, size_t m, size_t n, size_t lda)
{
for(size_t i = 0; i < m; i++)
for(size_t j = 0; j < n; j++)
{
rocblas_cout << "matrix col " << i << ", row " << j
<< ", CPU result=" << CPU_result[j + i * lda]
<< ", GPU result=" << GPU_result[j + i * lda] << "\n";
}
}
template <typename T>
void rocblas_print_matrix(const char* name, T* A, size_t m, size_t n, size_t lda)
{
rocblas_cout << "---------- " << name << " ----------\n";
for(size_t i = 0; i < m; i++)
{
for(size_t j = 0; j < n; j++)
rocblas_cout << std::setprecision(0) << std::setw(5) << A[i + j * lda] << " ";
rocblas_cout << std::endl;
}
}
/* ============================================================================= */
/*! \brief For testing purposes, to convert a regular matrix to a banded matrix.
* This routine is for host vector */
template <typename T>
inline void regular_to_banded(
bool upper, const T* A, size_t lda, T* AB, size_t ldab, rocblas_int n, rocblas_int k)
{
// convert regular A matrix to banded AB matrix
for(int j = 0; j < n; j++)
{
rocblas_int min1 = upper ? std::max(0, j - k) : j;
rocblas_int max1 = upper ? j : std::min(n - 1, j + k);
rocblas_int m = upper ? k - j : -j;
// Move bands of A into new banded AB format.
for(int i = min1; i <= max1; i++)
AB[j * ldab + (m + i)] = A[j * lda + i];
min1 = upper ? k + 1 : std::min(k + 1, n - j);
max1 = ldab - 1;
// fill in bottom with random data to ensure we aren't using it.
// for !upper, fill in bottom right triangle as well.
for(int i = min1; i <= max1; i++)
rocblas_init<T>(AB + j * ldab + i, 1, 1, 1);
// for upper, fill in top left triangle with random data to ensure
// we aren't using it.
if(upper)
{
for(int i = 0; i < m; i++)
rocblas_init<T>(AB + j * ldab + i, 1, 1, 1);
}
}
}
/* ============================================================================= */
/*! \brief For testing purposes, to convert a regular matrix to a banded matrix.
* This routine is for host batched and strided batched vectors */
template <typename T>
inline void regular_to_banded(bool upper, const T& h_A, T& h_AB, rocblas_int k)
{
size_t lda = h_A.lda();
size_t ldab = h_AB.lda();
rocblas_int n = h_AB.n();
#ifdef _OPENMP
#pragma omp parallel for
#endif
for(rocblas_int batch_index = 0; batch_index < h_A.batch_count(); ++batch_index)
{
auto* A = h_A[batch_index];
auto* AB = h_AB[batch_index];
// convert regular A matrix to banded AB matrix
for(int j = 0; j < n; j++)
{
rocblas_int min1 = upper ? std::max(0, j - k) : j;
rocblas_int max1 = upper ? j : std::min(n - 1, j + k);
rocblas_int m = upper ? k - j : -j;
// Move bands of A into new banded AB format.
for(int i = min1; i <= max1; i++)
AB[j * ldab + (m + i)] = A[j * lda + i];
min1 = upper ? k + 1 : std::min(k + 1, n - j);
max1 = ldab - 1;
// fill in bottom with random data to ensure we aren't using it.
// for !upper, fill in bottom right triangle as well.
for(int i = min1; i <= max1; i++)
rocblas_init(AB + j * ldab + i, 1, 1, 1);
// for upper, fill in top left triangle with random data to ensure
// we aren't using it.
if(upper)
{
for(int i = 0; i < m; i++)
rocblas_init(AB + j * ldab + i, 1, 1, 1);
}
}
}
}
/* =============================================================================== */
/*! \brief For testing purposes, zeros out elements not needed in a banded matrix.
* This routine is for host vector */
template <typename T>
inline void banded_matrix_setup(bool upper, T* A, rocblas_int n, rocblas_int k)
{
// Made A a banded matrix with k sub/super-diagonals
for(int i = 0; i < n; i++)
{
for(int j = 0; j < n; j++)
{
if(upper && (j > k + i || i > j))
A[j * size_t(n) + i] = T(0);
else if(!upper && (i > k + j || j > i))
A[j * size_t(n) + i] = T(0);
}
}
}
/* =============================================================================== */
/*! \brief For testing purposes, zeros out elements not needed in a banded matrix.
* This routine is for host batched and strided batched vectors */
template <typename U, typename T>
inline void banded_matrix_setup(bool upper, T& h_A, rocblas_int k)
{
rocblas_int n = h_A.n();
#ifdef _OPENMP
#pragma omp parallel for
#endif
for(rocblas_int batch_index = 0; batch_index < h_A.batch_count(); ++batch_index)
{
auto* A = h_A[batch_index];
// Made A a banded matrix with k sub/super-diagonals
for(int i = 0; i < n; i++)
{
for(int j = 0; j < n; j++)
{
if(upper && (j > k + i || i > j))
A[j * size_t(n) + i] = U(0);
else if(!upper && (i > k + j || j > i))
A[j * size_t(n) + i] = U(0);
}
}
}
}
/* ============================================================================================= */
/*! \brief For testing purposes, to convert a regular matrix to a packed matrix.
* This routine is for host vector */
template <typename T>
inline void regular_to_packed(bool upper, const T* A, T* AP, rocblas_int n)
{
size_t index = 0;
if(upper)
{
for(int i = 0; i < n; i++)
{
for(int j = 0; j <= i; j++)
{
AP[index++] = A[j + i * size_t(n)];
}
}
}
else
{
for(int i = 0; i < n; i++)
{
for(int j = i; j < n; j++)
{
AP[index++] = A[j + i * size_t(n)];
}
}
}
}
/* ============================================================================================= */
/*! \brief For testing purposes, to convert a regular matrix to a packed matrix.
* This routine is for host batched and strided batched vectors */
template <typename U>
inline void regular_to_packed(bool upper, U& h_A, U& h_AP, rocblas_int n)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for(rocblas_int batch_index = 0; batch_index < h_A.batch_count(); ++batch_index)
{
auto* AP = h_AP[batch_index];
auto* A = h_A[batch_index];
size_t index = 0;
if(upper)
{
for(int i = 0; i < n; i++)
{
for(int j = 0; j <= i; j++)
{
AP[index++] = A[j + i * size_t(n)];
}
}
}
else
{
for(int i = 0; i < n; i++)
{
for(int j = i; j < n; j++)
{
AP[index++] = A[j + i * size_t(n)];
}
}
}
}
}
/* ============================================================================================= */
/*! \brief For testing purposes, makes the square matrix hA into a unit_diagonal matrix and *
* randomly initialize the diagonal. This routine is for host vector */
template <typename T>
void make_unit_diagonal(rocblas_fill uplo, T* hA, size_t lda, int64_t N)
{
if(uplo == rocblas_fill_lower)
{
for(int64_t i = 0; i < N; i++)
{
T diag = hA[i + i * size_t(lda)];
for(int64_t j = 0; j <= i; j++)
hA[i + j * size_t(lda)] = hA[i + j * size_t(lda)] / diag;
}
}
else // rocblas_fill_upper
{
for(int64_t j = 0; j < N; j++)
{
T diag = hA[j + j * size_t(lda)];
for(int64_t i = 0; i <= j; i++)
hA[i + j * size_t(lda)] = hA[i + j * size_t(lda)] / diag;
}
}
// randomly initialize diagonal to ensure we aren't using it's values for tests.
for(int64_t i = 0; i < N; i++)
{
rocblas_init<T>(hA + i * size_t(lda) + i, 1, 1, 1);
}
}
/* ============================================================================================= */
/*! \brief For testing purposes, makes the square matrix hA into a unit_diagonal matrix and *
* randomly initialize the diagonal. This routine is for host batched and strided batched vectors */
template <typename T>
void make_unit_diagonal(rocblas_fill uplo, T& h_A)
{
rocblas_int N = h_A.n();
size_t lda = h_A.lda();
#ifdef _OPENMP
#pragma omp parallel for
#endif
for(rocblas_int batch_index = 0; batch_index < h_A.batch_count(); ++batch_index)
{
auto* A = h_A[batch_index];
if(uplo == rocblas_fill_lower)
{
for(int i = 0; i < N; i++)
{
auto diag = A[i + i * lda];
for(int j = 0; j <= i; j++)
A[i + j * lda] = A[i + j * lda] / diag;
}
}
else // rocblas_fill_upper
{
for(int j = 0; j < N; j++)
{
auto diag = A[j + j * lda];
for(int i = 0; i <= j; i++)
A[i + j * lda] = A[i + j * lda] / diag;
}
}
// randomly initalize diagonal to ensure we aren't using it's values for tests.
for(int i = 0; i < N; i++)
{
rocblas_init(A + i * lda + i, 1, 1, 1);
}
}
}
/* ============================================================================================= */
/*! \brief For testing purposes, copy one matrix into another with different leading dimensions */
template <typename T, typename U>
void copy_matrix_with_different_leading_dimensions(T& hB, U& hC)
{
int64_t M = hB.m();
int64_t N = hB.n();
size_t ldb = hB.lda();
size_t ldc = hC.lda();
int64_t batch_count = hB.batch_count();
for(int64_t b = 0; b < batch_count; b++)
{
auto* B = hB[b];
auto* C = hC[b];
for(int i = 0; i < M; i++)
for(int j = 0; j < N; j++)
C[i + j * ldc] = B[i + j * ldb];
}
}
template <typename T>
void print_strided_batched(const char* name,
T* A,
rocblas_int n1,
rocblas_int n2,
rocblas_int n3,
rocblas_int s1,
rocblas_int s2,
rocblas_int s3)
{
// n1, n2, n3 are matrix dimensions, sometimes called m, n, batch_count
// s1, s1, s3 are matrix strides, sometimes called 1, lda, stride_a
rocblas_cout << "---------- " << name << " ----------\n";
int max_size = 8;
for(int i3 = 0; i3 < n3 && i3 < max_size; i3++)
{
for(int i1 = 0; i1 < n1 && i1 < max_size; i1++)
{
for(int i2 = 0; i2 < n2 && i2 < max_size; i2++)
{
rocblas_cout << A[(i1 * s1) + (i2 * s2) + (i3 * s3)] << "|";
}
rocblas_cout << "\n";
}
if(i3 < (n3 - 1) && i3 < (max_size - 1))
rocblas_cout << "\n";
}
rocblas_cout << std::flush;
}
template <typename T>
void print_batched_matrix(const char* name,
host_batch_vector<T>& A,
rocblas_int n1,
rocblas_int n2,
rocblas_int s1,
rocblas_int s2,
rocblas_int batch_count)
{
// n1, n2 are matrix dimensions, sometimes called m, n
// s1, s2 are matrix strides, sometimes called 1, lda
int max_size = 1025;
for(int i3 = 0; i3 < A.batch_count() && i3 < max_size; i3++)
{
auto A_p = A[i3];
for(int i1 = 0; i1 < n1 && i1 < max_size; i1++)
{
for(int i2 = 0; i2 < n2 && i2 < max_size; i2++)
{
rocblas_cout << A_p[(i1 * s1) + (i2 * s2)] << "|";
}
rocblas_cout << "\n";
}
if(i3 < (batch_count - 1) && i3 < (max_size - 1))
rocblas_cout << "\n";
}
rocblas_cout << std::flush;
}
inline void print_memory_size(size_t memory_size)
{
if(memory_size < 1024)
{
rocblas_cout << std::setprecision(0) << memory_size << " Bytes";
}
else if(memory_size < 1048576)
{
rocblas_cout << std::setprecision(3) << float(memory_size) / 1024.0f << " KB";
}
else if(memory_size < 1073741824)
{
rocblas_cout << std::setprecision(6) << float(memory_size) / 1048576.0f << " MB";
}
else
{
rocblas_cout << std::setprecision(9) << float(memory_size) / 1073741824.0f << " GB";
}
}
size_t calculate_flush_batch_count(size_t arg_flush_batch_count,
size_t arg_flush_memory_size,
size_t cached_size);
inline void print_reference_lib_warning()
{
// prints a warning to cout if the recommended reference library isn't used
#ifdef ROCBLAS_REFERENCE_LIB
#define TOSTR2(s) #s
#define TOSTR(s) TOSTR2(s)
rocblas_cout
<< "Warning: Using reference library '" << TOSTR(ROCBLAS_REFERENCE_LIB)
<< "' which may not support 64-bit input arguments. If running a test suite, please use "
<< "--gtest_filter=-*stress* to avoid 64-bit test failures.\n";
#undef TOSTR
#undef TOSTR2
#endif
}
void print_reference_lib_warning();
hipError_t limit_device_count(int& device_count, int max_limit);
|