File: axpy_problems.yaml

package info (click to toggle)
rocblas 6.4.4-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,082,776 kB
  • sloc: cpp: 244,923; f90: 50,012; python: 50,003; sh: 24,630; asm: 8,917; makefile: 150; ansic: 107; xml: 36; awk: 14
file content (33 lines) | stat: -rw-r--r-- 741 bytes parent folder | download
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
---
include: ../../../../clients/include/rocblas_common.yaml
include: rocblas_perf_common.yaml

Tests:
  - name: axpy_bench
    category: bench
    function: axpy
    precision: *single_double_precisions
    alpha: 1
    N: *generic_l1_perf_sizes
    incx: 1 # using special unit-inc kernel for fp32, generic for fp64
    incy: 1

  - name: axpy_batched_bench
    category: bench
    function: axpy_batched
    precision: *single_precision
    alpha: 1
    N: 4096
    incx: 1
    incy: 1
    batch_count: *l1_batch_count_range

  - name: axpy_fma8_bench
    category: bench
    function: axpy
    precision: *half_precision
    alpha: [ 2 ]
    N: *generic_l1_perf_sizes
    incx: 1 # using special unit-inc kernel for fp16
    incy: 1
...