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

Method call_module

exir/pass_base.py:404–410  ·  view source on GitHub ↗
(
            self,
            target: torch.fx.node.Target,
            args: Tuple[Argument, ...],
            kwargs: Dict[str, Argument],
        )

Source from the content-addressed store, hash-verified

402 return super().get_attr(target, args, kwargs)
403
404 def call_module(
405 self,
406 target: torch.fx.node.Target,
407 args: Tuple[Argument, ...],
408 kwargs: Dict[str, Argument],
409 ) -> None:
410 raise ExportPassBaseError("call_module is not supported.")
411
412 def call_method( # pyre-fixme[14]
413 self, target: str, args: Tuple[Argument, ...], kwargs: Dict[str, Argument]

Callers

nothing calls this directly

Calls 1

ExportPassBaseErrorClass · 0.85

Tested by

no test coverage detected