| 339 | } |
| 340 | |
| 341 | result hip_queue::submit_kernel(kernel_operation &op, const dag_node_ptr& node) { |
| 342 | |
| 343 | this->activate_device(); |
| 344 | |
| 345 | rt::backend_kernel_launch_capabilities cap; |
| 346 | |
| 347 | cap.provide_multipass_invoker(&_multipass_code_object_invoker); |
| 348 | cap.provide_sscp_invoker(&_sscp_code_object_invoker); |
| 349 | |
| 350 | hip_instrumentation_guard instrumentation{this, op, node.get()}; |
| 351 | return op.get_launcher().invoke(backend_id::hip, this, cap, node.get()); |
| 352 | |
| 353 | return make_success(); |
| 354 | } |
| 355 | |
| 356 | result hip_queue::submit_prefetch(prefetch_operation& op, const dag_node_ptr& node) { |
| 357 | // Need to enable instrumentation even if we cannot enable actual |
nothing calls this directly
no test coverage detected