2020-05-22 07:35:53 +08:00
|
|
|
//===------------------------------------------------------------*- 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 "npcomp/Dialect/Basicpy/BasicpyDialect.h"
|
2020-06-02 10:07:53 +08:00
|
|
|
#include "npcomp/Dialect/NpcompRt/IR/NpcompRtDialect.h"
|
2020-05-22 07:35:53 +08:00
|
|
|
#include "npcomp/Dialect/Numpy/NumpyDialect.h"
|
|
|
|
#include "npcomp/Dialect/TCF/IR/TCFDialect.h"
|
|
|
|
#include "npcomp/Dialect/TCP/IR/TCPDialect.h"
|
|
|
|
|
|
|
|
#include "npcomp/Conversion/TCFToTCP/TCFToTCP.h"
|
|
|
|
#include "npcomp/Conversion/TCPToLinalg/TCPToLinalg.h"
|
|
|
|
#include "npcomp/E2E/E2E.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace mlir {
|
|
|
|
namespace NPCOMP {
|
|
|
|
|
|
|
|
inline void registerAllDialects() {
|
|
|
|
registerDialect<Basicpy::BasicpyDialect>();
|
|
|
|
registerDialect<Numpy::NumpyDialect>();
|
2020-06-02 10:07:53 +08:00
|
|
|
registerDialect<npcomp_rt::NpcompRtDialect>();
|
2020-05-22 07:35:53 +08:00
|
|
|
registerDialect<tcf::TCFDialect>();
|
|
|
|
registerDialect<tcp::TCPDialect>();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void registerAllPasses() {
|
|
|
|
using mlir::Pass; // The .inc files reference this unqualified.
|
|
|
|
#define GEN_PASS_REGISTRATION
|
|
|
|
#include "npcomp/E2E/Passes.h.inc"
|
|
|
|
mlir::PassPipelineRegistration<>("e2e-lowering-pipeline",
|
|
|
|
"E2E lowering pipeline.",
|
|
|
|
mlir::NPCOMP::createE2ELoweringPipeline);
|
|
|
|
mlir::PassPipelineRegistration<>(
|
|
|
|
"lower-to-hybrid-tensor-memref-pipeline",
|
|
|
|
"Pipeline lowering to hybrid tensor/memref.",
|
|
|
|
mlir::NPCOMP::createLowerToHybridTensorMemRefPipeline);
|
|
|
|
#define GEN_PASS_REGISTRATION
|
|
|
|
#include "npcomp/Conversion/Passes.h.inc"
|
|
|
|
}
|
|
|
|
} // namespace NPCOMP
|
|
|
|
} // namespace mlir
|
|
|
|
|
|
|
|
#endif // NPCOMP_INITALL_H
|