[Mlir-commits] [mlir] c2414c2 - [mlir][vulkan-runner] Remove duplicated/uncessary link libraries
Lei Zhang
llvmlistbot at llvm.org
Thu May 7 10:57:38 PDT 2020
Author: Lei Zhang
Date: 2020-05-07T13:57:26-04:00
New Revision: c2414c20397a752643fea09ac14c9393807adf89
URL: https://github.com/llvm/llvm-project/commit/c2414c20397a752643fea09ac14c9393807adf89
DIFF: https://github.com/llvm/llvm-project/commit/c2414c20397a752643fea09ac14c9393807adf89.diff
LOG: [mlir][vulkan-runner] Remove duplicated/uncessary link libraries
vulkan-runtime-wrappers does not need MLIRSPIRVSerialization,
which is used by the ConvertGpuLaunchFuncToVulkanLaunchFunc pass
under the hood.
Differential Revision: https://reviews.llvm.org/D79577
Added:
Modified:
mlir/tools/mlir-vulkan-runner/CMakeLists.txt
Removed:
################################################################################
diff --git a/mlir/tools/mlir-vulkan-runner/CMakeLists.txt b/mlir/tools/mlir-vulkan-runner/CMakeLists.txt
index 2b45a937d84b..1b9910429aef 100644
--- a/mlir/tools/mlir-vulkan-runner/CMakeLists.txt
+++ b/mlir/tools/mlir-vulkan-runner/CMakeLists.txt
@@ -45,8 +45,6 @@ if (MLIR_VULKAN_RUNNER_ENABLED)
target_link_libraries(vulkan-runtime-wrappers
PUBLIC
- LLVMSupport
- MLIRSPIRVSerialization
LLVMCore
LLVMSupport
${Vulkan_LIBRARY}
@@ -59,11 +57,11 @@ if (MLIR_VULKAN_RUNNER_ENABLED)
${conversion_libs}
LLVMCore
LLVMSupport
- MLIRJitRunner
MLIRAnalysis
MLIREDSC
MLIRExecutionEngine
MLIRIR
+ MLIRJitRunner
MLIRLLVMIR
MLIRParser
MLIRSPIRVTransforms
More information about the Mlir-commits
mailing list