| 84 | std::function<string(const string &)> g_cubinate; |
| 85 | |
| 86 | static GpuEvent* AsGpuEvent(Event* event) { |
| 87 | DCHECK(event != nullptr); |
| 88 | return static_cast<GpuEvent*>(event->implementation()); |
| 89 | } |
| 90 | |
| 91 | // Given a platform-independent timer datatype, returns the internal CUDA |
| 92 | // platform implementation pointer. |
no test coverage detected