Searched refs:storageTypeMax (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() 42 int64_t storageTypeMax; member 48 int64_t storageTypeMin, int64_t storageTypeMax) in KeyTy() 50 storageTypeMin(storageTypeMin), storageTypeMax(storageTypeMax) {} in KeyTy() 55 int64_t storageTypeMax; member 64 lhs.storageTypeMax == rhs.storageTypeMax; 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() 55 storageTypeMax > defaultIntegerMax) { in verifyConstructionInvariants() 57 << storageTypeMin << ":" << storageTypeMax << ")"; in verifyConstructionInvariants() 71 return static_cast<ImplType *>(impl)->storageTypeMax; in getStorageTypeMax() 206 int64_t storageTypeMax) { in get() argument 208 storageTypeMin, storageTypeMax); in get() 214 int64_t storageTypeMax, in getChecked() argument 217 storageTypeMin, storageTypeMax); in getChecked() 222 int64_t storageTypeMin, int64_t storageTypeMax) { in verifyConstructionInvariants() argument [all …]
|
D | TypeParser.cpp | 66 int64_t &storageTypeMax) { in parseStorageRange() argument 73 storageTypeMax = defaultIntegerMax; in parseStorageRange() 81 parser.parseInteger(storageTypeMax) || parser.parseGreater()) in parseStorageRange() 87 if (storageTypeMax > defaultIntegerMax) { in parseStorageRange() 89 << storageTypeMax; in parseStorageRange() 125 int64_t storageTypeMax; in parseAnyType() local 143 storageTypeMax)) { in parseAnyType() 159 storageTypeMin, storageTypeMax, loc); in parseAnyType() 199 int64_t storageTypeMax; in parseUniformType() local 222 storageTypeMax)) { in parseUniformType() [all …]
|
/external/llvm-project/mlir/include/mlir/Dialect/Quant/ |
D | QuantTypes.h | 63 int64_t storageTypeMax); 207 int64_t storageTypeMax); 213 int64_t storageTypeMax, Location location); 219 int64_t storageTypeMax); 265 int64_t storageTypeMax); 271 int64_t zeroPoint, int64_t storageTypeMin, int64_t storageTypeMax, 279 int64_t storageTypeMax); 323 int64_t storageTypeMax); 331 int64_t storageTypeMax, Location location); 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
|