MLIR 22.0.0git
VectorToArmSME.h
Go to the documentation of this file.
1//===- VectorToArmSME.h - Convert vector to ArmSME dialect ----------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8#ifndef MLIR_CONVERSION_VECTORTOARMSME_VECTORTOARMSME_H_
9#define MLIR_CONVERSION_VECTORTOARMSME_VECTORTOARMSME_H_
10
12
13namespace mlir {
14class Pass;
15
16#define GEN_PASS_DECL_CONVERTVECTORTOARMSMEPASS
17#include "mlir/Conversion/Passes.h.inc"
18
19/// Collect a set of patterns to lower Vector ops to ArmSME ops that map to LLVM
20/// intrinsics.
21void populateVectorToArmSMEPatterns(RewritePatternSet &patterns,
22 MLIRContext &ctx);
23
24} // namespace mlir
25
26#endif // MLIR_CONVERSION_VECTORTOARMSME_VECTORTOARMSME_H_
The abstract base pass class.
Definition Pass.h:51
Include the generated interface declarations.
const FrozenRewritePatternSet & patterns
void populateVectorToArmSMEPatterns(RewritePatternSet &patterns, MLIRContext &ctx)
Collect a set of patterns to lower Vector ops to ArmSME ops that map to LLVM intrinsics.