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
|
---
include: ../../clients/include/rocblas_common.yaml
#include: known_bugs.yaml
Definitions:
############
# Level 1+ #
############
- &incx_range_small
- [1]
- &incx_range
- [1]
- &N_range
- [65]
- &batch_count_range
- [1]
- &incx_incy_range
- { incx: 1, incy: 1, stride_scale: 1 }
- &alpha_range
- { alpha: 2.0 }
- &alpha_beta_range
- { alpha: 2.0, beta: -1.0 }
- &alphai_betai_range
- { alphai: 2.0 }
- &complex_alpha_range
- { alpha: 3.0, alphai: -2.0 }
- &complex_alpha_beta_range
- { alpha: -2, beta: -3, alphai: -4, betai: -5 }
###########
# Level 2 #
###########
- &L1_dims
- { M: 192, K: 192, N: 192, lda: 192, stride_a: 36864 }
- &trsv_dims
- { M: 192, K: 192, N: 192, lda: 192, stride_a: 36864, stride_x: 192 }
# - &trsv_dims
# - { M: 64, K: 64, N: 64, lda: 64, stride_a: 4096, stride_x: 64 }
- &gbmv_dims
- { M: 100, N: 200, lda: 200, KL: 20, KU: 8 }
- &hbmv_dims
- { N: 192, K: 192, lda: 192, stride_a: 36864 }
- &L1_common_args
precision: *single_double_precisions_complex_real
uplo: [L]
transA: [T]
diag: [U]
incx_incy: *incx_incy_range
alpha_beta: *complex_alpha_range
matrix_size: *L1_dims
stride_scale: [ 1 ]
- &trsv_common_args
# precision: *single_double_precisions_complex_real
precision: *single_double_precisions
uplo: [L]
transA: [T]
diag: [U]
incx: *incx_range
alpha_beta: *complex_alpha_range
matrix_size: *trsv_dims
- &gbmv_common_args
precision: *single_double_precisions_complex_real
transA: [T]
incx_incy: *incx_incy_range
alpha_beta: *complex_alpha_range
matrix_size: *gbmv_dims
- &ger_common_args
precision: *single_double_precisions_complex_real
incx_incy: *incx_incy_range
alpha_beta: *complex_alpha_range
matrix_size: *trsv_dims
- &hbmv_common_args
precision: *single_double_precisions_complex_real
uplo: [L]
incx_incy: *incx_incy_range
alpha_beta: *complex_alpha_beta_range
matrix_size: *hbmv_dims
###########
# Level 3 #
###########
- &transA_transB_range
- { transA: N, transB: T }
- { transA: C, transB: N }
- &gemm_dims
- { M: 129, N: 127, K: 64, lda: 129, ldb: 129, ldc: 129, ldd: 129, stride_a: 16641, stride_b: 16641,
stride_c: 16641, stride_x: 16641}
- &gemm_common_args
precision: *single_double_precisions_complex_real
transA_transB: *transA_transB_range
alpha_beta: *alpha_beta_range
matrix_size: *gemm_dims
- &syr2k_common_args
precision: *single_double_precisions_complex_real
transA: [ N, T]
alpha_beta: *alpha_beta_range
matrix_size: *gemm_dims
- &trmm_dims
- { M: 192, N: 129, lda: 192, ldb: 129 }
- &trmm_common_args
precision: *single_double_precisions_complex_real
side: [R, L]
uplo: [L]
transA: [T]
diag: [U]
alpha_beta: *complex_alpha_range
matrix_size: *trmm_dims
- &trsm_dims
- { M: 128, N: 128, lda: 128, ldb: 128 }
- &trsm_common_args
precision: *single_double_precisions_complex_real
side: [R]
uplo: [L, U]
transA: [T]
diag: [U]
alpha_beta: *complex_alpha_range
matrix_size: *trsm_dims
- &trtri_dims
- { N: 129, lda: 129 }
- &trtri_common_args
precision: *single_double_precisions_complex_real
uplo: [L, U]
diag: [U]
matrix_size: *trtri_dims
Tests:
# hipMemcpy2DAsync
- name: set_get_matrix_medium
category: pre_checkin
precision: *single_double_precisions
matrix_size: *gemm_dims
function:
- set_get_matrix_sync
- set_get_matrix_async
- name: set_get_vector_medium
category: pre_checkin
precision: *single_double_precisions
M: [ 60000 ]
incx: [1,3]
incy: [1,3]
ldd: [1,3]
function:
- set_get_vector_sync
- set_get_vector_async
###########
# Level 1 #
###########
- name: L1_quick
category: quick
function:
- iamax: *single_double_precisions_complex_real
- iamin: *single_double_precisions_complex_real
- asum: *single_double_precisions_complex_real
- axpy: *single_double_precisions_complex_real
- copy: *single_double_precisions_complex_real
- dot: *single_double_precisions_complex_real
- nrm2: *single_double_precisions_complex_real
- rot: *single_double_precisions_complex_real
- rotg: *single_double_precisions_complex_real
- rotm: *single_double_precisions_complex_real
- rotmg: *single_double_precisions_complex_real
- scal: *single_double_precisions_complex_real
- swap: *single_double_precisions_complex_real
arguments: *L1_common_args
- name: L1_pre_checkin
category: pre_checkin
function:
- iamax_batched: *single_double_precisions_complex_real
- iamin_batched: *single_double_precisions_complex_real
- asum_batched: *single_double_precisions_complex_real
- axpy_batched: *single_double_precisions_complex_real
- copy_batched: *single_double_precisions_complex_real
- dot_batched: *single_double_precisions_complex_real
- nrm2_batched: *single_double_precisions_complex_real
- rot_batched: *single_double_precisions_complex_real
- rotg_batched: *single_double_precisions_complex_real
- rotm_batched: *single_double_precisions_complex_real
- rotmg_batched: *single_double_precisions_complex_real
- scal_batched: *single_double_precisions_complex_real
- swap_batched: *single_double_precisions_complex_real
arguments: *L1_common_args
batch_count: *batch_count_range
- name: L1_nightly
category: nightly
function:
- iamax_strided_batched: *single_double_precisions_complex_real
- iamin_strided_batched: *single_double_precisions_complex_real
- asum_strided_batched: *single_double_precisions_complex_real
- axpy_strided_batched: *single_double_precisions_complex_real
- copy_strided_batched: *single_double_precisions_complex_real
- dot_strided_batched: *single_double_precisions_complex_real
- nrm2_strided_batched: *single_double_precisions_complex_real
- rot_strided_batched: *single_double_precisions_complex_real
- rotg_strided_batched: *single_double_precisions_complex_real
- rotm_strided_batched: *single_double_precisions_complex_real
- rotmg_strided_batched: *single_double_precisions_complex_real
- scal_strided_batched: *single_double_precisions_complex_real
- swap_strided_batched: *single_double_precisions_complex_real
arguments: *L1_common_args
batch_count: *batch_count_range
stride_scale: [ 1 ]
###########
# Level 2 #
###########
# trsv
- name: trsv_L2_quick
category: quick
function: trsv
arguments: *trsv_common_args
- name: trsv_batched_L2_pre_checkin
category: pre_checkin
function: trsv_batched
arguments: *trsv_common_args
batch_count: *batch_count_range
- name: trsv_strided_batched_L2_nightly
category: nightly
function: trsv_strided_batched
arguments: *trsv_common_args
batch_count: *batch_count_range
stride_scale: [ 1 ]
- name: gemv_L2_quick
category: quick
function: gemv
arguments: *gemm_common_args
incx_incy: *incx_incy_range
- name: gemv_batched_L2_pre_checkin
category: pre_checkin
function: gemv_batched
arguments: *gemm_common_args
incx_incy: *incx_incy_range
batch_count: *batch_count_range
- name: gemv_strided_batched_L2_nightly
category: nightly
function: gemv_strided_batched
arguments: *gemm_common_args
incx_incy: *incx_incy_range
batch_count: *batch_count_range
- name: gbmv_L2_quick
category: quick
function: gbmv
arguments: *gbmv_common_args
- name: gbmv_batched_L2_pre_checkin
category: pre_checkin
function: gbmv_batched
arguments: *gbmv_common_args
batch_count: *batch_count_range
- name: gbmv_strided_batched_L2_nightly
category: nightly
function: gbmv_strided_batched
arguments: *gbmv_common_args
batch_count: *batch_count_range
- name: ger_L2_quick
category: quick
function: ger
arguments: *ger_common_args
- name: ger_batched_L2_pre_checkin
category: pre_checkin
function: ger_batched
arguments: *ger_common_args
batch_count: *batch_count_range
- name: ger_strided_batched_L2_nightly
category: nightly
function: ger_strided_batched
arguments: *ger_common_args
batch_count: *batch_count_range
- name: L2_quick2
category: quick
function:
- syr2: *single_double_precisions_complex_real
- syr: *single_double_precisions_complex_real
- symv: *single_double_precisions_complex_real
- spr2: *single_double_precisions_complex_real
- spr: *single_double_precisions_complex_real
- spmv: *single_double_precisions_complex_real
- sbmv: *single_double_precisions_complex_real
- hpr2: *single_double_precisions_complex_real
- hpr: *single_double_precisions_complex_real
- hpmv: *single_double_precisions_complex_real
- her2: *single_double_precisions_complex_real
- her: *single_double_precisions_complex_real
- hemv: *single_double_precisions_complex_real
- hbmv: *single_double_precisions_complex_real
- spr: *single_double_precisions_complex_real
- spmv: *single_double_precisions_complex_real
- sbmv: *single_double_precisions_complex_real
- hpr2: *single_double_precisions_complex_real
- hpr: *single_double_precisions_complex_real
- hpmv: *single_double_precisions_complex_real
arguments: *hbmv_common_args
- name: L2_pre_checkin2
category: pre_checkin
function:
- syr2_batched: *single_double_precisions_complex_real
- syr_batched: *single_double_precisions_complex_real
- symv_batched: *single_double_precisions_complex_real
- spr2_batched: *single_double_precisions_complex_real
- spr_batched: *single_double_precisions_complex_real
- spmv_batched: *single_double_precisions_complex_real
- sbmv_batched: *single_double_precisions_complex_real
- hpr2_batched: *single_double_precisions_complex_real
- hpr_batched: *single_double_precisions_complex_real
- hpmv_batched: *single_double_precisions_complex_real
- her2_batched: *single_double_precisions_complex_real
- her_batched: *single_double_precisions_complex_real
- hemv_batched: *single_double_precisions_complex_real
- hbmv_batched: *single_double_precisions_complex_real
- spr_batched: *single_double_precisions_complex_real
- spmv_batched: *single_double_precisions_complex_real
- sbmv_batched: *single_double_precisions_complex_real
- hpr2_batched: *single_double_precisions_complex_real
- hpr_batched: *single_double_precisions_complex_real
- hpmv_batched: *single_double_precisions_complex_real
arguments: *hbmv_common_args
batch_count: *batch_count_range
- name: L2_nightly2
category: nightly
function:
- syr2_strided_batched: *single_double_precisions_complex_real
- syr_strided_batched: *single_double_precisions_complex_real
- symv_strided_batched: *single_double_precisions_complex_real
- spr2_strided_batched: *single_double_precisions_complex_real
- spr_strided_batched: *single_double_precisions_complex_real
- spmv_strided_batched: *single_double_precisions_complex_real
- sbmv_strided_batched: *single_double_precisions_complex_real
- hpr2_strided_batched: *single_double_precisions_complex_real
- hpr_strided_batched: *single_double_precisions_complex_real
- hpmv_strided_batched: *single_double_precisions_complex_real
- her2_strided_batched: *single_double_precisions_complex_real
- her_strided_batched: *single_double_precisions_complex_real
- hemv_strided_batched: *single_double_precisions_complex_real
- hbmv_strided_batched: *single_double_precisions_complex_real
- spr_strided_batched: *single_double_precisions_complex_real
- spmv_strided_batched: *single_double_precisions_complex_real
- sbmv_strided_batched: *single_double_precisions_complex_real
- hpr2_strided_batched: *single_double_precisions_complex_real
- hpr_strided_batched: *single_double_precisions_complex_real
- hpmv_strided_batched: *single_double_precisions_complex_real
arguments: *hbmv_common_args
batch_count: *batch_count_range
- name: L2_quick
category: quick
function:
- trmv: *single_double_precisions_complex_real
- tpsv: *single_double_precisions_complex_real
- tpmv: *single_double_precisions_complex_real
- tbmv: *single_double_precisions_complex_real
- tbsv: *single_double_precisions_complex_real
arguments: *trsv_common_args
- name: L2_pre_checkin
category: pre_checkin
function:
- trmv_batched: *single_double_precisions_complex_real
- tpsv_batched: *single_double_precisions_complex_real
- tpmv_batched: *single_double_precisions_complex_real
- tbmv_batched: *single_double_precisions_complex_real
- tbsv_batched: *single_double_precisions_complex_real
arguments: *trsv_common_args
batch_count: *batch_count_range
- name: L2_nightly
category: nightly
function:
- trmv_strided_batched: *single_double_precisions_complex_real
- tpsv_strided_batched: *single_double_precisions_complex_real
- tpmv_strided_batched: *single_double_precisions_complex_real
- tbmv_strided_batched: *single_double_precisions_complex_real
- tbsv_strided_batched: *single_double_precisions_complex_real
arguments: *trsv_common_args
batch_count: *batch_count_range
###########
# Level 3 #
###########
- name: atomics_mode_L3_quick
category: quick
atomics_mode: atomics_not_allowed
function:
gemm: *single_double_precisions_complex
gemm_ex: *single_double_precisions_complex
arguments: *gemm_common_args
# gemm
- name: gemm_L3_quick
category: quick
function:
- gemm: *half_single_double_precisions
- gemm_ex: *real_precisions
arguments: *gemm_common_args
- name: gemm_ex3_L3_quick
category: quick
function:
- gemm_ex3: *F8SS_family
- gemm_ex3: *F8HS_family
- gemm_ex3: *F8F8S_family
- gemm_ex3: *stage1_family
- gemm_ex3: *stage2_family
arguments: *gemm_common_args
initialization: rand_int_zero_one
unit_check: 1
gpu_arch: '94?'
- name: gemm_batched_L3_pre_checkin
category: pre_checkin
function:
- gemm_batched: *half_single_double_precisions
- gemm_batched_ex: *half_single_double_precisions
arguments: *gemm_common_args
batch_count: *batch_count_range
- name: gemm_ex3_L3_pre_checkin
category: pre_checkin
function:
- gemm_batched_ex3: *F8SS_family
- gemm_batched_ex3: *F8HS_family
- gemm_batched_ex3: *F8F8S_family
- gemm_batched_ex3: *stage1_family
- gemm_batched_ex3: *stage2_family
arguments: *gemm_common_args
batch_count: *batch_count_range
initialization: rand_int_zero_one
unit_check: 1
gpu_arch: '94?'
- name: gemm_strided_batched_L3_nightly
category: nightly
function:
- gemm_strided_batched: *half_single_double_precisions
- gemm_strided_batched_ex: *single_double_precisions_complex_real
arguments: *gemm_common_args
batch_count: *batch_count_range
- name: gemm_ex3_L3_pre_nightly
category: nightly
function:
- gemm_strided_batched_ex3: *F8SS_family
- gemm_strided_batched_ex3: *F8HS_family
- gemm_strided_batched_ex3: *F8F8S_family
- gemm_strided_batched_ex3: *stage1_family
- gemm_strided_batched_ex3: *stage2_family
arguments: *gemm_common_args
batch_count: *batch_count_range
initialization: rand_int_zero_one
unit_check: 1
gpu_arch: '94?'
# trmm
- name: trmm_L3_quick
category: quick
function: trmm
arguments: *trmm_common_args
- name: trmm_batched_L3_pre_checkin
category: pre_checkin
function: trmm_batched
arguments: *trmm_common_args
batch_count: *batch_count_range
- name: trmm_strided_batched_L3_nightly
category: nightly
function: trmm_strided_batched
arguments: *trmm_common_args
batch_count: *batch_count_range
# trsm
- name: trsm_L3_quick
category: quick
function: trsm
arguments: *trsm_common_args
- name: trsm_batched_L3_pre_checkin
category: pre_checkin
function: trsm_batched
arguments: *trsm_common_args
batch_count: *batch_count_range
- name: trsm_strided_batched_L3_nightly
category: nightly
function: trsm_strided_batched
arguments: *trsm_common_args
batch_count: *batch_count_range
# trtri
- name: trtri_L3_quick
category: quick
function: trtri
arguments: *trtri_common_args
- name: trtri_batched_L3_pre_checkin
category: pre_checkin
function: trtri_batched
arguments: *trtri_common_args
batch_count: *batch_count_range
- name: trtri_strided_batched_L3_nightly
category: nightly
function: trtri_strided_batched
arguments: *trtri_common_args
batch_count: *batch_count_range
- name: dgmm_L3_quick
category: quick
function:
- dgmm: *single_double_precisions_complex
arguments: *gemm_common_args
incx: *incx_range
side: [ L ]
- name: dgmm_batched_L3_pre_checkin
category: pre_checkin
function:
- dgmm_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
incx: *incx_range
side: [ L ]
- name: dgmm_strided_batched_L3_nightly
category: nightly
function:
- dgmm_strided_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
incx: *incx_range
side: [ L ]
- name: geam_L3_quick
category: quick
function:
- geam: *single_double_precisions_complex
arguments: *gemm_common_args
- name: geam_batched_L3_pre_checkin
category: pre_checkin
function:
- geam_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
- name: geam_strided_batched_L3_nightly
category: nightly
function:
- geam_strided_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
- name: her2k_L3_quick
category: quick
function:
- her2k: *single_double_precisions_complex
arguments: *gemm_common_args
uplo: [ L ]
- name: her2k_batched_L3_pre_checkin
category: pre_checkin
function:
- her2k_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
uplo: [ L ]
- name: her2k_strided_batched_L3_nightly
category: nightly
function:
- her2k_strided_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
uplo: [ L ]
- name: herk_L3_quick
category: quick
function:
- herk: *single_double_precisions_complex
arguments: *gemm_common_args
uplo: [ L ]
- name: herk_batched_L3_pre_checkin
category: pre_checkin
function:
- herk_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
uplo: [ L ]
- name: herk_strided_batched_L3_nightly
category: nightly
function:
- herk_strided_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
uplo: [ L ]
- name: symm_L3_quick
category: quick
function:
- symm: *single_double_precisions_complex
arguments: *gemm_common_args
uplo: [ L ]
side: [ L ]
- name: symm_batched_L3_pre_checkin
category: pre_checkin
function:
- symm_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
uplo: [ L ]
side: [ L ]
- name: symm_strided_batched_L3_nightly
category: nightly
function:
- symm_strided_batched: *single_double_precisions_complex
arguments: *gemm_common_args
batch_count: *batch_count_range
uplo: [ L ]
side: [ L ]
- name: syr2k_L3_quick
category: quick
function:
- syr2k: *single_double_precisions_complex
arguments: *syr2k_common_args
incx_incy: *incx_incy_range
uplo: [ L ]
- name: syr2k_batched_L3_pre_checkin
category: pre_checkin
function:
- syr2k_batched: *single_double_precisions_complex
arguments: *syr2k_common_args
batch_count: *batch_count_range
incx_incy: *incx_incy_range
uplo: [ L ]
- name: syr2k_strided_batched_L3_nightly
category: nightly
function:
- syr2k_strided_batched: *single_double_precisions_complex
arguments: *syr2k_common_args
batch_count: *batch_count_range
incx_incy: *incx_incy_range
uplo: [ L ]
...
|