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 be9aa67 commit 7627cbbCopy full SHA for 7627cbb
py/torch_tensorrt/dynamo/tools/opset_coverage.py
@@ -152,6 +152,8 @@ def opset_coverage(
152
elif (FX_REGISTRY_NAME in registry_data and registry_data[FX_REGISTRY_NAME] >= 1) or (FX_LEGACY_REGISTRY_NAME in registry_data and registry_data[FX_LEGACY_REGISTRY_NAME] >= 1):
153
status = SupportStatus.LEGACY_CONVERTED
154
legacy_count += 1
155
+ else:
156
+ raise Exception(f"Op belongs to unknown registry: {registry_data}")
157
158
support_status[target_str] = {
159
"schema": f"{target_str.split('.')[0]}.{opset_schemas[target_str]}",
0 commit comments