Searched refs:storageTypeMin (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/mlir/lib/Dialect/Quant/IR/ |
D | TypeDetail.h | 25 int64_t storageTypeMin, int64_t storageTypeMax) in QuantizedTypeStorage() 27 storageTypeMin(storageTypeMin), storageTypeMax(storageTypeMax) {} in QuantizedTypeStorage() 39 int64_t storageTypeMin; member 48 int64_t storageTypeMin, int64_t storageTypeMax) in KeyTy() 50 storageTypeMin(storageTypeMin), storageTypeMax(storageTypeMax) {} in KeyTy() 54 int64_t storageTypeMin; member 63 lhs.storageTypeMin == rhs.storageTypeMin && in genericIsEqual() 73 storageTypeMin, storageTypeMax); in getHashValue() 79 key.storageTypeMin, key.storageTypeMax) {} in AnyQuantizedTypeStorage() 98 int64_t zeroPoint, int64_t storageTypeMin, int64_t storageTypeMax) in KeyTy() [all …]
|
D | QuantTypes.cpp | 33 int64_t storageTypeMin, int64_t storageTypeMax) { in verifyConstructionInvariants() argument 53 if (storageTypeMax - storageTypeMin <= 0 || in verifyConstructionInvariants() 54 storageTypeMin < defaultIntegerMin || in verifyConstructionInvariants() 57 << storageTypeMin << ":" << storageTypeMax << ")"; in verifyConstructionInvariants() 67 return static_cast<ImplType *>(impl)->storageTypeMin; in getStorageTypeMin() 205 int64_t storageTypeMin, in get() argument 208 storageTypeMin, storageTypeMax); in get() 213 int64_t storageTypeMin, in getChecked() argument 217 storageTypeMin, storageTypeMax); in getChecked() 222 int64_t storageTypeMin, int64_t storageTypeMax) { in verifyConstructionInvariants() argument [all …]
|
D | TypeParser.cpp | 65 int64_t &storageTypeMin, in parseStorageRange() argument 72 storageTypeMin = defaultIntegerMin; in parseStorageRange() 79 if (parser.parseInteger(storageTypeMin) || parser.parseColon() || in parseStorageRange() 83 if (storageTypeMin < defaultIntegerMin) { in parseStorageRange() 85 << storageTypeMin; in parseStorageRange() 124 int64_t storageTypeMin; in parseAnyType() local 142 if (parseStorageRange(parser, storageType, isSigned, storageTypeMin, in parseAnyType() 159 storageTypeMin, storageTypeMax, loc); in parseAnyType() 198 int64_t storageTypeMin; in parseUniformType() local 221 if (parseStorageRange(parser, storageType, isSigned, storageTypeMin, in parseUniformType() [all …]
|
/external/llvm-project/mlir/include/mlir/Dialect/Quant/ |
D | QuantTypes.h | 62 Type expressedType, int64_t storageTypeMin, 206 Type expressedType, int64_t storageTypeMin, 212 Type expressedType, int64_t storageTypeMin, 218 Type expressedType, int64_t storageTypeMin, 264 int64_t zeroPoint, int64_t storageTypeMin, 271 int64_t zeroPoint, int64_t storageTypeMin, int64_t storageTypeMax, 278 int64_t zeroPoint, int64_t storageTypeMin, 322 int32_t quantizedDimension, int64_t storageTypeMin, 330 int32_t quantizedDimension, int64_t storageTypeMin, 339 int64_t storageTypeMin, int64_t storageTypeMax);
|
/external/llvm-project/mlir/test/Dialect/Quant/ |
D | parse-uniform.mlir | 5 // [signed] storageType, storageTypeMin, storageTypeMax, expressedType, scale, zeroPoint
|