File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ def SairDialect : Dialect {
28
28
loosing the high-level structure of the code (hence the "additive" part of
29
29
the name).
30
30
}];
31
+
32
+ let cppNamespace = "::sair";
31
33
}
32
34
33
35
//===----------------------------------------------------------------------===//
Original file line number Diff line number Diff line change @@ -1378,7 +1378,7 @@ llvm::SmallBitVector SairFbyOp::MustFuseDimensions(int sair_operand) {
1378
1378
return mask;
1379
1379
}
1380
1380
1381
+ } // namespace sair
1382
+
1381
1383
#define GET_OP_CLASSES
1382
1384
#include " sair_ops.cc.inc"
1383
-
1384
- } // namespace sair
Original file line number Diff line number Diff line change @@ -36,10 +36,12 @@ namespace sair {
36
36
// `second`.
37
37
OperandRange ChainOperandRanges (OperandRange first, OperandRange second);
38
38
39
- using namespace mlir ; // NOLINT - Required by the MLIR infrastructure.
39
+ } // namespace sair
40
+
40
41
#define GET_OP_CLASSES
41
42
#include " sair_ops.h.inc"
42
43
44
+ namespace sair {
43
45
// Parses the declaration of an iteration domain. Appends the dimensions that
44
46
// compose the domain to 'dimensions' and their names to 'dim_names' with the
45
47
// name that the domain binds to each dimension. The syntax for iteration
You can’t perform that action at this time.
0 commit comments