| 190 | } |
| 191 | |
| 192 | const char VISIBILITY_HIDDEN |
| 193 | *kernelTypeString(CLBlasKernelType ktype) |
| 194 | { |
| 195 | switch (ktype) { |
| 196 | case CLBLAS_COMPUTING_KERNEL: |
| 197 | return "computing"; |
| 198 | case CLBLAS_PREP_A_KERNEL: |
| 199 | return "preparative for matrix A"; |
| 200 | case CLBLAS_PREP_B_KERNEL: |
| 201 | return "preparative for matrix B"; |
| 202 | default: |
| 203 | return NULL; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | /* |
| 208 | * Assign a scalar multiplied on a matrix a kernel argument |
no outgoing calls
no test coverage detected