//===- node_importer.h ------------------------------------------*- C++ -*-===// // // This file is licensed under a pytorch-style license // See frontends/pytorch/LICENSE for license information. // //===----------------------------------------------------------------------===// #ifndef NPCOMP_FRONTENDS_PYTORCH_CSRC_NODE_IMPORTER_H #define NPCOMP_FRONTENDS_PYTORCH_CSRC_NODE_IMPORTER_H #include #include "../pybind.h" #include "func_builder.h" #include "mlir-c/IR.h" #include #include namespace torch_mlir { MlirBlock importBlock(MlirContext context, torch::jit::Block *jitBlock, const std::string &terminatorOpName); } // namespace torch_mlir #endif // NPCOMP_FRONTENDS_PYTORCH_CSRC_NODE_IMPORTER_H