\brief Set the maximum size for persistent cache usage. This function sets the maximum persistent L2 cache that this execution context may use for activation caching. Activation caching is not supported on all architectures - see "How TensorRT uses Memory" in the developer guide for details \param size the size of persistent cache limitation in bytes. The default is 0 Bytes. \see getPersistentC
| 3473 | //! |
| 3474 | //! \see getPersistentCacheLimit |
| 3475 | void setPersistentCacheLimit(size_t size) noexcept |
| 3476 | { |
| 3477 | mImpl->setPersistentCacheLimit(size); |
| 3478 | } |
| 3479 | |
| 3480 | //! |
| 3481 | //! \brief Get the maximum size for persistent cache usage. |