21 #define GEN_PASS_DEF_CONVERTMATHTOSPIRV
22 #include "mlir/Conversion/Passes.h.inc"
29 class ConvertMathToSPIRVPass
30 :
public impl::ConvertMathToSPIRVBase<ConvertMathToSPIRVPass> {
31 void runOnOperation()
override;
35 void ConvertMathToSPIRVPass::runOnOperation() {
40 std::unique_ptr<ConversionTarget> target =
47 target->addLegalOp<UnrealizedConversionCastOp>();
53 return signalPassFailure();
57 return std::make_unique<ConvertMathToSPIRVPass>();
static MLIRContext * getContext(OpFoldResult val)
MLIRContext is the top-level object for a collection of MLIR operations.
Operation is the basic unit of execution within MLIR.
static std::unique_ptr< SPIRVConversionTarget > get(spirv::TargetEnvAttr targetAttr)
Creates a SPIR-V conversion target for the given target environment.
Type conversion from builtin types to SPIR-V types for shader interface.
TargetEnvAttr lookupTargetEnvOrDefault(Operation *op)
Queries the target environment recursively from enclosing symbol table ops containing the given op or...
Include the generated interface declarations.
std::unique_ptr< OperationPass<> > createConvertMathToSPIRVPass()
Creates a pass to convert Math ops to SPIR-V ops.
void populateMathToSPIRVPatterns(const SPIRVTypeConverter &typeConverter, RewritePatternSet &patterns)
Appends to a pattern list additional patterns for translating Math ops to SPIR-V ops.
LogicalResult applyPartialConversion(ArrayRef< Operation * > ops, const ConversionTarget &target, const FrozenRewritePatternSet &patterns, ConversionConfig config=ConversionConfig())
Below we define several entry points for operation conversion.