Home
last modified time | relevance | path

Searched refs:sequential_split (Results 1 – 4 of 4) sorted by relevance

/external/pytorch/torch/_export/passes/
Dreplace_set_grad_with_hop_pass.py6 from ..utils import node_inline_, nodes_filter, nodes_first, nodes_map, sequential_split
88 new_gm = sequential_split(gm, _is_set_grad_enabled_node)
Dreplace_autocast_with_hop_pass.py7 from ..utils import node_inline_, nodes_filter, nodes_first, sequential_split
135 return sequential_split(gm, node_call_back)
/external/pytorch/test/export/
Dtest_passes.py35 sequential_split,
869 new_gm = sequential_split(gm, _is_set_grad_enabled_node)
879 new_gm = sequential_split(gm, _is_set_grad_enabled_node)
1087 new_gm = sequential_split(gm, _is_set_grad_enabled_node)
/external/pytorch/torch/_export/
Dutils.py485 def sequential_split(gm: torch.fx.GraphModule, node_call_back) -> torch.fx.GraphModule: function