| 465 | |
| 466 | public: |
| 467 | Event() |
| 468 | : event_(nullptr) |
| 469 | , counter_(new size_t(1)) |
| 470 | { |
| 471 | CUMAT_SAFE_CALL(cudaEventCreate(&event_)); |
| 472 | } |
| 473 | |
| 474 | Event(const Event& rhs) |
| 475 | : event_(rhs.event_) |
nothing calls this directly
no outgoing calls
no test coverage detected