llvm-project/mlir/lib/Dialect/Math/Transforms/PolynomialApproximation.cpp
Eugene Zhulenev ce976d2db3 [mlir] Add polynomial approximation for math::LogOp (using builders API)
Replace math::LogOp with an approximations from the the Julien Pommier's SSE math library

Link: http://gruntthepeon.free.fr/ssemath

Reviewed By: asaadaldien

Differential Revision: https://reviews.llvm.org/D97304
2021-02-24 07:50:25 -08:00

362 lines
14 KiB
C++

//===- PolynomialApproximation.cpp - Approximate math operations ----------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This file implements expansion of math operations to fast approximations
// that do not rely on any of the library functions.
//
//===----------------------------------------------------------------------===//
#include "mlir/Dialect/LLVMIR/LLVMDialect.h"
#include "mlir/Dialect/LLVMIR/LLVMTypes.h"
#include "mlir/Dialect/Math/IR/Math.h"
#include "mlir/Dialect/Math/Transforms/Passes.h"
#include "mlir/Dialect/Vector/VectorOps.h"
#include "mlir/IR/Builders.h"
#include "mlir/IR/ImplicitLocOpBuilder.h"
#include "mlir/Transforms/DialectConversion.h"
#include "mlir/Transforms/GreedyPatternRewriteDriver.h"
using namespace mlir;
using namespace mlir::vector;
using TypePredicate = llvm::function_ref<bool(Type)>;
static bool isF32(Type type) { return type.isF32(); }
// Returns vector width if the element type is matching the predicate (scalars
// that do match the predicate have width equal to `1`).
static Optional<int> vectorWidth(Type type, TypePredicate pred) {
// If the type matches the predicate then its width is `1`.
if (pred(type))
return 1;
// Otherwise check if the type is a vector type.
auto vectorType = type.dyn_cast<VectorType>();
if (vectorType && pred(vectorType.getElementType())) {
assert(vectorType.getRank() == 1 && "only 1d vectors are supported");
return vectorType.getDimSize(0);
}
return llvm::None;
}
// Returns vector width of the type. If the type is a scalar returns `1`.
static int vectorWidth(Type type) {
auto vectorType = type.dyn_cast<VectorType>();
return vectorType ? vectorType.getDimSize(0) : 1;
}
// Returns vector element type. If the type is a scalar returns the argument.
static Type elementType(Type type) {
auto vectorType = type.dyn_cast<VectorType>();
return vectorType ? vectorType.getElementType() : type;
}
//----------------------------------------------------------------------------//
// Broadcast scalar types and values into vector types and values.
//----------------------------------------------------------------------------//
// Broadcasts scalar type into vector type (iff width is greater then 1).
static Type broadcast(Type type, int width) {
assert(!type.isa<VectorType>() && "must be scalar type");
return width > 1 ? VectorType::get({width}, type) : type;
}
// Broadcasts scalar value into vector (iff width is greater then 1).
static Value broadcast(ImplicitLocOpBuilder &builder, Value value, int width) {
assert(!value.getType().isa<VectorType>() && "must be scalar value");
auto type = broadcast(value.getType(), width);
return width > 1 ? builder.create<BroadcastOp>(type, value) : value;
}
//----------------------------------------------------------------------------//
// Helper functions to create constants.
//----------------------------------------------------------------------------//
static Value f32Cst(ImplicitLocOpBuilder &builder, float value) {
return builder.create<ConstantOp>(builder.getF32Type(),
builder.getF32FloatAttr(value));
}
static Value i32Cst(ImplicitLocOpBuilder &builder, int32_t value) {
return builder.create<ConstantOp>(builder.getI32Type(),
builder.getI32IntegerAttr(value));
}
static Value f32FromBits(ImplicitLocOpBuilder &builder, uint32_t bits) {
Value i32Value = i32Cst(builder, static_cast<int32_t>(bits));
return builder.create<LLVM::BitcastOp>(builder.getF32Type(), i32Value);
}
//----------------------------------------------------------------------------//
// Helper functions to build math functions approximations.
//----------------------------------------------------------------------------//
static Value min(ImplicitLocOpBuilder &builder, Value a, Value b) {
return builder.create<SelectOp>(
builder.create<CmpFOp>(CmpFPredicate::OLT, a, b), a, b);
}
static Value max(ImplicitLocOpBuilder &builder, Value a, Value b) {
return builder.create<SelectOp>(
builder.create<CmpFOp>(CmpFPredicate::OGT, a, b), a, b);
}
static Value clamp(ImplicitLocOpBuilder &builder, Value value, Value lowerBound,
Value upperBound) {
return max(builder, min(builder, value, upperBound), lowerBound);
}
// Decomposes given floating point value `arg` into a normalized fraction and
// an integral power of two (see std::frexp). Returned values have float type.
static std::pair<Value, Value> frexp(ImplicitLocOpBuilder &builder, Value arg,
bool is_positive = false) {
assert(isF32(elementType(arg.getType())) && "argument must be f32 type");
int width = vectorWidth(arg.getType());
auto bcast = [&](Value value) -> Value {
return broadcast(builder, value, width);
};
auto i32 = builder.getIntegerType(32);
auto i32Vec = broadcast(i32, width);
auto f32Vec = broadcast(builder.getF32Type(), width);
Value cst126f = f32Cst(builder, 126.0f);
Value cstHalf = f32Cst(builder, 0.5f);
Value cstInvMantMask = f32FromBits(builder, ~0x7f800000u);
// Bitcast to i32 for bitwise operations.
Value i32Half = builder.create<LLVM::BitcastOp>(i32, cstHalf);
Value i32InvMantMask = builder.create<LLVM::BitcastOp>(i32, cstInvMantMask);
Value i32Arg = builder.create<LLVM::BitcastOp>(i32Vec, arg);
// Compute normalized fraction.
Value tmp0 = builder.create<LLVM::AndOp>(i32Arg, bcast(i32InvMantMask));
Value tmp1 = builder.create<LLVM::OrOp>(tmp0, bcast(i32Half));
Value normalizedFraction = builder.create<LLVM::BitcastOp>(f32Vec, tmp1);
// Compute exponent.
Value arg0 = is_positive ? arg : builder.create<AbsFOp>(arg);
Value biasedExponentBits = builder.create<UnsignedShiftRightOp>(
builder.create<LLVM::BitcastOp>(i32Vec, arg0),
bcast(i32Cst(builder, 23)));
Value biasedExponent = builder.create<SIToFPOp>(f32Vec, biasedExponentBits);
Value exponent = builder.create<SubFOp>(biasedExponent, bcast(cst126f));
return {normalizedFraction, exponent};
}
//----------------------------------------------------------------------------//
// TanhOp approximation.
//----------------------------------------------------------------------------//
namespace {
struct TanhApproximation : public OpRewritePattern<math::TanhOp> {
public:
using OpRewritePattern::OpRewritePattern;
LogicalResult matchAndRewrite(math::TanhOp op,
PatternRewriter &rewriter) const final;
};
} // namespace
LogicalResult
TanhApproximation::matchAndRewrite(math::TanhOp op,
PatternRewriter &rewriter) const {
auto width = vectorWidth(op.operand().getType(), isF32);
if (!width.hasValue())
return rewriter.notifyMatchFailure(op, "unsupported operand type");
ImplicitLocOpBuilder builder(op->getLoc(), rewriter);
auto bcast = [&](Value value) -> Value {
return broadcast(builder, value, *width);
};
// Clamp operand into [plusClamp, minusClamp] range.
Value minusClamp = bcast(f32Cst(builder, -7.9053111076354980f));
Value plusClamp = bcast(f32Cst(builder, 7.90531110763549805f));
Value x = clamp(builder, op.operand(), minusClamp, plusClamp);
// Mask for tiny values that are approximated with `operand`.
Value tiny = bcast(f32Cst(builder, 0.0004f));
Value tinyMask = builder.create<CmpFOp>(
CmpFPredicate::OLT, builder.create<AbsFOp>(op.operand()), tiny);
// The monomial coefficients of the numerator polynomial (odd).
Value alpha1 = bcast(f32Cst(builder, 4.89352455891786e-03f));
Value alpha3 = bcast(f32Cst(builder, 6.37261928875436e-04f));
Value alpha5 = bcast(f32Cst(builder, 1.48572235717979e-05f));
Value alpha7 = bcast(f32Cst(builder, 5.12229709037114e-08f));
Value alpha9 = bcast(f32Cst(builder, -8.60467152213735e-11f));
Value alpha11 = bcast(f32Cst(builder, 2.00018790482477e-13f));
Value alpha13 = bcast(f32Cst(builder, -2.76076847742355e-16f));
// The monomial coefficients of the denominator polynomial (even).
Value beta0 = bcast(f32Cst(builder, 4.89352518554385e-03f));
Value beta2 = bcast(f32Cst(builder, 2.26843463243900e-03f));
Value beta4 = bcast(f32Cst(builder, 1.18534705686654e-04f));
Value beta6 = bcast(f32Cst(builder, 1.19825839466702e-06f));
// Since the polynomials are odd/even, we need x^2.
Value x2 = builder.create<MulFOp>(x, x);
// Evaluate the numerator polynomial p.
Value p = builder.create<FmaFOp>(x2, alpha13, alpha11);
p = builder.create<FmaFOp>(x2, p, alpha9);
p = builder.create<FmaFOp>(x2, p, alpha7);
p = builder.create<FmaFOp>(x2, p, alpha5);
p = builder.create<FmaFOp>(x2, p, alpha3);
p = builder.create<FmaFOp>(x2, p, alpha1);
p = builder.create<MulFOp>(x, p);
// Evaluate the denominator polynomial q.
Value q = builder.create<FmaFOp>(x2, beta6, beta4);
q = builder.create<FmaFOp>(x2, q, beta2);
q = builder.create<FmaFOp>(x2, q, beta0);
// Divide the numerator by the denominator.
Value res =
builder.create<SelectOp>(tinyMask, x, builder.create<DivFOp>(p, q));
rewriter.replaceOp(op, res);
return success();
}
//----------------------------------------------------------------------------//
// LogOp approximation.
//----------------------------------------------------------------------------//
namespace {
// This approximations comes from the Julien Pommier's SSE math library.
// Link: http://gruntthepeon.free.fr/ssemath
struct LogApproximation : public OpRewritePattern<math::LogOp> {
public:
using OpRewritePattern::OpRewritePattern;
LogicalResult matchAndRewrite(math::LogOp op,
PatternRewriter &rewriter) const final;
};
} // namespace
#define LN2_VALUE \
0.693147180559945309417232121458176568075500134360255254120680009493393621L
LogicalResult
LogApproximation::matchAndRewrite(math::LogOp op,
PatternRewriter &rewriter) const {
auto width = vectorWidth(op.operand().getType(), isF32);
if (!width.hasValue())
return rewriter.notifyMatchFailure(op, "unsupported operand type");
ImplicitLocOpBuilder builder(op->getLoc(), rewriter);
auto bcast = [&](Value value) -> Value {
return broadcast(builder, value, *width);
};
Value cstZero = bcast(f32Cst(builder, 0.0f));
Value cstOne = bcast(f32Cst(builder, 1.0f));
Value cstNegHalf = bcast(f32Cst(builder, -0.5f));
// The smallest non denormalized float number.
Value cstMinNormPos = bcast(f32FromBits(builder, 0x00800000u));
Value cstMinusInf = bcast(f32FromBits(builder, 0xff800000u));
Value cstPosInf = bcast(f32FromBits(builder, 0x7f800000u));
Value cstNan = bcast(f32FromBits(builder, 0x7fc00000));
// Polynomial coefficients.
Value cstCephesSQRTHF = bcast(f32Cst(builder, 0.707106781186547524f));
Value cstCephesLogP0 = bcast(f32Cst(builder, 7.0376836292E-2f));
Value cstCephesLogP1 = bcast(f32Cst(builder, -1.1514610310E-1f));
Value cstCephesLogP2 = bcast(f32Cst(builder, 1.1676998740E-1f));
Value cstCephesLogP3 = bcast(f32Cst(builder, -1.2420140846E-1f));
Value cstCephesLogP4 = bcast(f32Cst(builder, +1.4249322787E-1f));
Value cstCephesLogP5 = bcast(f32Cst(builder, -1.6668057665E-1f));
Value cstCephesLogP6 = bcast(f32Cst(builder, +2.0000714765E-1f));
Value cstCephesLogP7 = bcast(f32Cst(builder, -2.4999993993E-1f));
Value cstCephesLogP8 = bcast(f32Cst(builder, +3.3333331174E-1f));
Value x = op.operand();
// Truncate input values to the minimum positive normal.
x = max(builder, x, cstMinNormPos);
// Extract significant in the range [0.5,1) and exponent.
std::pair<Value, Value> pair = frexp(builder, x, /*is_positive=*/true);
x = pair.first;
Value e = pair.second;
// Shift the inputs from the range [0.5,1) to [sqrt(1/2), sqrt(2)) and shift
// by -1.0. The values are then centered around 0, which improves the
// stability of the polynomial evaluation:
//
// if( x < SQRTHF ) {
// e -= 1;
// x = x + x - 1.0;
// } else { x = x - 1.0; }
Value mask = builder.create<CmpFOp>(CmpFPredicate::OLT, x, cstCephesSQRTHF);
Value tmp = builder.create<SelectOp>(mask, x, cstZero);
x = builder.create<SubFOp>(x, cstOne);
e = builder.create<SubFOp>(e,
builder.create<SelectOp>(mask, cstOne, cstZero));
x = builder.create<AddFOp>(x, tmp);
Value x2 = builder.create<MulFOp>(x, x);
Value x3 = builder.create<MulFOp>(x2, x);
// Evaluate the polynomial approximant of degree 8 in three parts.
Value y0, y1, y2;
y0 = builder.create<FmaFOp>(cstCephesLogP0, x, cstCephesLogP1);
y1 = builder.create<FmaFOp>(cstCephesLogP3, x, cstCephesLogP4);
y2 = builder.create<FmaFOp>(cstCephesLogP6, x, cstCephesLogP7);
y0 = builder.create<FmaFOp>(y0, x, cstCephesLogP2);
y1 = builder.create<FmaFOp>(y1, x, cstCephesLogP5);
y2 = builder.create<FmaFOp>(y2, x, cstCephesLogP8);
y0 = builder.create<FmaFOp>(y0, x3, y1);
y0 = builder.create<FmaFOp>(y0, x3, y2);
y0 = builder.create<MulFOp>(y0, x3);
y0 = builder.create<FmaFOp>(cstNegHalf, x2, y0);
x = builder.create<AddFOp>(x, y0);
Value cstLn2 = bcast(f32Cst(builder, static_cast<float>(LN2_VALUE)));
x = builder.create<FmaFOp>(e, cstLn2, x);
Value invalidMask =
builder.create<CmpFOp>(CmpFPredicate::ULT, op.operand(), cstZero);
Value zeroMask =
builder.create<CmpFOp>(CmpFPredicate::OEQ, op.operand(), cstZero);
Value posInfMask =
builder.create<CmpFOp>(CmpFPredicate::OEQ, op.operand(), cstPosInf);
// Filter out invalid values:
// • x == 0 -> -INF
// • x < 0 -> NAN
// • x == +INF -> +INF
Value aproximation = builder.create<SelectOp>(
zeroMask, cstMinusInf,
builder.create<SelectOp>(
invalidMask, cstNan,
builder.create<SelectOp>(posInfMask, cstPosInf, x)));
rewriter.replaceOp(op, aproximation);
return success();
}
//----------------------------------------------------------------------------//
void mlir::populateMathPolynomialApproximationPatterns(
OwningRewritePatternList &patterns, MLIRContext *ctx) {
patterns.insert<TanhApproximation, LogApproximation>(ctx);
}