Searched refs:lazy_type (Results 1 – 3 of 3) sorted by relevance
/external/pytorch/torchgen/dest/ |
D | lazy_ir.py | 51 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 …]
|
D | lazy_ts_lowering.py | 11 if isinstance(arg.lazy_type, OptionalCType):
|
/external/pytorch/torchgen/api/ |
D | lazy.py | 236 self.is_lazy_value = isValueType(self.lazy_type, properties) 239 def lazy_type(self) -> CType: member in LazyArgument
|