| 17 | } |
| 18 | |
| 19 | void AclQueue::Launch(std::shared_ptr<preempt::HwCommand> hw_cmd) |
| 20 | { |
| 21 | auto acl_cmd = std::dynamic_pointer_cast<AclCommand>(hw_cmd); |
| 22 | XASSERT(acl_cmd != nullptr, "hw_cmd is not an AclCommand"); |
| 23 | ACL_ASSERT(acl_cmd->LaunchWrapper(kStream)); |
| 24 | } |
| 25 | |
| 26 | void AclQueue::Synchronize() |
| 27 | { |
nothing calls this directly
no test coverage detected