Files
concrete/compiler/lib/Bindings/Python/CompilerAPIModule.h
youben11 2972fa4403 refactor(python): rework the bindings with latest MLIR version
- Go through CAPI for python bindings
- Consuming LLVM errors in CAPI: fixes previous issue which made this
  impossible in the python bindings
2021-10-07 14:38:50 +01:00

16 lines
349 B
C++

#ifndef ZAMALANG_PYTHON_COMPILER_API_MODULE_H
#define ZAMALANG_PYTHON_COMPILER_API_MODULE_H
#include <pybind11/pybind11.h>
namespace mlir {
namespace zamalang {
namespace python {
void populateCompilerAPISubmodule(pybind11::module &m);
} // namespace python
} // namespace zamalang
} // namespace mlir
#endif // ZAMALANG_PYTHON_DIALECTMODULES_H