| 41 | } |
| 42 | |
| 43 | void CudaQueueLv1::Launch(std::shared_ptr<HwCommand> hw_cmd) |
| 44 | { |
| 45 | auto cuda_cmd = std::dynamic_pointer_cast<CudaCommand>(hw_cmd); |
| 46 | XASSERT(cuda_cmd != nullptr, "hw_cmd is not a CudaCommand"); |
| 47 | CUDA_ASSERT(cuda_cmd->LaunchWrapper(kStream)); |
| 48 | } |
| 49 | |
| 50 | void CudaQueueLv1::Synchronize() |
| 51 | { |
nothing calls this directly
no test coverage detected