| 26 | } |
| 27 | |
| 28 | bool ZeListExecuteCommand::EnableSynchronization() |
| 29 | { |
| 30 | if (following_fence_ != nullptr) return true; |
| 31 | following_fence_ = (ze_fence_handle_t)fence_pool_->Pop(); |
| 32 | return following_fence_ != nullptr; |
| 33 | } |
| 34 | |
| 35 | ze_result_t ZeListExecuteCommand::Launch(ze_command_queue_handle_t cmdq) |
| 36 | { |
no test coverage detected