Skip to content

Commit 8492c62

Browse files
committed
docs: Adding words to the refit and engine caching tutorials
Signed-off-by: Naren Dasan <[email protected]>
1 parent f9acc9a commit 8492c62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docsrc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
sphinx_gallery_conf = {
9494
"examples_dirs": "../examples",
9595
"gallery_dirs": "tutorials/_rendered_examples/",
96-
"ignore_pattern": "utils.py"
96+
"ignore_pattern": "utils.py",
9797
}
9898

9999
# Setup the breathe extension

py/torch_tensorrt/dynamo/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def unwrap_tensor_shape(
347347
if isinstance(tensor, int):
348348
tensor_shape.append(tensor)
349349
elif isinstance(tensor, torch.SymInt):
350-
min_max_opt: Dict[str, int] = extract_var_range_info(tensor)
350+
min_max_opt = extract_var_range_info(tensor)
351351
tensor_shape.append((min_max_opt["min"], min_max_opt["max"]))
352352
elif isinstance(tensor, (torch.Tensor, FakeTensor)):
353353
for dimension in tensor.shape:

0 commit comments

Comments
 (0)