[PATCH] D79577: [mlir][vulkan-runner] Remove duplicated/uncessary link libraries
Lei Zhang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 7 07:54:15 PDT 2020
antiagainst created this revision.
antiagainst added a reviewer: denis13.
Herald added subscribers: llvm-commits, Kayjukh, frgossen, grosul1, Joonsoo, stephenneuendorffer, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, nicolasvasilache, shauheen, jpienaar, rriddle, mehdi_amini, mgorny.
Herald added a project: LLVM.
vulkan-runtime-wrappers does not need MLIRSPIRVSerialization,
which is used by the ConvertGpuLaunchFuncToVulkanLaunchFunc pass
under the hood.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D79577
Files:
mlir/tools/mlir-vulkan-runner/CMakeLists.txt
Index: mlir/tools/mlir-vulkan-runner/CMakeLists.txt
===================================================================
--- mlir/tools/mlir-vulkan-runner/CMakeLists.txt
+++ mlir/tools/mlir-vulkan-runner/CMakeLists.txt
@@ -45,8 +45,6 @@
target_link_libraries(vulkan-runtime-wrappers
PUBLIC
- LLVMSupport
- MLIRSPIRVSerialization
LLVMCore
LLVMSupport
${Vulkan_LIBRARY}
@@ -59,11 +57,11 @@
${conversion_libs}
LLVMCore
LLVMSupport
- MLIRJitRunner
MLIRAnalysis
MLIREDSC
MLIRExecutionEngine
MLIRIR
+ MLIRJitRunner
MLIRLLVMIR
MLIRParser
MLIRSPIRVTransforms
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79577.262648.patch
Type: text/x-patch
Size: 637 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200507/bad7bf87/attachment.bin>
More information about the llvm-commits
mailing list