Bug Description
When compiling a ModelOpt-quantized model with Torch-TensorRT, torch_tensorrt.compile() fails unless it is wrapped in export_torch_mode().
Without export_torch_mode(), FP8 (mtq.FP8_DEFAULT_CFG) ) quantized models fail during export with the following error:
RuntimeError: We found a fake tensor in the exported program constant's list.
This typically means our tracing system encountered an op that we can't trace through.
For the potential source, you can refer to following model attribute:
net.0.input_quantizer.lifted_tensor_0.
Please file an issue on github.
Wrapping the compile call in:
with export_torch_mode():
trt_model = torch_tensorrt.compile(...)
avoids this error.
To Reproduce
-
Launch the NVIDIA PyTorch container:
docker run --gpus all -it --rm nvcr.io/nvidia/pytorch:26.06-py3
-
Quantize a simple model using ModelOpt (mtq.FP8_DEFAULT_CFG).
-
Compile using Torch-TensorRT without export_torch_mode():
import torch
import torch.nn as nn
import torch_tensorrt
import modelopt.torch.quantization as mtq
device = "cuda"
class SimpleMLP(nn.Module):
def __init__(self):
super().__init__()
self.net = nn.Sequential(
nn.Linear(512, 4096),
nn.GELU(),
nn.Linear(4096,4096),
nn.GELU(),
nn.Linear(4096,512)
)
def forward(self, x):
return self.net(x)
model = SimpleMLP().to(device).eval()
quant_cfg = mtq.FP8_DEFAULT_CFG
calib_data = [
(torch.randn(128, 512, device=device),)
for _ in range(10)
]
def forward_loop(model):
with torch.no_grad():
for (x,) in calib_data:
model(x)
model = mtq.quantize(
model,
quant_cfg,
forward_loop,
)
inputs = [
torch_tensorrt.Input(
shape=(128, 512),
dtype=torch.float32,
)
]
trt_model = torch_tensorrt.compile(
model,
ir="dynamo",
inputs=inputs,
)
This produces:
RuntimeError: We found a fake tensor in the exported program constant's list.
This typically means our tracing system encountered an op that we can't trace through.
For the potential source, you can refer to following model attribute:
net.0.input_quantizer.lifted_tensor_0.
Please file an issue on github.
Expected behavior
torch_tensorrt.compile() should successfully export the quantized model, or emit a more descriptive error if export_torch_mode() is required.
Currently, the error does not indicate that wrapping the compilation in export_torch_mode() resolves the issue.
Environment
- Torch-TensorRT Version: 2.13.0a0
- PyTorch Version: 2.13.0a0+8145d630e8.nv26.6.54250401
- CPU Architecture: aarch64
- OS: Ubuntu 24.04.4
- How you installed PyTorch: NVIDIA NGC container (
nvcr.io/nvidia/pytorch:26.06-py3)
- Build command you used (if compiling from source): N/A
- Are you using local sources or building from archives: Archive/container image
- Python version: 3.12.3
- CUDA version: 13.3
- GPU models and configuration: NVIDIA Jetson AGX Thor (Blackwell)
- Any other relevant information:
- TensorRT 11.0.0.114
- NVIDIA ModelOpt 0.44.0
- cuDNN 9.23.0
Additional context
This bug showed up when I was trying to figure out this issue related to compiling an FP4 quantized model:
https://forums.developer.nvidia.com/t/fp4-quantization-fails-on-jetson-thor-with-tensorrt-11-0-0-114/377887
Bug Description
When compiling a ModelOpt-quantized model with Torch-TensorRT,
torch_tensorrt.compile()fails unless it is wrapped inexport_torch_mode().Without
export_torch_mode(), FP8 (mtq.FP8_DEFAULT_CFG) ) quantized models fail during export with the following error:Wrapping the compile call in:
avoids this error.
To Reproduce
Launch the NVIDIA PyTorch container:
Quantize a simple model using ModelOpt (
mtq.FP8_DEFAULT_CFG).Compile using Torch-TensorRT without
export_torch_mode():This produces:
Expected behavior
torch_tensorrt.compile()should successfully export the quantized model, or emit a more descriptive error ifexport_torch_mode()is required.Currently, the error does not indicate that wrapping the compilation in
export_torch_mode()resolves the issue.Environment
nvcr.io/nvidia/pytorch:26.06-py3)Additional context
This bug showed up when I was trying to figure out this issue related to compiling an FP4 quantized model:
https://forums.developer.nvidia.com/t/fp4-quantization-fails-on-jetson-thor-with-tensorrt-11-0-0-114/377887