Skip to content

Commit 2b80602

Browse files
martinlsmMartin Lindström
andauthored
Vulkan backend: Add missing include of cstdint (pytorch#15220)
backends/vulkan/runtime/utils/StorageUtils.h was referring to definitions like `uint8_t` without including the header cstdint. This resulted in a risk of facing compilation errors on some systems. Fix this problem by including the header. cc @SS-JIA @manuelcandales @digantdesai @cbilgin Signed-off-by: Martin Lindström <[email protected]> Co-authored-by: Martin Lindström <[email protected]>
1 parent 36400f6 commit 2b80602

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backends/vulkan/runtime/utils/StorageUtils.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#pragma once
1010

11+
#include <cstdint>
1112
#include <ostream>
1213

1314
namespace vkcompute {

0 commit comments

Comments
 (0)