| 290 | } |
| 291 | |
| 292 | const char* |
| 293 | Step::getBlasFunctionName() |
| 294 | { |
| 295 | switch (blasFunctionID()) { |
| 296 | case CLBLAS_GEMV: |
| 297 | return "gemv"; |
| 298 | case CLBLAS_SYMV: |
| 299 | return "symv"; |
| 300 | case CLBLAS_GEMM: |
| 301 | return "gemm"; |
| 302 | case CLBLAS_TRMM: |
| 303 | return "trmm"; |
| 304 | case CLBLAS_TRSM: |
| 305 | return "trsm"; |
| 306 | case CLBLAS_SYRK: |
| 307 | return "syrk"; |
| 308 | case CLBLAS_SYR2K: |
| 309 | return "syr2k"; |
| 310 | default: |
| 311 | return ""; |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | void |
| 316 | Step::setDecomposition( |