From 9a19a4d58b3ee98d86dbbc28779af87604be9cde Mon Sep 17 00:00:00 2001 From: Eric Lunderberg Date: Mon, 23 Aug 2021 09:45:54 -0500 Subject: [PATCH] [Vulkan] Remote target.h #include Was added in #8127, should have been removed in #8171 along with the rest of the references outside of libtvm_runtime.so. This didn't impact the Vulkan+g++ builds, because no symbols were accessed outside of the runtime library. However, it broke the Vulkan+Windows builds, which expected symbols due to the `__declspec(dllexport)` defintion of `TVM_DLL` on MSVC (see #8805). This wasn't caught by the CI build on Windows, because it doesn't perform the Vulkan build. --- src/runtime/vulkan/vulkan_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/vulkan/vulkan_common.h b/src/runtime/vulkan/vulkan_common.h index a03801cf511f..f1e0ef587ecc 100644 --- a/src/runtime/vulkan/vulkan_common.h +++ b/src/runtime/vulkan/vulkan_common.h @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include #include