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 b9f831f commit 8622fa0Copy full SHA for 8622fa0
src/idtr.cpp
@@ -4,10 +4,6 @@
4
Intel Distributed Runtime for MLIR
5
*/
6
7
-#include "sharpy/CppTypes.hpp"
8
-#include "llvm/ADT/APInt.h"
9
-#include <cstddef>
10
-#include <cstdint>
11
#include <sharpy/MPITransceiver.hpp>
12
#include <sharpy/MemRefType.hpp>
13
#include <sharpy/NDArray.hpp>
@@ -19,7 +15,6 @@
19
15
#include <iostream>
20
16
#include <memory>
21
17
#include <unordered_map>
22
-#include <vector>
23
18
24
#define STRINGIFY(a) #a
25
@@ -995,6 +990,7 @@ TYPED_COPY_PERMUTE(i64, int64_t);
995
990
TYPED_COPY_PERMUTE(i32, int32_t);
996
991
TYPED_COPY_PERMUTE(i16, int16_t);
997
992
TYPED_COPY_PERMUTE(i8, int8_t);
993
+// FIXME: bool is not supported yet due to std::vector<bool>
998
994
// TYPED_COPY_PERMUTE(i1, bool);
999
1000
} // extern "C"
0 commit comments