| 48 | } |
| 49 | |
| 50 | void host_queue::start_profiling() const { |
| 51 | profiling_time = clock_in_us(); |
| 52 | } |
| 53 | |
| 54 | uint64_t host_queue::stop_profiling() const { |
| 55 | const auto elapsed_time = clock_in_us() - profiling_time; |
nothing calls this directly
no test coverage detected