| 51 | using std::chrono::milliseconds; |
| 52 | |
| 53 | logger *getLogger() { |
| 54 | static shared_ptr<logger> logger(loggerFactory("jit")); |
| 55 | return logger.get(); |
| 56 | } |
| 57 | |
| 58 | string getProgramBuildLog(const kernel_bundle<bundle_state::executable> &prog) { |
| 59 | ONEAPI_NOT_SUPPORTED(""); |
nothing calls this directly
no test coverage detected