| 776 | } |
| 777 | |
| 778 | port::Status GpuExecutor::DeallocateEvent(Event* event) { |
| 779 | return AsGpuEvent(event)->Destroy(); |
| 780 | } |
| 781 | |
| 782 | port::Status GpuExecutor::RecordEvent(Stream* stream, Event* event) { |
| 783 | return AsGpuEvent(event)->Record(AsGpuStream(stream)); |
nothing calls this directly
no test coverage detected