Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/py/dynamo/lowering/test_decompositions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2507,6 +2507,10 @@ def forward(self, bias, batch1, batch2):
inputs,
min_block_size=1,
pass_through_build_failures=True,
# The reference below runs the matmul in full fp32, so TensorRT has to
# as well. TF32 is on by default and rounds the operands to 10 mantissa
# bits, which costs far more than DECIMALS_OF_AGREEMENT allows.
disable_tf32=True,
)
with torch.no_grad():
trt_results = optimized_model(*inputs).detach().cpu()
Expand Down
Loading