| 800 | } |
| 801 | |
| 802 | bool GpuExecutor::AllocateStream(Stream* stream) { |
| 803 | return AsGpuStream(stream)->Init(); |
| 804 | } |
| 805 | |
| 806 | void GpuExecutor::DeallocateStream(Stream* stream) { |
| 807 | GpuStream* cuda_stream = AsGpuStream(stream); |
nothing calls this directly
no test coverage detected