mirror of https://github.com/llvm/torch-mlir
24 lines
640 B
C++
24 lines
640 B
C++
//===------------------------------------------------------------*- C++ -*-===//
|
|
//
|
|
// This file is licensed 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef NPCOMP_INITALL_H
|
|
#define NPCOMP_INITALL_H
|
|
|
|
#include "mlir/IR/Dialect.h"
|
|
|
|
namespace mlir {
|
|
namespace NPCOMP {
|
|
|
|
void registerAllDialects(mlir::DialectRegistry ®istry);
|
|
void registerAllPasses();
|
|
|
|
} // namespace NPCOMP
|
|
} // namespace mlir
|
|
|
|
#endif // NPCOMP_INITALL_H
|