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