Skip to content

Commit

Permalink
[mlir] Rename CMake target MLIRQuantOps to MLIRQuant
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
marbre authored and stephenneuendorffer committed Mar 26, 2020
1 parent 445b810 commit 6946ca4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mlir/lib/Dialect/FxpMathOps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ add_mlir_dialect_library(MLIRFxpMathOps

target_link_libraries(MLIRFxpMathOps
PUBLIC
MLIRQuantOps
MLIRQuant
MLIRIR
MLIRPass
MLIRSideEffects
Expand Down
4 changes: 2 additions & 2 deletions mlir/lib/Dialect/Quant/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
add_mlir_dialect_library(MLIRQuantOps
add_mlir_dialect_library(MLIRQuant
IR/QuantOps.cpp
IR/QuantTypes.cpp
IR/TypeDetail.h
Expand All @@ -15,7 +15,7 @@ add_mlir_dialect_library(MLIRQuantOps
DEPENDS
MLIRQuantOpsIncGen
)
target_link_libraries(MLIRQuantOps
target_link_libraries(MLIRQuant
PUBLIC
MLIRIR
MLIRPass
Expand Down
6 changes: 3 additions & 3 deletions mlir/lib/Quantizer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ add_mlir_library(MLIRQuantizerSupport
target_link_libraries(MLIRQuantizerSupport
PUBLIC
MLIRIR
MLIRQuantOps
MLIRQuant
MLIRSupport
MLIRStandardOps
LLVMSupport
Expand All @@ -34,7 +34,7 @@ target_link_libraries(MLIRQuantizerFxpMathConfig
PUBLIC
MLIRIR
MLIRFxpMathOps
MLIRQuantOps
MLIRQuant
MLIRQuantizerSupport
MLIRStandardOps
MLIRSupport
Expand All @@ -54,7 +54,7 @@ target_link_libraries(MLIRQuantizerTransforms
MLIRIR
MLIRQuantizerFxpMathConfig
MLIRQuantizerSupport
MLIRQuantOps
MLIRQuant
MLIRPass
LLVMSupport
)

0 comments on commit 6946ca4

Please sign in to comment.