\brief Create timing cache Create ITimingCache instance from serialized raw data. The created timing cache doesn’t belong to a specific IBuilderConfig. It can be shared by multiple builder instances. Call setTimingCache() before launching a builder to attach cache to builder instance. \param blob A pointer to the raw data that contains serialized timing cache \param size The size in bytes of the
| 9647 | //! \return the pointer to ITimingCache created |
| 9648 | //! |
| 9649 | nvinfer1::ITimingCache* createTimingCache(void const* blob, std::size_t size) const noexcept |
| 9650 | { |
| 9651 | return mImpl->createTimingCache(blob, size); |
| 9652 | } |
| 9653 | |
| 9654 | //! |
| 9655 | //! \brief Attach a timing cache to IBuilderConfig |
no outgoing calls
no test coverage detected