From 8f5052b87369c47d856a196296b8440d8e3db770 Mon Sep 17 00:00:00 2001 From: Jorge Pineda Date: Wed, 9 Oct 2024 13:35:39 -0700 Subject: [PATCH] [ET-VK] Include `VkUtils.h` in `api.h` For consistency. Differential Revision: [D64134083](https://our.internmc.facebook.com/intern/diff/D64134083/) [ghstack-poisoned] --- backends/vulkan/runtime/api/Context.cpp | 2 -- backends/vulkan/runtime/api/Context.h | 1 + backends/vulkan/runtime/api/api.h | 1 + backends/vulkan/runtime/api/containers/Tensor.cpp | 2 -- backends/vulkan/test/vulkan_compute_api_test.cpp | 2 -- 5 files changed, 2 insertions(+), 6 deletions(-) diff --git a/backends/vulkan/runtime/api/Context.cpp b/backends/vulkan/runtime/api/Context.cpp index 4d2a854de3b..c245a22de1b 100644 --- a/backends/vulkan/runtime/api/Context.cpp +++ b/backends/vulkan/runtime/api/Context.cpp @@ -8,8 +8,6 @@ #include -#include - #ifndef VULKAN_DESCRIPTOR_POOL_SIZE #define VULKAN_DESCRIPTOR_POOL_SIZE 1024u #endif diff --git a/backends/vulkan/runtime/api/Context.h b/backends/vulkan/runtime/api/Context.h index 6681cb7cbfb..e3365f65d96 100644 --- a/backends/vulkan/runtime/api/Context.h +++ b/backends/vulkan/runtime/api/Context.h @@ -18,6 +18,7 @@ #include #include #include +#include namespace vkcompute { namespace api { diff --git a/backends/vulkan/runtime/api/api.h b/backends/vulkan/runtime/api/api.h index 0f496a4af8a..b5d46b8bba4 100644 --- a/backends/vulkan/runtime/api/api.h +++ b/backends/vulkan/runtime/api/api.h @@ -24,6 +24,7 @@ #include #include #include +#include #include #include diff --git a/backends/vulkan/runtime/api/containers/Tensor.cpp b/backends/vulkan/runtime/api/containers/Tensor.cpp index a9623c165b2..dcc982add19 100644 --- a/backends/vulkan/runtime/api/containers/Tensor.cpp +++ b/backends/vulkan/runtime/api/containers/Tensor.cpp @@ -8,8 +8,6 @@ #include -#include - namespace vkcompute { namespace api { diff --git a/backends/vulkan/test/vulkan_compute_api_test.cpp b/backends/vulkan/test/vulkan_compute_api_test.cpp index a47f1b4e993..e2672387bc3 100644 --- a/backends/vulkan/test/vulkan_compute_api_test.cpp +++ b/backends/vulkan/test/vulkan_compute_api_test.cpp @@ -23,8 +23,6 @@ #include -#include - #include using namespace vkcompute;