Skip to content

Commit 733d315

Browse files
author
ssjia
committed
Update base for Update on "[ET-VK] Quantized Int8 Convolution"
See the below diff; this diff implements int8 quantized conv2d using the quantized linear layer introduced below. Note that the current implementation doesn't yet support depthwise convs; a specialized implementation will need to be added for that. Differential Revision: [D81330809](https://our.internmc.facebook.com/intern/diff/D81330809/) [ghstack-poisoned]
1 parent a5d8a02 commit 733d315

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

backends/vulkan/test/custom_ops/CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,8 @@ if(TARGET vulkan_backend)
4242
set(VOLK_PATH ${VULKAN_THIRD_PARTY_PATH}/volk)
4343
set(VMA_PATH ${VULKAN_THIRD_PARTY_PATH}/VulkanMemoryAllocator)
4444

45-
set(COMMON_INCLUDES
46-
$<BUILD_INTERFACE:${EXECUTORCH_ROOT}/..>
47-
$<BUILD_INTERFACE:${VULKAN_HEADERS_PATH}/include>
48-
$<BUILD_INTERFACE:${VOLK_PATH}> $<BUILD_INTERFACE:${VMA_PATH}>
45+
set(COMMON_INCLUDES ${EXECUTORCH_ROOT}/.. ${VULKAN_HEADERS_PATH} ${VOLK_PATH}
46+
${VMA_PATH}
4947
)
5048

5149
# Prototyping utility files

0 commit comments

Comments
 (0)