Skip to content

Commit ee07cff

Browse files
committed
Update _compiler.py
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent ee2bfa1 commit ee07cff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/torch_tensorrt/ts/_compiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def compile(module: torch.jit.ScriptModule,
112112
"enabled": not require_full_compilation,
113113
"forced_fallback_ops": torch_executed_ops,
114114
"forced_fallback_modules": torch_executed_modules,
115-
"min_block_size": min_block_sizexs
115+
"min_block_size": min_block_size
116116
}
117117
}
118118

@@ -248,4 +248,4 @@ def check_method_op_support(module: torch.jit.ScriptModule, method_name: str) ->
248248
Returns:
249249
bool: True if supported Method
250250
"""
251-
return _C.check_method_op_support(module._c, method_name)
251+
return _C.check_method_op_support(module._c, method_name)

0 commit comments

Comments
 (0)