We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d682e commit dc81dfaCopy full SHA for dc81dfa
mlir/lib/Bindings/Python/IRInterfaces.cpp
@@ -6,13 +6,23 @@
6
//
7
//===----------------------------------------------------------------------===//
8
9
+#include <cstdint>
10
#include <optional>
11
+#include <pybind11/cast.h>
12
+#include <pybind11/detail/common.h>
13
+#include <pybind11/pybind11.h>
14
+#include <pybind11/pytypes.h>
15
+#include <string>
16
#include <utility>
17
+#include <vector>
18
19
#include "IRModule.h"
20
#include "mlir-c/BuiltinAttributes.h"
21
+#include "mlir-c/IR.h"
22
#include "mlir-c/Interfaces.h"
23
+#include "mlir-c/Support.h"
24
#include "llvm/ADT/STLExtras.h"
25
+#include "llvm/ADT/SmallVector.h"
26
27
namespace py = pybind11;
28
0 commit comments