mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 04:35:03 -05:00
- Go through CAPI for python bindings - Consuming LLVM errors in CAPI: fixes previous issue which made this impossible in the python bindings
16 lines
340 B
C++
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
|