Home
last modified time | relevance | path

Searched refs:lazy_type (Results 1 – 3 of 3) sorted by relevance

/external/pytorch/torchgen/dest/
Dlazy_ir.py51 if isValueType(arg.lazy_type):
52 if isinstance(arg.lazy_type, BaseCType):
55 elif arg.lazy_type.type is tensorListValueT:
60 elif isinstance(arg.lazy_type, OptionalCType):
88 elif isinstance(arg.lazy_type, VectorCType) and isinstance(
89 arg.lazy_type.elem, BaseCType
93 isinstance(arg.lazy_type, OptionalCType)
94 and isinstance(arg.lazy_type.elem, VectorCType)
95 and isinstance(arg.lazy_type.elem.elem, BaseCType)
205 if isinstance(arg.lazy_type, (BaseCType, VectorCType)):
[all …]
Dlazy_ts_lowering.py11 if isinstance(arg.lazy_type, OptionalCType):
/external/pytorch/torchgen/api/
Dlazy.py236 self.is_lazy_value = isValueType(self.lazy_type, properties)
239 def lazy_type(self) -> CType: member in LazyArgument