| 52 | void info() { AF_THROW(af_info()); } |
| 53 | |
| 54 | const char *infoString(const bool verbose) { |
| 55 | char *str = NULL; |
| 56 | AF_THROW(af_info_string(&str, verbose)); |
| 57 | return str; |
| 58 | } |
| 59 | |
| 60 | void deviceprop(char *d_name, char *d_platform, char *d_toolkit, |
| 61 | char *d_compute) { |
nothing calls this directly
no test coverage detected