Skip to content

Commit 11a2d8c

Browse files
committed
[ET-VK] Fix int8 buffers support detection
## Context As title. Fixes a small type which prevented us from detecting that int8 buffers are not supported. Differential Revision: [D64703949](https://our.internmc.facebook.com/intern/diff/D64703949/) [ghstack-poisoned]
1 parent 46ea1a4 commit 11a2d8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/vulkan/runtime/vk_api/Adapter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class Adapter final {
182182
}
183183

184184
inline bool has_full_int8_buffers_support() {
185-
return supports_16bit_storage_buffers() && supports_int8_shader_types();
185+
return supports_8bit_storage_buffers() && supports_int8_shader_types();
186186
}
187187

188188
// Command Buffer Submission

0 commit comments

Comments
 (0)