Home
last modified time | relevance | path

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

/external/pytorch/test/fx/
Dtest_pass_infra.py10 this_before_that_pass_constraint,
98 pm.add_constraint(this_before_that_pass_constraint(passes[-1], passes[0]))
167 this_before_that_pass_constraint(pass5, pass0),
168 this_before_that_pass_constraint(pass5, pass2),
169 this_before_that_pass_constraint(pass4, pass0),
170 this_before_that_pass_constraint(pass4, pass1),
171 this_before_that_pass_constraint(pass2, pass3),
172 this_before_that_pass_constraint(pass3, pass1),
180 this_before_that_pass_constraint(passes[0], passes[1]),
181 this_before_that_pass_constraint(passes[1], passes[2]),
[all …]
/external/pytorch/torch/fx/passes/tests/
Dtest_pass_manager.py7 this_before_that_pass_constraint,
22 pm.add_constraint(this_before_that_pass_constraint(passes[-1], passes[0]))
/external/pytorch/torch/fx/passes/
Dpass_manager.py133 def this_before_that_pass_constraint(this: Callable, that: Callable): function
/external/pytorch/torch/fx/passes/infra/
Dpass_manager.py117 def this_before_that_pass_constraint(this: Callable, that: Callable) -> Callable: function