From: Marius Brehler Date: Thu, 26 Mar 2020 16:25:19 +0000 (-0700) Subject: [mlir] Rename CMake target MLIRQuantOps to MLIRQuant X-Git-Tag: llvmorg-12-init~11017 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6946ca4b4cb11086423cc9c8834050236923e5c6;p=platform%2Fupstream%2Fllvm.git [mlir] Rename CMake target MLIRQuantOps to MLIRQuant 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. --- diff --git a/mlir/lib/Dialect/FxpMathOps/CMakeLists.txt b/mlir/lib/Dialect/FxpMathOps/CMakeLists.txt index 45c05cf..e18ce1a 100644 --- a/mlir/lib/Dialect/FxpMathOps/CMakeLists.txt +++ b/mlir/lib/Dialect/FxpMathOps/CMakeLists.txt @@ -11,7 +11,7 @@ add_mlir_dialect_library(MLIRFxpMathOps target_link_libraries(MLIRFxpMathOps PUBLIC - MLIRQuantOps + MLIRQuant MLIRIR MLIRPass MLIRSideEffects diff --git a/mlir/lib/Dialect/Quant/CMakeLists.txt b/mlir/lib/Dialect/Quant/CMakeLists.txt index aa014ab..4796889 100644 --- a/mlir/lib/Dialect/Quant/CMakeLists.txt +++ b/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 @@ add_mlir_dialect_library(MLIRQuantOps DEPENDS MLIRQuantOpsIncGen ) -target_link_libraries(MLIRQuantOps +target_link_libraries(MLIRQuant PUBLIC MLIRIR MLIRPass diff --git a/mlir/lib/Quantizer/CMakeLists.txt b/mlir/lib/Quantizer/CMakeLists.txt index 9dc0a79..27950c2 100644 --- a/mlir/lib/Quantizer/CMakeLists.txt +++ b/mlir/lib/Quantizer/CMakeLists.txt @@ -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 )