File: testing_spmat_descr.cpp

package info (click to toggle)
rocsparse 6.4.3-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 20,428 kB
  • sloc: cpp: 234,069; f90: 9,307; sh: 2,262; python: 1,939; makefile: 1,585; ansic: 440; xml: 26
file content (564 lines) | stat: -rw-r--r-- 30,278 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
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
/* ************************************************************************
 * Copyright (C) 2020-2023 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 "testing.hpp"

template <typename I, typename J, typename T>
void testing_spmat_descr_bad_arg(const Arguments& arg)
{
    static const size_t   safe_size = 100;
    rocsparse_spmat_descr local_descr{};
    int64_t               local_rows          = safe_size;
    int64_t               local_cols          = safe_size;
    int64_t               local_nnz           = safe_size;
    rocsparse_direction   local_ell_block_dir = rocsparse_direction_row;
    int64_t               local_ell_block_dim = safe_size;
    int64_t               local_ell_cols      = safe_size;
    rocsparse_index_base  local_base          = rocsparse_index_base_zero;
    rocsparse_format      local_format        = rocsparse_format_csr;
    rocsparse_indextype   local_itype         = get_indextype<I>();
    rocsparse_indextype   local_jtype         = get_indextype<J>();
    rocsparse_datatype    local_ttype         = get_datatype<T>();
    rocsparse_int         local_batch_count   = safe_size;

    {
        rocsparse_spmat_descr* descr         = &local_descr;
        int64_t                rows          = local_rows;
        int64_t                cols          = local_cols;
        int64_t                nnz           = local_nnz;
        rocsparse_direction    ell_block_dir = local_ell_block_dir;
        int64_t                ell_block_dim = local_ell_block_dim;
        int64_t                ell_cols      = local_ell_cols;
        rocsparse_index_base   idx_base      = local_base;

        rocsparse_indextype idx_type     = local_itype;
        rocsparse_datatype  data_type    = local_ttype;
        rocsparse_indextype row_ptr_type = local_itype;
        rocsparse_indextype col_ind_type = local_jtype;
        rocsparse_indextype col_ptr_type = local_itype;
        rocsparse_indextype row_ind_type = local_jtype;

        void* coo_row_ind = (void*)0x4;
        void* coo_col_ind = (void*)0x4;
        void* coo_val     = (void*)0x4;

#define PARAMS_CREATE_COO \
    descr, rows, cols, nnz, coo_row_ind, coo_col_ind, coo_val, idx_type, idx_base, data_type
        bad_arg_analysis(rocsparse_create_coo_descr, PARAMS_CREATE_COO);
#undef PARAMS_CREATE_COO

        // nnz > rows * cols
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_coo_descr(descr,
                                                           rows,
                                                           cols,
                                                           (rows * cols + 1),
                                                           coo_row_ind,
                                                           coo_col_ind,
                                                           coo_val,
                                                           idx_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_invalid_size);
        void* csr_row_ptr = (void*)0x4;
        void* csr_col_ind = (void*)0x4;
        void* csr_val     = (void*)0x4;

#define PARAMS_CREATE_CSR                                                                  \
    descr, rows, cols, nnz, csr_row_ptr, csr_col_ind, csr_val, row_ptr_type, col_ind_type, \
        idx_base, data_type
        bad_arg_analysis(rocsparse_create_csr_descr, PARAMS_CREATE_CSR);
#undef PARAMS_CREATE_CSR

        // nnz > rows * cols
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_csr_descr(descr,
                                                           rows,
                                                           cols,
                                                           (rows * cols + 1),
                                                           csr_row_ptr,
                                                           csr_col_ind,
                                                           csr_val,
                                                           row_ptr_type,
                                                           col_ind_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_invalid_size);

        void* csc_row_ind = (void*)0x4;
        void* csc_col_ptr = (void*)0x4;
        void* csc_val     = (void*)0x4;

#define PARAMS_CREATE_CSC                                                                  \
    descr, rows, cols, nnz, csc_col_ptr, csc_row_ind, csc_val, col_ptr_type, row_ind_type, \
        idx_base, data_type
        bad_arg_analysis(rocsparse_create_csc_descr, PARAMS_CREATE_CSC);
#undef PARAMS_CREATE_CSC

        // nnz > rows * cols
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_csc_descr(descr,
                                                           rows,
                                                           cols,
                                                           (rows * cols + 1),
                                                           csc_col_ptr,
                                                           csc_row_ind,
                                                           csc_val,
                                                           col_ptr_type,
                                                           row_ind_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_invalid_size);

        void* ell_col_ind = (void*)0x4;
        void* ell_val     = (void*)0x4;

#define PARAMS_CREATE_ELL                                                                      \
    descr, rows, cols, ell_block_dir, ell_block_dim, ell_cols, ell_col_ind, ell_val, idx_type, \
        idx_base, data_type
        bad_arg_analysis(rocsparse_create_bell_descr, PARAMS_CREATE_ELL);
#undef PARAMS_CREATE_ELL

        // block_dim = 0
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_bell_descr(descr,
                                                            rows,
                                                            cols,
                                                            ell_block_dir,
                                                            0,
                                                            ell_cols,
                                                            ell_col_ind,
                                                            ell_val,
                                                            idx_type,
                                                            idx_base,
                                                            data_type),
                                rocsparse_status_invalid_size);

        // ell_cols > cols
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_bell_descr(descr,
                                                            rows,
                                                            cols,
                                                            ell_block_dir,
                                                            ell_block_dim,
                                                            (cols + 1),
                                                            ell_col_ind,
                                                            ell_val,
                                                            idx_type,
                                                            idx_base,
                                                            data_type),
                                rocsparse_status_invalid_size);

        // rocsparse_destroy_spmat_descr_ex
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(nullptr),
                                rocsparse_status_invalid_pointer);

        // Check valid descriptor creations
        EXPECT_ROCSPARSE_STATUS(
            rocsparse_create_coo_descr(
                descr, 0, cols, 0, nullptr, nullptr, nullptr, idx_type, idx_base, data_type),
            rocsparse_status_success);

        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(
            rocsparse_create_coo_descr(
                descr, rows, 0, 0, nullptr, nullptr, nullptr, idx_type, idx_base, data_type),
            rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(
            rocsparse_create_coo_descr(
                descr, rows, cols, 0, nullptr, nullptr, nullptr, idx_type, idx_base, data_type),
            rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);

        EXPECT_ROCSPARSE_STATUS(rocsparse_create_csr_descr(descr,
                                                           0,
                                                           cols,
                                                           0,
                                                           nullptr,
                                                           nullptr,
                                                           nullptr,
                                                           row_ptr_type,
                                                           col_ind_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_csr_descr(descr,
                                                           rows,
                                                           0,
                                                           0,
                                                           csr_row_ptr,
                                                           nullptr,
                                                           nullptr,
                                                           row_ptr_type,
                                                           col_ind_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_csr_descr(descr,
                                                           rows,
                                                           cols,
                                                           0,
                                                           csr_row_ptr,
                                                           nullptr,
                                                           nullptr,
                                                           row_ptr_type,
                                                           col_ind_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
#if 0
    EXPECT_ROCSPARSE_STATUS(
			    rocsparse_create_csr_descr(
							     descr, rows, cols, 0, nullptr, nullptr, nullptr, row_ptr_type, col_ind_type, idx_base, data_type),
			    rocsparse_status_success);
    EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr), rocsparse_status_success);
#endif
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_csc_descr(descr,
                                                           rows,
                                                           0,
                                                           0,
                                                           nullptr,
                                                           nullptr,
                                                           nullptr,
                                                           row_ptr_type,
                                                           col_ind_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_csc_descr(descr,
                                                           0,
                                                           cols,
                                                           0,
                                                           csc_col_ptr,
                                                           nullptr,
                                                           nullptr,
                                                           row_ptr_type,
                                                           col_ind_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_csc_descr(descr,
                                                           rows,
                                                           cols,
                                                           0,
                                                           csc_col_ptr,
                                                           nullptr,
                                                           nullptr,
                                                           row_ptr_type,
                                                           col_ind_type,
                                                           idx_base,
                                                           data_type),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);

#if 0
    EXPECT_ROCSPARSE_STATUS(rocsparse_create_bell_descr(descr,
                                                              0,
                                                              cols,
                                                              ell_block_dir,
                                                              ell_block_dim,
                                                              ell_cols,
                                                              nullptr,
                                                              nullptr,
                                                              idx_type,
                                                              idx_base,
                                                              data_type),
                            rocsparse_status_success);
    EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr), rocsparse_status_success);
#endif
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_bell_descr(descr,
                                                            rows,
                                                            0,
                                                            ell_block_dir,
                                                            ell_block_dim,
                                                            0,
                                                            nullptr,
                                                            nullptr,
                                                            idx_type,
                                                            idx_base,
                                                            data_type),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_create_bell_descr(descr,
                                                            rows,
                                                            cols,
                                                            ell_block_dir,
                                                            ell_block_dim,
                                                            0,
                                                            nullptr,
                                                            nullptr,
                                                            idx_type,
                                                            idx_base,
                                                            data_type),
                                rocsparse_status_success);
        EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(local_descr),
                                rocsparse_status_success);
    }

    {
        int64_t*              rows          = &local_rows;
        int64_t*              cols          = &local_cols;
        int64_t*              nnz           = &local_nnz;
        rocsparse_direction*  ell_block_dir = &local_ell_block_dir;
        int64_t*              ell_block_dim = &local_ell_block_dim;
        int64_t*              ell_cols      = &local_ell_cols;
        rocsparse_index_base* idx_base      = &local_base;
        rocsparse_format*     format        = &local_format;

        rocsparse_indextype* idx_type     = &local_itype;
        rocsparse_datatype*  data_type    = &local_ttype;
        rocsparse_indextype* row_ptr_type = &local_itype;
        rocsparse_indextype* col_ind_type = &local_jtype;

        void** coo_row_ind = (void**)0x4;
        void** coo_col_ind = (void**)0x4;
        void** coo_val     = (void**)0x4;
        void** csr_row_ptr = (void**)0x4;
        void** csr_col_ind = (void**)0x4;
        void** csr_val     = (void**)0x4;
        void** ell_col_ind = (void**)0x4;
        void** ell_val     = (void**)0x4;

        rocsparse_int* batch_count = &local_batch_count;

        {
            EXPECT_ROCSPARSE_STATUS(rocsparse_create_coo_descr(&local_descr,
                                                               local_rows,
                                                               local_cols,
                                                               local_nnz,
                                                               (void*)0x4,
                                                               (void*)0x4,
                                                               (void*)0x4,
                                                               local_itype,
                                                               local_base,
                                                               local_ttype),
                                    rocsparse_status_success);
            rocsparse_spmat_descr descr = local_descr;

#define PARAMS_GET_COO \
    descr, rows, cols, nnz, coo_row_ind, coo_col_ind, coo_val, idx_type, idx_base, data_type
            bad_arg_analysis(rocsparse_coo_get, PARAMS_GET_COO);
#undef PARAMS_GET_COO

#define PARAMS_GET_SIZE descr, rows, cols, nnz
            bad_arg_analysis(rocsparse_spmat_get_size, PARAMS_GET_SIZE);
#undef PARAMS_GET_SIZE

#define PARAMS_GET_FORMAT descr, format
            bad_arg_analysis(rocsparse_spmat_get_format, PARAMS_GET_FORMAT);
#undef PARAMS_GET_FORMAT

#define PARAMS_GET_INDEX_BASE descr, idx_base
            bad_arg_analysis(rocsparse_spmat_get_index_base, PARAMS_GET_INDEX_BASE);
#undef PARAMS_GET_INDEX_BASE

            void** values = (void**)0x4;
#define PARAMS_GET_VALUES descr, values
            bad_arg_analysis(rocsparse_spmat_get_values, PARAMS_GET_VALUES);
#undef PARAMS_GET_VALUES

#define PARAMS_GET_STRIDED_BATCH descr, batch_count
            bad_arg_analysis(rocsparse_spmat_get_strided_batch, PARAMS_GET_STRIDED_BATCH);
#undef PARAMS_GET_STRIDED_BATCH

            // Destroy valid descriptors
            EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(descr), rocsparse_status_success);
        }

        {
            EXPECT_ROCSPARSE_STATUS(rocsparse_create_csr_descr(&local_descr,
                                                               local_rows,
                                                               local_cols,
                                                               local_nnz,
                                                               (void*)0x4,
                                                               (void*)0x4,
                                                               (void*)0x4,
                                                               local_itype,
                                                               local_jtype,
                                                               local_base,
                                                               local_ttype),
                                    rocsparse_status_success);
            rocsparse_spmat_descr descr = local_descr;

#define PARAMS_GET_CSR                                                                     \
    descr, rows, cols, nnz, csr_row_ptr, csr_col_ind, csr_val, row_ptr_type, col_ind_type, \
        idx_base, data_type
            bad_arg_analysis(rocsparse_csr_get, PARAMS_GET_CSR);
#undef PARAMS_GET_CSR

#define PARAMS_GET_SIZE descr, rows, cols, nnz
            bad_arg_analysis(rocsparse_spmat_get_size, PARAMS_GET_SIZE);
#undef PARAMS_GET_SIZE

#define PARAMS_GET_FORMAT descr, format
            bad_arg_analysis(rocsparse_spmat_get_format, PARAMS_GET_FORMAT);
#undef PARAMS_GET_FORMAT

#define PARAMS_GET_INDEX_BASE descr, idx_base
            bad_arg_analysis(rocsparse_spmat_get_index_base, PARAMS_GET_INDEX_BASE);
#undef PARAMS_GET_INDEX_BASE

            void** values = (void**)0x4;
#define PARAMS_GET_VALUES descr, values
            bad_arg_analysis(rocsparse_spmat_get_values, PARAMS_GET_VALUES);
#undef PARAMS_GET_VALUES

#define PARAMS_GET_STRIDED_BATCH descr, batch_count
            bad_arg_analysis(rocsparse_spmat_get_strided_batch, PARAMS_GET_STRIDED_BATCH);
#undef PARAMS_GET_STRIDED_BATCH

            // Destroy valid descriptors
            EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(descr), rocsparse_status_success);
        }

        {
            EXPECT_ROCSPARSE_STATUS(rocsparse_create_csc_descr(&local_descr,
                                                               local_rows,
                                                               local_cols,
                                                               local_nnz,
                                                               (void*)0x4,
                                                               (void*)0x4,
                                                               (void*)0x4,
                                                               local_itype,
                                                               local_jtype,
                                                               local_base,
                                                               local_ttype),
                                    rocsparse_status_success);
            rocsparse_spmat_descr descr = local_descr;

            rocsparse_indextype* col_ptr_type = &local_itype;
            rocsparse_indextype* row_ind_type = &local_jtype;
            void**               csc_row_ind  = (void**)0x4;
            void**               csc_col_ptr  = (void**)0x4;
            void**               csc_val      = (void**)0x4;
#define PARAMS_GET_CSC                                                                     \
    descr, rows, cols, nnz, csc_col_ptr, csc_row_ind, csc_val, col_ptr_type, row_ind_type, \
        idx_base, data_type
            bad_arg_analysis(rocsparse_csc_get, PARAMS_GET_CSC);
#undef PARAMS_GET_CSC

#define PARAMS_GET_SIZE descr, rows, cols, nnz
            bad_arg_analysis(rocsparse_spmat_get_size, PARAMS_GET_SIZE);
#undef PARAMS_GET_SIZE

#define PARAMS_GET_FORMAT descr, format
            bad_arg_analysis(rocsparse_spmat_get_format, PARAMS_GET_FORMAT);
#undef PARAMS_GET_FORMAT

#define PARAMS_GET_INDEX_BASE descr, idx_base
            bad_arg_analysis(rocsparse_spmat_get_index_base, PARAMS_GET_INDEX_BASE);
#undef PARAMS_GET_INDEX_BASE

            void** values = (void**)0x4;
#define PARAMS_GET_VALUES descr, values
            bad_arg_analysis(rocsparse_spmat_get_values, PARAMS_GET_VALUES);
#undef PARAMS_GET_VALUES

#define PARAMS_GET_STRIDED_BATCH descr, batch_count
            bad_arg_analysis(rocsparse_spmat_get_strided_batch, PARAMS_GET_STRIDED_BATCH);
#undef PARAMS_GET_STRIDED_BATCH

            // Destroy valid descriptors
            EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(descr), rocsparse_status_success);
        }

        {
            EXPECT_ROCSPARSE_STATUS(rocsparse_create_bell_descr(&local_descr,
                                                                local_rows,
                                                                local_cols,
                                                                local_ell_block_dir,
                                                                local_ell_block_dim,
                                                                local_ell_cols,
                                                                (void*)0x4,
                                                                (void*)0x4,
                                                                local_itype,
                                                                local_base,
                                                                local_ttype),
                                    rocsparse_status_success);
            rocsparse_spmat_descr descr = local_descr;

#define PARAMS_GET_ELL                                                                         \
    descr, rows, cols, ell_block_dir, ell_block_dim, ell_cols, ell_col_ind, ell_val, idx_type, \
        idx_base, data_type
            bad_arg_analysis(rocsparse_bell_get, PARAMS_GET_ELL);
#undef PARAMS_GET_ELL

#define PARAMS_GET_SIZE descr, rows, cols, nnz
            bad_arg_analysis(rocsparse_spmat_get_size, PARAMS_GET_SIZE);
#undef PARAMS_GET_SIZE

#define PARAMS_GET_FORMAT descr, format
            bad_arg_analysis(rocsparse_spmat_get_format, PARAMS_GET_FORMAT);
#undef PARAMS_GET_FORMAT

#define PARAMS_GET_INDEX_BASE descr, idx_base
            bad_arg_analysis(rocsparse_spmat_get_index_base, PARAMS_GET_INDEX_BASE);
#undef PARAMS_GET_INDEX_BASE

            void** values = (void**)0x4;
#define PARAMS_GET_VALUES descr, values
            bad_arg_analysis(rocsparse_spmat_get_values, PARAMS_GET_VALUES);
#undef PARAMS_GET_VALUES

#define PARAMS_GET_STRIDED_BATCH descr, batch_count
            bad_arg_analysis(rocsparse_spmat_get_strided_batch, PARAMS_GET_STRIDED_BATCH);
#undef PARAMS_GET_STRIDED_BATCH

            // Destroy valid descriptors
            EXPECT_ROCSPARSE_STATUS(rocsparse_destroy_spmat_descr(descr), rocsparse_status_success);
        }
    }
}
template <typename I, typename J, typename T>
void testing_spmat_descr(const Arguments& arg)
{
}

#define INSTANTIATE(ITYPE, JTYPE, TTYPE)                                                  \
    template void testing_spmat_descr_bad_arg<ITYPE, JTYPE, TTYPE>(const Arguments& arg); \
    template void testing_spmat_descr<ITYPE, JTYPE, TTYPE>(const Arguments& arg)

INSTANTIATE(int32_t, int32_t, float);
INSTANTIATE(int32_t, int32_t, double);
INSTANTIATE(int32_t, int32_t, rocsparse_float_complex);
INSTANTIATE(int32_t, int32_t, rocsparse_double_complex);
INSTANTIATE(int64_t, int32_t, float);
INSTANTIATE(int64_t, int32_t, double);
INSTANTIATE(int64_t, int32_t, rocsparse_float_complex);
INSTANTIATE(int64_t, int32_t, rocsparse_double_complex);
INSTANTIATE(int64_t, int64_t, float);
INSTANTIATE(int64_t, int64_t, double);
INSTANTIATE(int64_t, int64_t, rocsparse_float_complex);
INSTANTIATE(int64_t, int64_t, rocsparse_double_complex);
void testing_spmat_descr_extra(const Arguments& arg) {}