CIRCT 20.0.0git
Loading...
Searching...
No Matches
CIRCTModules.h
Go to the documentation of this file.
1//===- CIRCTModules.h - Populate submodules -------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Functions to populate submodules in CIRCT (if provided).
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef CIRCT_BINDINGS_PYTHON_CIRCTMODULES_H
14#define CIRCT_BINDINGS_PYTHON_CIRCTMODULES_H
15
16#include <nanobind/nanobind.h>
17
18namespace circt {
19namespace python {
20
21void populateDialectESISubmodule(nanobind::module_ &m);
22void populateDialectHWSubmodule(nanobind::module_ &m);
23void populateDialectMSFTSubmodule(nanobind::module_ &m);
24void populateDialectOMSubmodule(nanobind::module_ &m);
25void populateDialectRTGSubmodule(nanobind::module_ &m);
26void populateDialectRTGToolSubmodule(nanobind::module_ &m);
27#ifdef CIRCT_INCLUDE_TESTS
28void populateDialectRTGTestSubmodule(nanobind::module_ &m);
29#endif
30void populateDialectSeqSubmodule(nanobind::module_ &m);
31void populateDialectSVSubmodule(nanobind::module_ &m);
32void populateSupportSubmodule(nanobind::module_ &m);
33
34} // namespace python
35} // namespace circt
36
37#endif // CIRCT_BINDINGS_PYTHON_DIALECTMODULES_H
void populateDialectSVSubmodule(nanobind::module_ &m)
void populateDialectRTGSubmodule(nanobind::module_ &m)
void populateDialectRTGToolSubmodule(nanobind::module_ &m)
void populateDialectESISubmodule(nanobind::module_ &m)
void populateDialectHWSubmodule(nanobind::module_ &m)
void populateSupportSubmodule(nanobind::module_ &m)
void populateDialectOMSubmodule(nanobind::module_ &m)
void populateDialectMSFTSubmodule(nanobind::module_ &m)
void populateDialectSeqSubmodule(nanobind::module_ &m)
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.