[mlir] Rename CMake target MLIRQuantOps to MLIRQuant
authorMarius Brehler <marius.brehler@iml.fraunhofer.de>
Thu, 26 Mar 2020 16:25:19 +0000 (09:25 -0700)
committerStephen Neuendorffer <stephen.neuendorffer@xilinx.com>
Thu, 26 Mar 2020 18:03:29 +0000 (11:03 -0700)
With commit 4d60f47 VectorOps was renamed to Vector and the naming of
the CMake target was adjusted. With commit 363dd3f QuantOps was
renamed to Quant, but the naming of the CMake target is left
untouched. This renames the CMake target.

mlir/lib/Dialect/FxpMathOps/CMakeLists.txt
mlir/lib/Dialect/Quant/CMakeLists.txt
mlir/lib/Quantizer/CMakeLists.txt

index 45c05cf..e18ce1a 100644 (file)
@@ -11,7 +11,7 @@ add_mlir_dialect_library(MLIRFxpMathOps
 
 target_link_libraries(MLIRFxpMathOps
   PUBLIC
-  MLIRQuantOps
+  MLIRQuant
   MLIRIR
   MLIRPass
   MLIRSideEffects
index aa014ab..4796889 100644 (file)
@@ -1,4 +1,4 @@
-add_mlir_dialect_library(MLIRQuantOps
+add_mlir_dialect_library(MLIRQuant
   IR/QuantOps.cpp
   IR/QuantTypes.cpp
   IR/TypeDetail.h
@@ -15,7 +15,7 @@ add_mlir_dialect_library(MLIRQuantOps
   DEPENDS
   MLIRQuantOpsIncGen
   )
-target_link_libraries(MLIRQuantOps
+target_link_libraries(MLIRQuant
   PUBLIC
   MLIRIR
   MLIRPass
index 9dc0a79..27950c2 100644 (file)
@@ -14,7 +14,7 @@ add_mlir_library(MLIRQuantizerSupport
 target_link_libraries(MLIRQuantizerSupport
   PUBLIC
   MLIRIR
-  MLIRQuantOps
+  MLIRQuant
   MLIRSupport
   MLIRStandardOps
   LLVMSupport
@@ -34,7 +34,7 @@ target_link_libraries(MLIRQuantizerFxpMathConfig
   PUBLIC
   MLIRIR
   MLIRFxpMathOps
-  MLIRQuantOps
+  MLIRQuant
   MLIRQuantizerSupport
   MLIRStandardOps
   MLIRSupport
@@ -54,7 +54,7 @@ target_link_libraries(MLIRQuantizerTransforms
   MLIRIR
   MLIRQuantizerFxpMathConfig
   MLIRQuantizerSupport
-  MLIRQuantOps
+  MLIRQuant
   MLIRPass
   LLVMSupport
   )