\brief Deserialize an engine from a stream. If an error recorder has been set for the runtime, it will also be passed to the engine. \param blob The memory that holds the serialized engine. \param size The size of the memory. \return The engine, or nullptr if it could not be deserialized.
| 779 | //! \return The engine, or nullptr if it could not be deserialized. |
| 780 | //! |
| 781 | ICudaEngine* deserializeCudaEngine(void const* blob, std::size_t size) noexcept |
| 782 | { |
| 783 | return mImpl->deserializeCudaEngine(blob, size, nullptr); |
| 784 | } |
| 785 | |
| 786 | //! |
| 787 | //! \brief get the logger with which the runtime was created |
no outgoing calls
no test coverage detected