| 644 | } |
| 645 | |
| 646 | bool GpuExecutor::AllocateStream(Stream* stream) { |
| 647 | return AsGpuStream(stream)->Init(); |
| 648 | } |
| 649 | |
| 650 | void GpuExecutor::DeallocateStream(Stream* stream) { |
| 651 | GpuStream* rocm_stream = AsGpuStream(stream); |
nothing calls this directly
no test coverage detected