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
|
# ########################################################################
# Copyright (C) 2021 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
# copies 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
# IMPLIED, 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 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# ########################################################################
---
include: rocsparse_common.yaml
include: known_bugs.yaml
Tests:
- name: csrcolor_bad_arg
category: pre_checkin
function: csrcolor_bad_arg
precision: *single_double_precisions_complex_real
- name: csrcolor
category: pre_checkin
function: csrcolor
precision: *single_double_precisions_complex_real
M: [0, 1, 2, 3, 4, 16, 32]
baseA: [rocsparse_index_base_one]
baseB: [rocsparse_index_base_zero]
direction: [rocsparse_direction_row]
matrix: [rocsparse_matrix_random]
percentage: [0.25, 0.5, 1.0]
- name: csrcolor
category: pre_checkin
function: csrcolor
precision: *single_double_precisions_complex_real
M: [10245, 50687, 92835]
baseA: [rocsparse_index_base_one]
baseB: [rocsparse_index_base_zero]
direction: [rocsparse_direction_row]
matrix: [rocsparse_matrix_random]
percentage: [0.25, 0.5, 1.0]
- name: csrcolor_file
category: pre_checkin
function: csrcolor
precision: *single_double_precisions
M: 1
N: 1
baseA: [rocsparse_index_base_one]
direction: [rocsparse_direction_row]
matrix: [rocsparse_matrix_file_rocalution]
filename: [mac_econ_fwd500,
nos2,
nos4,
nos6,
scircuit]
percentage: [0.25, 0.5, 1.0]
- name: csrcolor
category: quick
function: csrcolor
precision: *single_double_precisions_complex_real
direction: [rocsparse_direction_row]
M: [10, 325, 1107]
N: [33, 435, 1089]
baseA: [rocsparse_index_base_zero, rocsparse_index_base_one]
matrix: [rocsparse_matrix_random]
percentage: [0.25, 0.5, 1.0]
- name: csrcolor
category: nightly
function: csrcolor
precision: *single_double_precisions_complex_real
direction: [rocsparse_direction_row]
M: [20245, 50677, 82859]
baseA: [rocsparse_index_base_one]
matrix: [rocsparse_matrix_random]
percentage: [0.25, 0.5, 1.0]
- name: csrcolor_file
category: nightly
function: csrcolor
precision: *single_double_precisions_complex
M: 1
N: 1
baseA: [rocsparse_index_base_one]
matrix: [rocsparse_matrix_file_rocalution]
filename: [Chevron2,
Chevron3,
Chevron4]
percentage: [0.25, 0.5, 1.0]
- name: csrcolor_file
category: nightly
function: csrcolor
precision: *single_double_precisions
M: 1
N: 1
baseA: [rocsparse_index_base_zero]
matrix: [rocsparse_matrix_file_rocalution]
filename: [amazon0312,
bmwcra_1,
mac_econ_fwd500,
sme3Dc,
webbase-1M,
Chebyshev4]
percentage: [0.25, 0.5, 1.0]
|