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 6cd890f commit 74777cbCopy full SHA for 74777cb
py/torch_tensorrt/dynamo/tools/opset_coverage.py
@@ -147,14 +147,14 @@ def opset_coverage(
147
148
if registry_data is not None:
149
if (
150
- DYNAMO_REGISTRY_NAME in registry_data
151
- and registry_data[DYNAMO_REGISTRY_NAME] >= 1
+ DYNAMO_REGISTRY_NAME in registry_data
+ and registry_data[DYNAMO_REGISTRY_NAME] >= 1
152
):
153
status = SupportStatus.CONVERTED
154
support_count += 1
155
elif (
156
- FX_REGISTRY_NAME in registry_data
157
- and registry_data[FX_REGISTRY_NAME] >= 1
+ FX_REGISTRY_NAME in registry_data
+ and registry_data[FX_REGISTRY_NAME] >= 1
158
) or (
159
FX_LEGACY_REGISTRY_NAME in registry_data
160
and registry_data[FX_LEGACY_REGISTRY_NAME] >= 1
0 commit comments