Searched refs:stack_module_state (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/pytorch/functorch/examples/ensembling/ |
H A D | parallel_train.py | 7 from torch.func import functional_call, grad_and_value, stack_module_state, vmap 118 params, _ = stack_module_state(models)
|
/aosp_15_r20/external/pytorch/docs/source/ |
H A D | func.migrating.rst | 157 Please use :func:`torch.func.stack_module_state` instead of 159 :func:`torch.func.stack_module_state` returns two dictionaries, one of stacked parameters, and 190 params, buffers = torch.func.stack_module_state(models)
|
H A D | func.api.rst | 69 stack_module_state
|
/aosp_15_r20/external/pytorch/torch/func/ |
H A D | __init__.py | 11 from torch._functorch.functional_call import functional_call, stack_module_state
|
/aosp_15_r20/external/pytorch/torch/_functorch/ |
H A D | functional_call.py | 159 def stack_module_state( function
|
/aosp_15_r20/external/pytorch/test/functorch/ |
H A D | test_eager_transforms.py | 52 from torch.func import functional_call, linearize, stack_module_state 3949 _ = stack_module_state(models) 3956 params, buffers = stack_module_state(models) 3968 params, buffers = stack_module_state(models) 3978 _ = stack_module_state(models) 3986 _ = stack_module_state(models) 3993 _ = stack_module_state(models) 4426 return stack_module_state(models)[0] 4527 return stack_module_state(models)[0]
|