| 507 | } |
| 508 | |
| 509 | port::Status StreamExecutor::Launch(Stream *stream, |
| 510 | const ThreadDim &thread_dims, |
| 511 | const BlockDim &block_dims, |
| 512 | const KernelBase &kernel, |
| 513 | const KernelArgsArrayBase &args) { |
| 514 | SubmitTrace(&TraceListener::LaunchSubmit, stream, thread_dims, block_dims, |
| 515 | kernel, args); |
| 516 | |
| 517 | return implementation_->Launch(stream, thread_dims, block_dims, kernel, args); |
| 518 | } |
| 519 | |
| 520 | port::Status StreamExecutor::LaunchExecutableGraph(Stream *stream, |
| 521 | void *exec_graph) { |
no outgoing calls
no test coverage detected