| 30 | } |
| 31 | |
| 32 | void OpenclQueue::Launch(std::shared_ptr<preempt::HwCommand> hw_cmd) |
| 33 | { |
| 34 | auto cmd = std::dynamic_pointer_cast<OpenclCommand>(hw_cmd); |
| 35 | if (cmd == nullptr) return; |
| 36 | cmd->Launch(cmdq_); |
| 37 | } |
| 38 | |
| 39 | void OpenclQueue::Synchronize() |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected