[mlir][Linalg] NFC - Hotfix for gcc-5 build
authorNicolas Vasilache <ntv@google.com>
Wed, 15 Jan 2020 15:36:25 +0000 (10:36 -0500)
committerNicolas Vasilache <ntv@google.com>
Wed, 15 Jan 2020 15:41:23 +0000 (10:41 -0500)
mlir/lib/Dialect/Linalg/EDSC/Builders.cpp

index 17fc23d..24874f0 100644 (file)
@@ -88,14 +88,16 @@ operator()(std::function<void(void)> fun) {
 }
 
 template <>
-GenericLoopNestRangeBuilder<loop::ForOp>::GenericLoopNestRangeBuilder(
-    ArrayRef<edsc::ValueHandle *> ivs, ArrayRef<Value> ranges) {
+mlir::edsc::GenericLoopNestRangeBuilder<
+    loop::ForOp>::GenericLoopNestRangeBuilder(ArrayRef<edsc::ValueHandle *> ivs,
+                                              ArrayRef<Value> ranges) {
   builder = std::make_unique<LoopNestRangeBuilder>(ivs, ranges);
 }
 
 template <>
-GenericLoopNestRangeBuilder<AffineForOp>::GenericLoopNestRangeBuilder(
-    ArrayRef<ValueHandle *> ivs, ArrayRef<Value> ranges) {
+mlir::edsc::GenericLoopNestRangeBuilder<
+    AffineForOp>::GenericLoopNestRangeBuilder(ArrayRef<ValueHandle *> ivs,
+                                              ArrayRef<Value> ranges) {
   SmallVector<ValueHandle, 4> lbs;
   SmallVector<ValueHandle, 4> ubs;
   SmallVector<int64_t, 4> steps;