\brief Enqueue inference on a stream. \param stream A cuda stream on which the inference kernels will be enqueued. \return True if the kernels were enqueued successfully, false otherwise. Modifying or releasing memory that has been registered for the tensors before stream synchronization or the event passed to setInputConsumedEvent has been being triggered results in undefined behavior. Input t
| 3458 | //! synchronization. |
| 3459 | //! |
| 3460 | bool enqueueV3(cudaStream_t stream) noexcept |
| 3461 | { |
| 3462 | return mImpl->enqueueV3(stream); |
| 3463 | } |
| 3464 | |
| 3465 | //! \brief Set the maximum size for persistent cache usage. |
| 3466 | //! |
no outgoing calls
no test coverage detected