mirror of https://github.com/llvm/torch-mlir
g++ build fix (#2778)
Introduced in 704cfdaf08
of @wu-s-john
g++ compiler error:
Pooling.cpp:177:13: error: explicit specialization in non-namespace
scope ‘class
Design looks good, g++ is just freaking out for no good reason.
Un-nesting the template classes fixes the error.
We don't have g++ CI. This hopefully happens infrequently enough that we
can just fix manually. My service to those folks who really like
building with g++... :)
pull/2776/head
snapshot-20240120.1089
parent
2f4924015d
commit
50ac3b1912
|
@ -72,7 +72,8 @@ checkAndGetPoolingParameters(OpTy op, ConversionPatternRewriter &rewriter,
|
||||||
return success();
|
return success();
|
||||||
}
|
}
|
||||||
|
|
||||||
static Value computeOutputTensor(Operation *op, ConversionPatternRewriter &rewriter,
|
static Value
|
||||||
|
computeOutputTensor(Operation *op, ConversionPatternRewriter &rewriter,
|
||||||
Value self, int64_t dimensionality, bool ceilMode,
|
Value self, int64_t dimensionality, bool ceilMode,
|
||||||
SmallVectorImpl<int64_t> &strideInts,
|
SmallVectorImpl<int64_t> &strideInts,
|
||||||
SmallVectorImpl<int64_t> &paddingInts,
|
SmallVectorImpl<int64_t> &paddingInts,
|
||||||
|
@ -167,21 +168,26 @@ static LogicalResult createPoolingOp(
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
template <typename T> struct DimensionTraits {};
|
||||||
|
|
||||||
|
template <> struct DimensionTraits<AtenMaxPool2dOp> {
|
||||||
|
static constexpr int64_t Dim = 2;
|
||||||
|
// unused const variable warning suppression:
|
||||||
|
static_assert(Dim == Dim);
|
||||||
|
};
|
||||||
|
|
||||||
|
template <> struct DimensionTraits<AtenMaxPool3dOp> {
|
||||||
|
static constexpr int64_t Dim = 3;
|
||||||
|
// unused const variable warning suppression:
|
||||||
|
static_assert(Dim == Dim);
|
||||||
|
};
|
||||||
|
|
||||||
template <typename OpTy>
|
template <typename OpTy>
|
||||||
class ConvertAtenMaxPoolOp : public OpConversionPattern<OpTy> {
|
class ConvertAtenMaxPoolOp : public OpConversionPattern<OpTy> {
|
||||||
using OpConversionPattern<OpTy>::OpConversionPattern;
|
using OpConversionPattern<OpTy>::OpConversionPattern;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
template <typename T> struct DimensionTraits;
|
|
||||||
|
|
||||||
template <> struct DimensionTraits<AtenMaxPool2dOp> {
|
|
||||||
static const int64_t Dim = 2;
|
|
||||||
};
|
|
||||||
|
|
||||||
template <> struct DimensionTraits<AtenMaxPool3dOp> {
|
|
||||||
static const int64_t Dim = 3;
|
|
||||||
};
|
|
||||||
|
|
||||||
static const int64_t Dim = DimensionTraits<OpTy>::Dim;
|
static const int64_t Dim = DimensionTraits<OpTy>::Dim;
|
||||||
|
|
||||||
LogicalResult createPoolingMax3D(AtenMaxPool3dOp &op,
|
LogicalResult createPoolingMax3D(AtenMaxPool3dOp &op,
|
||||||
|
@ -327,9 +333,9 @@ public:
|
||||||
rewriter.replaceOpWithNewOp<tensor::CastOp>(op, newResultType, maxPool2d);
|
rewriter.replaceOpWithNewOp<tensor::CastOp>(op, newResultType, maxPool2d);
|
||||||
return success();
|
return success();
|
||||||
} else {
|
} else {
|
||||||
return createPoolingMax3D(op, adaptor, rewriter,
|
return createPoolingMax3D(op, adaptor, rewriter, kernelSizeIntValues,
|
||||||
kernelSizeIntValues, strideInts, paddingInts,
|
strideInts, paddingInts, dilationInts,
|
||||||
dilationInts, ceilMode);
|
ceilMode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue