mirror of https://github.com/llvm/torch-mlir
25 lines
708 B
C++
25 lines
708 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
|
|
// Also available under a BSD-style license. See LICENSE.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef TORCH_MLIR_INITALL_H
|
|
#define TORCH_MLIR_INITALL_H
|
|
|
|
#include "mlir/IR/Dialect.h"
|
|
|
|
namespace mlir {
|
|
namespace torch {
|
|
|
|
void registerAllDialects(mlir::DialectRegistry ®istry);
|
|
void registerAllPasses();
|
|
|
|
} // namespace torch
|
|
} // namespace mlir
|
|
|
|
#endif // TORCH_MLIR_INITALL_H
|