\brief Set the directory that will be used by this runtime for temporary files. On some platforms the TensorRT runtime may need to create and use temporary files with read/write/execute permissions to implement runtime functionality. \param path Path to the temporary directory for use, or nullptr. If path is nullptr, then TensorRT will use platform-specific heuristics to pick a default temporar
| 852 | //! \see getTemporaryDirectory() |
| 853 | //! |
| 854 | void setTemporaryDirectory(char const* path) noexcept |
| 855 | { |
| 856 | return mImpl->setTemporaryDirectory(path); |
| 857 | } |
| 858 | |
| 859 | //! |
| 860 | //! \brief Get the directory that will be used by this runtime for temporary files. |