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 d3eb817 commit c9253c7Copy full SHA for c9253c7
py/torch_tensorrt/dynamo/conversion/_TRTInterpreter.py
@@ -346,9 +346,10 @@ def _populate_trt_builder_config(
346
self.compilation_settings.tiling_optimization_level
347
]
348
349
- builder_config.l2_limit_for_tiling = (
350
- self.compilation_settings.l2_limit_for_tiling
351
- )
+ if self.compilation_settings.l2_limit_for_tiling != -1:
+ builder_config.l2_limit_for_tiling = (
+ self.compilation_settings.l2_limit_for_tiling
352
+ )
353
354
return builder_config
355
0 commit comments