| 193 | } |
| 194 | |
| 195 | af_err af_get_dbl_support(bool* available, const int device) { |
| 196 | try { |
| 197 | *available = isDoubleSupported(device); |
| 198 | } |
| 199 | CATCHALL; |
| 200 | return AF_SUCCESS; |
| 201 | } |
| 202 | |
| 203 | af_err af_get_half_support(bool* available, const int device) { |
| 204 | try { |
no test coverage detected