Searched refs:aot_export_module (Results 1 – 8 of 8) sorted by relevance
/external/pytorch/test/higher_order_ops/ |
D | test_with_effects.py | 19 from torch._functorch.aot_autograd import aot_export_module 109 gm, gs = aot_export_module(M(), inputs, trace_joint=False) 125 gm, gs = aot_export_module(M(), inputs, trace_joint=False) 150 gm, gs = aot_export_module(M(), (torch.ones(2, 3),), trace_joint=False) 183 gm, gs = aot_export_module(M(), inputs, trace_joint=False) 217 gm, gs = aot_export_module(M(), inputs, trace_joint=False)
|
/external/pytorch/test/functorch/ |
D | test_aotdispatch.py | 44 from torch._functorch.aot_autograd import aot_export_joint_simple, aot_export_module 4042 aot_export_module(mod, [inp], trace_joint=False, pre_dispatch=True) 4044 gm, _ = aot_export_module(mod, [inp], trace_joint=False, pre_dispatch=False) 4088 gm, _ = aot_export_module(mod, [inp], trace_joint=False, pre_dispatch=True) 4113 gm, _ = aot_export_module(mod, [inp], trace_joint=False, pre_dispatch=True) 4135 gm, _ = aot_export_module(mod, [inp], trace_joint=False, pre_dispatch=True) 4157 gm, _ = aot_export_module(mod, [inp], trace_joint=False, pre_dispatch=True) 4184 gm, _ = aot_export_module(mod, [inp], trace_joint=False, pre_dispatch=True) 4208 gm, _ = aot_export_module(mod, [inp], trace_joint=False, pre_dispatch=True) 4234 gm, graph_sig = aot_export_module( [all …]
|
/external/pytorch/test/export/ |
D | test_experimental.py | 10 from torch._functorch.aot_autograd import aot_export_module
|
D | test_torchbind.py | 9 from torch._functorch.aot_autograd import aot_export_module 961 gm = aot_export_module(mod, (fake_tq1, fake_x), trace_joint=False)[0]
|
/external/pytorch/torch/export/ |
D | exported_program.py | 298 from torch._functorch.aot_autograd import aot_export_module 410 gm, graph_signature = aot_export_module(
|
D | _trace.py | 58 from torch._functorch.aot_autograd import aot_export_module 637 gm, graph_signature = transform(aot_export_module)(
|
/external/pytorch/torch/_inductor/ |
D | compile_fx.py | 34 from torch._functorch.aot_autograd import aot_export_module, make_boxed_func 1487 gm, graph_signature = aot_export_module(
|
/external/pytorch/torch/_functorch/ |
D | aot_autograd.py | 1110 def aot_export_module( function
|