llvm/mlir/include/mlir/Dialect/NVGPU/Transforms/Passes.h

//===- Passes.h - NVGPU pass entry points -----------------------*- C++ -*-===//
//
// 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 header file defines prototypes that expose pass constructors.
//
//===----------------------------------------------------------------------===//
#ifndef MLIR_DIALECT_NVGPU_PASSES_H_
#define MLIR_DIALECT_NVGPU_PASSES_H_

#include "mlir/Pass/Pass.h"

namespace mlir {
namespace nvgpu {

#define GEN_PASS_DECL
#include "mlir/Dialect/NVGPU/Transforms/Passes.h.inc"

/// Create a pass to optimize shared memory reads and writes.
std::unique_ptr<Pass> createOptimizeSharedMemoryPass();

} // namespace nvgpu

//===----------------------------------------------------------------------===//
// Registration
//===----------------------------------------------------------------------===//

/// Generate the code for registering passes.
#define GEN_PASS_REGISTRATION
#include "mlir/Dialect/NVGPU/Transforms/Passes.h.inc"

} // namespace mlir

#endif // MLIR_DIALECT_NVGPU_PASSES_H_