Home
last modified time | relevance | path

Searched full:modulecontainerindex (Results 1 – 10 of 10) sorted by relevance

/external/pytorch/aten/src/ATen/core/
Dinterned_strings.h95 _(prim, ModuleContainerIndex) \
/external/pytorch/torch/csrc/jit/passes/
Dfreeze_module.cpp354 // Modules with prim::ModuleContainerIndex cannot be frozen because they in recordMutableAttrs()
357 n->kind() != prim::ModuleContainerIndex, in recordMutableAttrs()
358 "Freezing modules containing prim::ModuleContainerIndex is not supported"); in recordMutableAttrs()
/external/pytorch/torch/csrc/jit/python/
Dpython_sugared_value.cpp314 // Emit a prim::ModuleContainerIndex operator. This is needed because in getitem()
320 graph->create(prim::ModuleContainerIndex, {self_, idx})); in getitem()
361 // Emit a prim::ModuleContainerIndex operator. This is needed because in getitem()
367 graph->create(prim::ModuleContainerIndex, {self_, idx})); in getitem()
/external/pytorch/test/mobile/model_test/
Dmodel_ops.yaml399 prim::ModuleContainerIndex.list: 12
Dcoverage.yaml1079 prim::ModuleContainerIndex.list: 2
/external/pytorch/torch/csrc/jit/runtime/
Dregister_prim_ops_fulljit.cpp180 "prim::ModuleContainerIndex.dict(Any self, str ind) -> Any"),
Dregister_prim_ops.cpp3411 "prim::ModuleContainerIndex.list(Any self, int ind) -> Any"),
/external/pytorch/torch/csrc/jit/frontend/
Dsugared_value.cpp496 auto res = g.insert(prim::ModuleContainerIndex, {val, idx}, {}, loc); in getitem()
/external/pytorch/test/jit/
Dtest_freezing.py1554 "Freezing modules containing prim::ModuleContainerIndex is not supported",
1571 "Freezing modules containing prim::ModuleContainerIndex is not supported",
/external/pytorch/torch/csrc/jit/serialization/
Dpython_print.cpp895 case prim::ModuleContainerIndex: { in printNode()