MCPcopy Create free account
hub / github.com/pytorch/executorch / InternalError

Class InternalError

exir/error.py:35–43  ·  view source on GitHub ↗

Raised when an internal invariance is violated in EXIR stack. Should hint users to report a bug to dev and expose the original error message.

Source from the content-addressed store, hash-verified

33
34
35class InternalError(Exception):
36 """
37 Raised when an internal invariance is violated in EXIR stack.
38 Should hint users to report a bug to dev and expose the original
39 error message.
40 """
41
42 def __init__(self, message: str) -> None:
43 super().__init__(message)
44
45
46class ExportError(Exception):

Callers 15

print_programFunction · 0.90
verify_storage_reuseMethod · 0.90
dynamo_traceFunction · 0.90
run_nodeMethod · 0.90
call_functionMethod · 0.90
make_alloc_nodeFunction · 0.90
captureFunction · 0.90
_get_allocation_infoMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected