Home
last modified time | relevance | path

Searched refs:_make_graph_module (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/pytorch/test/fx/
H A Dtest_lazy_graph_module.py13 _make_graph_module,
223 gm1 = _make_graph_module(
229 gm2 = _make_graph_module(gm, gm.graph)
/aosp_15_r20/external/pytorch/torch/fx/
H A Dgraph_module.py197 from ._lazy_graph_module import _make_graph_module
198 …gm = _make_graph_module(com, graph, class_name=graphmodule_cls_name, graph_module_cls=graph_module…
864 from ._lazy_graph_module import _make_graph_module
865 res = _make_graph_module(self, self.graph)
H A Dinterpreter.py3 from ._lazy_graph_module import _make_graph_module
520 return _make_graph_module(self.module, self.new_graph)
H A D_lazy_graph_module.py57 def _make_graph_module(*args, graph_module_cls=None, **kwargs): function
H A D_symbolic_trace.py34 from ._lazy_graph_module import _make_graph_module
1285 return _make_graph_module(tracer.root, graph, name)
/aosp_15_r20/external/pytorch/torch/_functorch/
H A Dpartitioners.py379 fwd_module = fx._lazy_graph_module._make_graph_module(joint_module, fwd_graph)
380 bwd_module = fx._lazy_graph_module._make_graph_module(joint_module, bwd_graph)
/aosp_15_r20/external/pytorch/torch/_dynamo/
H A Doutput_graph.py28 from torch.fx._lazy_graph_module import _make_graph_module # type: ignore[attr-defined]
1331 gm = _make_graph_module(root, self.graph)
/aosp_15_r20/external/pytorch/torch/fx/experimental/
H A Dproxy_tensor.py1163 return fx._lazy_graph_module._make_graph_module(tracer.root, graph, name)