File tree Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 9
9
#pragma once
10
10
11
11
#include <executorch/backends/vulkan/runtime/api/Context.h>
12
- #include <executorch/backends/vulkan/runtime/api/ParamsBuffer.h>
13
12
#include <executorch/backends/vulkan/runtime/api/ShaderRegistry.h>
14
- #include <executorch/backends/vulkan/runtime/api/StorageBuffer.h>
15
- #include <executorch/backends/vulkan/runtime/api/Tensor.h>
13
+
14
+ #include <executorch/backends/vulkan/runtime/api/containers/ParamsBuffer.h>
15
+ #include <executorch/backends/vulkan/runtime/api/containers/StorageBuffer.h>
16
+ #include <executorch/backends/vulkan/runtime/api/containers/Tensor.h>
16
17
17
18
#include <executorch/backends/vulkan/runtime/utils/VecUtils.h>
18
19
Original file line number Diff line number Diff line change 6
6
* LICENSE file in the root directory of this source tree.
7
7
*/
8
8
9
- #include < executorch/backends/vulkan/runtime/api/ParamsBuffer.h>
9
+ #include < executorch/backends/vulkan/runtime/api/containers/ ParamsBuffer.h>
10
10
11
11
#include < cstring>
12
12
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 6
6
* LICENSE file in the root directory of this source tree.
7
7
*/
8
8
9
- #include < executorch/backends/vulkan/runtime/api/Tensor.h>
9
+ #include < executorch/backends/vulkan/runtime/api/containers/ Tensor.h>
10
10
11
11
#include < executorch/backends/vulkan/runtime/vk_api/VkUtils.h>
12
12
Original file line number Diff line number Diff line change 11
11
// @lint-ignore-every CLANGTIDY facebook-hte-BadMemberName
12
12
13
13
#include < executorch/backends/vulkan/runtime/api/Context.h>
14
- #include < executorch/backends/vulkan/runtime/api/ParamsBuffer.h>
14
+
15
+ #include < executorch/backends/vulkan/runtime/api/containers/ParamsBuffer.h>
15
16
16
17
#include < executorch/backends/vulkan/runtime/utils/StorageUtils.h>
17
18
Original file line number Diff line number Diff line change 10
10
11
11
// @lint-ignore-every CLANGTIDY facebook-hte-BadMemberName
12
12
13
- #include < executorch/backends/vulkan/runtime/api/Context.h>
14
- #include < executorch/backends/vulkan/runtime/api/Tensor.h>
13
+ #include < executorch/backends/vulkan/runtime/api/api.h>
15
14
16
15
#include < executorch/backends/vulkan/runtime/vk_api/Types.h>
17
16
Original file line number Diff line number Diff line change 10
10
11
11
// @lint-ignore-every CLANGTIDY facebook-hte-BadMemberName
12
12
13
- #include < executorch/backends/vulkan/runtime/api/Context.h>
14
- #include < executorch/backends/vulkan/runtime/api/Tensor.h>
13
+ #include < executorch/backends/vulkan/runtime/api/api.h>
15
14
16
15
#include < executorch/backends/vulkan/runtime/graph/containers/Constant.h>
17
16
#include < executorch/backends/vulkan/runtime/graph/containers/Types.h>
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ namespace vkapi {
21
21
22
22
class VulkanFence final {
23
23
public:
24
- // TODO: This is required for the lazy allocation pattern in api/Tensor .
24
+ // TODO: This is required for the lazy allocation pattern in api::vTensor .
25
25
// It will be disabled pending future refactors.
26
26
explicit VulkanFence ();
27
27
You can’t perform that action at this time.
0 commit comments