Operators Documentation#

In TensorRT-RTX, operators represent distinct flavors of mathematical and programmatic operations. The following sections describe every operator that TensorRT-RTX supports. The minimum workspace required by TensorRT-RTX depends on the operators used by the network.

Workspace Size: The default workspace size is 16 MB. For most networks, this is sufficient. However, complex networks with many operators may require a larger workspace. A suggested minimum build-time setting is 16 MB, but you can increase this value using IBuilderConfig::setMaxWorkspaceSize() if needed. Regardless of the maximum workspace value provided to the builder, TensorRT-RTX will allocate at runtime no more than the workspace it actually requires.

Interface - TensorRT-RTX Operators