File: dot_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 (40 lines) | stat: -rw-r--r-- 877 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
34
35
36
37
38
39
40
---
include: ../../../../clients/include/rocblas_common.yaml
include: rocblas_perf_common.yaml

Tests:
  - name: dot_bench_inc1
    category: bench
    function: dot
    precision: *single_double_precisions_complex_real
    N: *generic_l1_perf_sizes
    incx: 1
    incy: 1

  - name: dot_bench_inc2
    category: bench
    function: dot
    precision: *single_precision
    N: *generic_l1_perf_sizes
    incx: 2 # different kernel for non-unit increment
    incy: 2

  - name: dot_bench_algo1
    category: bench
    function: dot
    precision: *single_precision
    N: *generic_l1_perf_sizes
    incx: 1
    incy: 1
    algo: 1 # x dot x

  - name: dot_batched_bench
    category: bench
    function: dot_batched
    precision: *single_precision
    N: 1024 # separate kernel for small N large batch_count
    batch_count: *l1_batch_count_range
    incx: 1
    incy: 1

...