[PATCH] D76436: [mlir] Rename CMake target MLIRQuantOps to MLIRQuant

Marius Brehler via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 19 10:52:25 PDT 2020


marbre created this revision.
marbre added a reviewer: stellaraccident.
Herald added subscribers: llvm-commits, Joonsoo, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, nicolasvasilache, antiagainst, shauheen, burmako, jpienaar, rriddle, mehdi_amini, mgorny.
Herald added a project: LLVM.
marbre edited the summary of this revision.
marbre added reviewers: rsuderman, rriddle.

With commit 4d60f47 <https://reviews.llvm.org/rG4d60f47b082f20d93f621fb5cd4bb978c26b7bf1> VectorOps was renamed to Vector and the naming of the CMake target was adjusted. With commit 363dd3f <https://reviews.llvm.org/rG363dd3f394b54e3d5f3565b2146f49e1afebfba4> QuantOps was renamed to Quant, but the naming of the CMake target is left untouched. This renames the CMake target.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D76436

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


Index: mlir/lib/Quantizer/CMakeLists.txt
===================================================================
--- mlir/lib/Quantizer/CMakeLists.txt
+++ mlir/lib/Quantizer/CMakeLists.txt
@@ -14,7 +14,7 @@
 target_link_libraries(MLIRQuantizerSupport
   PUBLIC
   MLIRIR
-  MLIRQuantOps
+  MLIRQuant
   MLIRSupport
   MLIRStandardOps
   LLVMSupport
@@ -34,7 +34,7 @@
   PUBLIC
   MLIRIR
   MLIRFxpMathOps
-  MLIRQuantOps
+  MLIRQuant
   MLIRQuantizerSupport
   MLIRStandardOps
   MLIRSupport
@@ -54,7 +54,7 @@
   MLIRIR
   MLIRQuantizerFxpMathConfig
   MLIRQuantizerSupport
-  MLIRQuantOps
+  MLIRQuant
   MLIRPass
   LLVMSupport
   )
Index: mlir/lib/Dialect/Quant/CMakeLists.txt
===================================================================
--- mlir/lib/Dialect/Quant/CMakeLists.txt
+++ mlir/lib/Dialect/Quant/CMakeLists.txt
@@ -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 @@
   DEPENDS
   MLIRQuantOpsIncGen
   )
-target_link_libraries(MLIRQuantOps
+target_link_libraries(MLIRQuant
   PUBLIC
   MLIRIR
   MLIRPass
Index: mlir/lib/Dialect/FxpMathOps/CMakeLists.txt
===================================================================
--- mlir/lib/Dialect/FxpMathOps/CMakeLists.txt
+++ mlir/lib/Dialect/FxpMathOps/CMakeLists.txt
@@ -11,7 +11,7 @@
 
 target_link_libraries(MLIRFxpMathOps
   PUBLIC
-  MLIRQuantOps
+  MLIRQuant
   MLIRIR
   MLIRPass
   MLIRSideEffects


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D76436.251414.patch
Type: text/x-patch
Size: 1485 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200319/22f8dc08/attachment.bin>


More information about the llvm-commits mailing list