Table of Contents

Enum TensorRtTempfileControlFlags

Namespace
JYPPX.TensorRtSharp
Assembly
JYPPX.TensorRtSharp.dll

Represents TensorRT runtime temporary-file control flags as a bitmask. 以位掩码形式表示 TensorRT runtime 临时文件控制标志。

[Flags]
public enum TensorRtTempfileControlFlags : uint

Fields

All = AllowInMemoryFiles | AllowTemporaryFiles

TensorRT default behavior: allow all tempfile mechanisms. TensorRT 默认行为:允许全部临时文件机制。

AllowInMemoryFiles = 1

Allow TensorRT to use in-memory or unnamed temporary files. 允许 TensorRT 使用内存内或未命名临时文件。

AllowTemporaryFiles = 2

Allow TensorRT to create regular temporary files. 允许 TensorRT 创建普通临时文件。

None = 0

No temporary-file mechanism is enabled. 不启用任何临时文件机制。