1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
//===- Quant.cpp - C Interface for Quant dialect --------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir-c/Dialect/Quant.h"
#include "mlir/CAPI/Registration.h"
#include "mlir/Dialect/Quant/QuantOps.h"
#include "mlir/Dialect/Quant/QuantTypes.h"
using namespace mlir;
MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(quant, quant, quant::QuantizationDialect)
//===---------------------------------------------------------------------===//
// QuantizedType
//===---------------------------------------------------------------------===//
bool mlirTypeIsAQuantizedType(MlirType type) {
return isa<quant::QuantizedType>(unwrap(type));
}
unsigned mlirQuantizedTypeGetSignedFlag() {
return quant::QuantizationFlags::Signed;
}
int64_t mlirQuantizedTypeGetDefaultMinimumForInteger(bool isSigned,
unsigned integralWidth) {
return quant::QuantizedType::getDefaultMinimumForInteger(isSigned,
integralWidth);
}
int64_t mlirQuantizedTypeGetDefaultMaximumForInteger(bool isSigned,
unsigned integralWidth) {
return quant::QuantizedType::getDefaultMaximumForInteger(isSigned,
integralWidth);
}
MlirType mlirQuantizedTypeGetExpressedType(MlirType type) {
return wrap(cast<quant::QuantizedType>(unwrap(type)).getExpressedType());
}
unsigned mlirQuantizedTypeGetFlags(MlirType type) {
return cast<quant::QuantizedType>(unwrap(type)).getFlags();
}
bool mlirQuantizedTypeIsSigned(MlirType type) {
return cast<quant::QuantizedType>(unwrap(type)).isSigned();
}
MlirType mlirQuantizedTypeGetStorageType(MlirType type) {
return wrap(cast<quant::QuantizedType>(unwrap(type)).getStorageType());
}
int64_t mlirQuantizedTypeGetStorageTypeMin(MlirType type) {
return cast<quant::QuantizedType>(unwrap(type)).getStorageTypeMin();
}
int64_t mlirQuantizedTypeGetStorageTypeMax(MlirType type) {
return cast<quant::QuantizedType>(unwrap(type)).getStorageTypeMax();
}
unsigned mlirQuantizedTypeGetStorageTypeIntegralWidth(MlirType type) {
return cast<quant::QuantizedType>(unwrap(type)).getStorageTypeIntegralWidth();
}
bool mlirQuantizedTypeIsCompatibleExpressedType(MlirType type,
MlirType candidate) {
return cast<quant::QuantizedType>(unwrap(type))
.isCompatibleExpressedType(unwrap(candidate));
}
MlirType mlirQuantizedTypeGetQuantizedElementType(MlirType type) {
return wrap(quant::QuantizedType::getQuantizedElementType(unwrap(type)));
}
MlirType mlirQuantizedTypeCastFromStorageType(MlirType type,
MlirType candidate) {
return wrap(cast<quant::QuantizedType>(unwrap(type))
.castFromStorageType(unwrap(candidate)));
}
MlirType mlirQuantizedTypeCastToStorageType(MlirType type) {
return wrap(quant::QuantizedType::castToStorageType(
cast<quant::QuantizedType>(unwrap(type))));
}
MlirType mlirQuantizedTypeCastFromExpressedType(MlirType type,
MlirType candidate) {
return wrap(cast<quant::QuantizedType>(unwrap(type))
.castFromExpressedType(unwrap(candidate)));
}
MlirType mlirQuantizedTypeCastToExpressedType(MlirType type) {
return wrap(quant::QuantizedType::castToExpressedType(unwrap(type)));
}
MlirType mlirQuantizedTypeCastExpressedToStorageType(MlirType type,
MlirType candidate) {
return wrap(cast<quant::QuantizedType>(unwrap(type))
.castExpressedToStorageType(unwrap(candidate)));
}
//===---------------------------------------------------------------------===//
// AnyQuantizedType
//===---------------------------------------------------------------------===//
bool mlirTypeIsAAnyQuantizedType(MlirType type) {
return isa<quant::AnyQuantizedType>(unwrap(type));
}
MlirType mlirAnyQuantizedTypeGet(unsigned flags, MlirType storageType,
MlirType expressedType, int64_t storageTypeMin,
int64_t storageTypeMax) {
return wrap(quant::AnyQuantizedType::get(flags, unwrap(storageType),
unwrap(expressedType),
storageTypeMin, storageTypeMax));
}
//===---------------------------------------------------------------------===//
// UniformQuantizedType
//===---------------------------------------------------------------------===//
bool mlirTypeIsAUniformQuantizedType(MlirType type) {
return isa<quant::UniformQuantizedType>(unwrap(type));
}
MlirType mlirUniformQuantizedTypeGet(unsigned flags, MlirType storageType,
MlirType expressedType, double scale,
int64_t zeroPoint, int64_t storageTypeMin,
int64_t storageTypeMax) {
return wrap(quant::UniformQuantizedType::get(
flags, unwrap(storageType), unwrap(expressedType), scale, zeroPoint,
storageTypeMin, storageTypeMax));
}
double mlirUniformQuantizedTypeGetScale(MlirType type) {
return cast<quant::UniformQuantizedType>(unwrap(type)).getScale();
}
int64_t mlirUniformQuantizedTypeGetZeroPoint(MlirType type) {
return cast<quant::UniformQuantizedType>(unwrap(type)).getZeroPoint();
}
bool mlirUniformQuantizedTypeIsFixedPoint(MlirType type) {
return cast<quant::UniformQuantizedType>(unwrap(type)).isFixedPoint();
}
//===---------------------------------------------------------------------===//
// UniformQuantizedPerAxisType
//===---------------------------------------------------------------------===//
bool mlirTypeIsAUniformQuantizedPerAxisType(MlirType type) {
return isa<quant::UniformQuantizedPerAxisType>(unwrap(type));
}
MlirType mlirUniformQuantizedPerAxisTypeGet(
unsigned flags, MlirType storageType, MlirType expressedType,
intptr_t nDims, double *scales, int64_t *zeroPoints,
int32_t quantizedDimension, int64_t storageTypeMin,
int64_t storageTypeMax) {
return wrap(quant::UniformQuantizedPerAxisType::get(
flags, unwrap(storageType), unwrap(expressedType),
llvm::ArrayRef(scales, nDims), llvm::ArrayRef(zeroPoints, nDims),
quantizedDimension, storageTypeMin, storageTypeMax));
}
intptr_t mlirUniformQuantizedPerAxisTypeGetNumDims(MlirType type) {
return cast<quant::UniformQuantizedPerAxisType>(unwrap(type))
.getScales()
.size();
}
double mlirUniformQuantizedPerAxisTypeGetScale(MlirType type, intptr_t pos) {
return cast<quant::UniformQuantizedPerAxisType>(unwrap(type))
.getScales()[pos];
}
int64_t mlirUniformQuantizedPerAxisTypeGetZeroPoint(MlirType type,
intptr_t pos) {
return cast<quant::UniformQuantizedPerAxisType>(unwrap(type))
.getZeroPoints()[pos];
}
int32_t mlirUniformQuantizedPerAxisTypeGetQuantizedDimension(MlirType type) {
return cast<quant::UniformQuantizedPerAxisType>(unwrap(type))
.getQuantizedDimension();
}
bool mlirUniformQuantizedPerAxisTypeIsFixedPoint(MlirType type) {
return cast<quant::UniformQuantizedPerAxisType>(unwrap(type)).isFixedPoint();
}
//===---------------------------------------------------------------------===//
// CalibratedQuantizedType
//===---------------------------------------------------------------------===//
bool mlirTypeIsACalibratedQuantizedType(MlirType type) {
return isa<quant::CalibratedQuantizedType>(unwrap(type));
}
MlirType mlirCalibratedQuantizedTypeGet(MlirType expressedType, double min,
double max) {
return wrap(
quant::CalibratedQuantizedType::get(unwrap(expressedType), min, max));
}
double mlirCalibratedQuantizedTypeGetMin(MlirType type) {
return cast<quant::CalibratedQuantizedType>(unwrap(type)).getMin();
}
double mlirCalibratedQuantizedTypeGetMax(MlirType type) {
return cast<quant::CalibratedQuantizedType>(unwrap(type)).getMax();
}
|