We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 100a7aa commit a1f37adCopy full SHA for a1f37ad
py/torch_tensorrt/dynamo/conversion/_TRTInterpreter.py
@@ -347,9 +347,10 @@ def _populate_trt_builder_config(
347
self.compilation_settings.tiling_optimization_level
348
]
349
350
- builder_config.l2_limit_for_tiling = (
351
- self.compilation_settings.l2_limit_for_tiling
352
- )
+ if self.compilation_settings.l2_limit_for_tiling != -1:
+ builder_config.l2_limit_for_tiling = (
+ self.compilation_settings.l2_limit_for_tiling
353
+ )
354
355
return builder_config
356
0 commit comments