
These are identified by misc-include-cleaner. I've filtered out those that break builds. Also, I'm staying away from llvm-config.h, config.h, and Compiler.h, which likely cause platform- or compiler-specific build failures.
29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
//===- TensorToLinalg.cpp - Tensor to Linalg Patterns ---------------------===//
|
|
//
|
|
// 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 patterns to convert Tensor dialect to Linalg dialect.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "mlir/Conversion/TensorToLinalg/TensorToLinalg.h"
|
|
#include "mlir/Dialect/Linalg/Transforms/Transforms.h"
|
|
|
|
#define DEBUG_TYPE "tensor-to-linalg-pattern"
|
|
|
|
using namespace mlir;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Pattern population
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
void mlir::populateTensorToLinalgPatterns(RewritePatternSet &patterns) {
|
|
// TODO: Add the remaining patterns, e.g. to decompose Pack/Unpack Ops.
|
|
// Alternatively, delete this file.
|
|
patterns.add<mlir::linalg::DecomposePadOpPattern>(patterns.getContext());
|
|
}
|