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
|
/*! \file */
/* ************************************************************************
* Copyright (C) 2019-2022 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.
*
* ************************************************************************ */
#pragma once
#ifndef ROCSPARSE_DATATYPE2STRING_HPP
#define ROCSPARSE_DATATYPE2STRING_HPP
#include <rocsparse.h>
#include <string>
#include <algorithm>
typedef enum rocsparse_matrix_init_kind_
{
rocsparse_matrix_init_kind_default = 0,
rocsparse_matrix_init_kind_tunedavg = 1
} rocsparse_matrix_init_kind;
constexpr auto rocsparse_matrix_init_kind2string(rocsparse_matrix_init_kind matrix)
{
switch(matrix)
{
case rocsparse_matrix_init_kind_default:
return "default";
case rocsparse_matrix_init_kind_tunedavg:
return "tunedavg";
}
return "invalid";
}
typedef enum rocsparse_matrix_init_
{
rocsparse_matrix_random = 0, /**< Random initialization */
rocsparse_matrix_laplace_2d = 1, /**< Initialize 2D laplacian matrix */
rocsparse_matrix_laplace_3d = 2, /**< Initialize 3D laplacian matrix */
rocsparse_matrix_file_mtx = 3, /**< Read from .mtx (matrix market) file */
rocsparse_matrix_file_rocalution = 4, /**< Read from .csr (rocALUTION) file */
rocsparse_matrix_zero = 5, /**< Generates zero matrix */
rocsparse_matrix_file_rocsparseio = 6, /**< Read from .bin (rocSPARSEIO) file */
rocsparse_matrix_tridiagonal = 7, /**< Initialize tridiagonal matrix */
rocsparse_matrix_pentadiagonal = 8 /**< Initialize pentadiagonal matrix */
} rocsparse_matrix_init;
constexpr auto rocsparse_matrix2string(rocsparse_matrix_init matrix)
{
switch(matrix)
{
case rocsparse_matrix_random:
return "rand";
case rocsparse_matrix_laplace_2d:
return "L2D";
case rocsparse_matrix_laplace_3d:
return "L3D";
case rocsparse_matrix_file_mtx:
return "mtx";
case rocsparse_matrix_file_rocalution:
return "csr";
case rocsparse_matrix_zero:
return "zero";
case rocsparse_matrix_file_rocsparseio:
return "bin";
case rocsparse_matrix_tridiagonal:
return "tri";
case rocsparse_matrix_pentadiagonal:
return "penta";
}
return "invalid";
}
constexpr auto rocsparse_indextype2string(rocsparse_indextype type)
{
switch(type)
{
case rocsparse_indextype_u16:
return "u16";
case rocsparse_indextype_i32:
return "i32";
case rocsparse_indextype_i64:
return "i64";
}
return "invalid";
}
constexpr auto rocsparse_datatype2string(rocsparse_datatype type)
{
switch(type)
{
case rocsparse_datatype_f32_r:
return "f32_r";
case rocsparse_datatype_f64_r:
return "f64_r";
case rocsparse_datatype_f32_c:
return "f32_c";
case rocsparse_datatype_f64_c:
return "f64_c";
}
return "invalid";
}
constexpr auto rocsparse_indexbase2string(rocsparse_index_base base)
{
switch(base)
{
case rocsparse_index_base_zero:
return "0b";
case rocsparse_index_base_one:
return "1b";
}
return "invalid";
}
constexpr auto rocsparse_operation2string(rocsparse_operation trans)
{
switch(trans)
{
case rocsparse_operation_none:
return "NT";
case rocsparse_operation_transpose:
return "T";
case rocsparse_operation_conjugate_transpose:
return "CT";
}
return "invalid";
}
constexpr auto rocsparse_matrixtype2string(rocsparse_matrix_type type)
{
switch(type)
{
case rocsparse_matrix_type_general:
return "general";
case rocsparse_matrix_type_symmetric:
return "symmetric";
case rocsparse_matrix_type_hermitian:
return "hermitian";
case rocsparse_matrix_type_triangular:
return "triangular";
}
return "invalid";
}
constexpr auto rocsparse_diagtype2string(rocsparse_diag_type diag)
{
switch(diag)
{
case rocsparse_diag_type_non_unit:
return "ND";
case rocsparse_diag_type_unit:
return "UD";
}
return "invalid";
}
constexpr auto rocsparse_fillmode2string(rocsparse_fill_mode uplo)
{
switch(uplo)
{
case rocsparse_fill_mode_lower:
return "L";
case rocsparse_fill_mode_upper:
return "U";
}
return "invalid";
}
constexpr auto rocsparse_storagemode2string(rocsparse_storage_mode storage)
{
switch(storage)
{
case rocsparse_storage_mode_sorted:
return "sorted";
case rocsparse_storage_mode_unsorted:
return "unsorted";
}
return "invalid";
}
constexpr auto rocsparse_action2string(rocsparse_action action)
{
switch(action)
{
case rocsparse_action_symbolic:
return "sym";
case rocsparse_action_numeric:
return "num";
}
return "invalid";
}
constexpr auto rocsparse_partition2string(rocsparse_hyb_partition part)
{
switch(part)
{
case rocsparse_hyb_partition_auto:
return "auto";
case rocsparse_hyb_partition_user:
return "user";
case rocsparse_hyb_partition_max:
return "max";
}
return "invalid";
}
constexpr auto rocsparse_analysis2string(rocsparse_analysis_policy policy)
{
switch(policy)
{
case rocsparse_analysis_policy_reuse:
return "reuse";
case rocsparse_analysis_policy_force:
return "force";
}
return "invalid";
}
constexpr auto rocsparse_solve2string(rocsparse_solve_policy policy)
{
switch(policy)
{
case rocsparse_solve_policy_auto:
return "auto";
}
return "invalid";
}
constexpr auto rocsparse_direction2string(rocsparse_direction direction)
{
switch(direction)
{
case rocsparse_direction_row:
return "row";
case rocsparse_direction_column:
return "column";
}
return "invalid";
}
constexpr auto rocsparse_order2string(rocsparse_order order)
{
switch(order)
{
case rocsparse_order_row:
return "row";
case rocsparse_order_column:
return "col";
}
return "invalid";
}
constexpr auto rocsparse_format2string(rocsparse_format format)
{
switch(format)
{
case rocsparse_format_coo:
return "coo";
case rocsparse_format_coo_aos:
return "coo_aos";
case rocsparse_format_csr:
return "csr";
case rocsparse_format_bsr:
return "bsr";
case rocsparse_format_csc:
return "csc";
case rocsparse_format_ell:
return "ell";
case rocsparse_format_bell:
return "bell";
}
return "invalid";
}
constexpr auto rocsparse_sddmmalg2string(rocsparse_sddmm_alg alg)
{
switch(alg)
{
case rocsparse_sddmm_alg_default:
return "default";
}
return "invalid";
}
constexpr auto rocsparse_spmvalg2string(rocsparse_spmv_alg alg)
{
switch(alg)
{
case rocsparse_spmv_alg_default:
return "default";
case rocsparse_spmv_alg_bsr:
return "bsr";
case rocsparse_spmv_alg_coo:
return "coo";
case rocsparse_spmv_alg_csr_adaptive:
return "csradaptive";
case rocsparse_spmv_alg_csr_stream:
return "csrstream";
case rocsparse_spmv_alg_ell:
return "ell";
case rocsparse_spmv_alg_coo_atomic:
return "cooatomic";
}
return "invalid";
}
constexpr auto rocsparse_spsvalg2string(rocsparse_spsv_alg alg)
{
switch(alg)
{
case rocsparse_spsv_alg_default:
return "default";
}
return "invalid";
}
constexpr auto rocsparse_spsmalg2string(rocsparse_spsm_alg alg)
{
switch(alg)
{
case rocsparse_spsm_alg_default:
return "default";
}
return "invalid";
}
constexpr auto rocsparse_spmmalg2string(rocsparse_spmm_alg alg)
{
switch(alg)
{
case rocsparse_spmm_alg_default:
return "default";
case rocsparse_spmm_alg_bsr:
return "bsr";
case rocsparse_spmm_alg_csr:
return "csr";
case rocsparse_spmm_alg_coo_segmented:
return "coosegmented";
case rocsparse_spmm_alg_coo_atomic:
return "cooatomic";
case rocsparse_spmm_alg_bell:
return "bell";
case rocsparse_spmm_alg_coo_segmented_atomic:
return "coosegmented_atomic";
case rocsparse_spmm_alg_csr_row_split:
return "csrrow_split";
case rocsparse_spmm_alg_csr_merge:
return "csrmerge";
}
return "invalid";
}
constexpr auto rocsparse_spgemmalg2string(rocsparse_spgemm_alg alg)
{
switch(alg)
{
case rocsparse_spgemm_alg_default:
return "default";
}
return "invalid";
}
constexpr auto rocsparse_sparsetodensealg2string(rocsparse_sparse_to_dense_alg alg)
{
switch(alg)
{
case rocsparse_sparse_to_dense_alg_default:
return "default";
}
return "invalid";
}
constexpr auto rocsparse_densetosparsealg2string(rocsparse_dense_to_sparse_alg alg)
{
switch(alg)
{
case rocsparse_dense_to_sparse_alg_default:
return "default";
}
return "invalid";
}
constexpr auto rocsparse_gtsvinterleavedalg2string(rocsparse_gtsv_interleaved_alg alg)
{
switch(alg)
{
case rocsparse_gtsv_interleaved_alg_default:
return "default";
case rocsparse_gtsv_interleaved_alg_thomas:
return "thomas";
case rocsparse_gtsv_interleaved_alg_lu:
return "LU";
case rocsparse_gtsv_interleaved_alg_qr:
return "QR";
}
return "invalid";
}
constexpr auto rocsparse_gpsvalg2string(rocsparse_gpsv_interleaved_alg alg)
{
switch(alg)
{
case rocsparse_gpsv_interleaved_alg_default:
return "default";
case rocsparse_gpsv_interleaved_alg_qr:
return "qr";
}
return "invalid";
}
// Return a string without '/' or '\\'
inline std::string rocsparse_filename2string(const std::string& filename)
{
std::string result(filename);
std::replace(result.begin(), result.end(), '/', '_');
std::replace(result.begin(), result.end(), '\\', '_');
return result;
}
#endif // ROCSPARSE_DATATYPE2STRING_HPP
|