| 81 | |
| 82 | template<typename T> |
| 83 | inline std::string scalar_to_option(const T &val) { |
| 84 | using namespace arrayfire::common; |
| 85 | using std::to_string; |
| 86 | return to_string(+val); |
| 87 | } |
| 88 | |
| 89 | template<> |
| 90 | inline std::string scalar_to_option<cl_float2>(const cl_float2 &val) { |
no test coverage detected