| 93 | } |
| 94 | |
| 95 | std::string |
| 96 | Step::dtypeToString(DataType dtype) |
| 97 | { |
| 98 | switch (dtype) { |
| 99 | case TYPE_FLOAT: return "cl_float"; |
| 100 | case TYPE_DOUBLE: return "cl_double"; |
| 101 | case TYPE_COMPLEX_FLOAT: return "FloatComplex"; |
| 102 | case TYPE_COMPLEX_DOUBLE: return "DoubleComplex"; |
| 103 | default: return ""; |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | std::string |
| 108 | Step::multiplierToString( |
nothing calls this directly
no outgoing calls
no test coverage detected