| 148 | } |
| 149 | |
| 150 | CUresult CudaKernelLaunchExCommand::Launch(CUstream stream) |
| 151 | { |
| 152 | cfg_.hStream = stream; |
| 153 | void **params = params_; |
| 154 | if (deep_copy_ && extra_ != nullptr) params = nullptr; |
| 155 | return Driver::LaunchKernelEx(&cfg_, kFunc, params, extra_); |
| 156 | } |
| 157 | |
| 158 | CudaEventRecordCommand::CudaEventRecordCommand(CUevent event) |
| 159 | : CudaCommand(preempt::kCommandPropertyIdempotent), event_(event) |
nothing calls this directly
no outgoing calls
no test coverage detected