llvm/mlir/test/lib/Dialect/Mesh/TestSimplifications.cpp

//===- TestSimplification.cpp - Test simplification -----------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

#include "mlir/Dialect/Arith/IR/Arith.h"
#include "mlir/Dialect/Mesh/IR/MeshDialect.h"
#include "mlir/Dialect/Mesh/Transforms/Simplifications.h"
#include "mlir/IR/SymbolTable.h"
#include "mlir/Pass/Pass.h"
#include "mlir/Transforms/GreedyPatternRewriteDriver.h"

usingnamespacemlir;

namespace {
struct TestMeshSimplificationsPass
    : public PassWrapper<TestMeshSimplificationsPass, OperationPass<>> {};
} // namespace

void TestMeshSimplificationsPass::runOnOperation() {}

namespace mlir {
namespace test {
void registerTestMeshSimplificationsPass() {}
} // namespace test
} // namespace mlir