Files
concrete/compiler/lib/Bindings/Python/DialectModules.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
340 B
C++

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