From 6946ca4b4cb11086423cc9c8834050236923e5c6 Mon Sep 17 00:00:00 2001 From: Marius Brehler Date: Thu, 26 Mar 2020 09:25:19 -0700 Subject: [PATCH] [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. --- mlir/lib/Dialect/FxpMathOps/CMakeLists.txt | 2 +- mlir/lib/Dialect/Quant/CMakeLists.txt | 4 ++-- mlir/lib/Quantizer/CMakeLists.txt | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) 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 ) -- 2.7.4