Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backends/vulkan/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ set(COMMON_INCLUDES
set(VULKAN_CXX_FLAGS "-fexceptions")
list(APPEND VULKAN_CXX_FLAGS "-DUSE_VULKAN_WRAPPER")
list(APPEND VULKAN_CXX_FLAGS "-DUSE_VULKAN_VOLK")
list(APPEND VULKAN_CXX_FLAGS "-Werror=unused-variable")

# vulkan API files

Expand Down
1 change: 0 additions & 1 deletion backends/vulkan/runtime/graph/ops/impl/BinaryOp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ void add_binary_op_buffer_node(
std::string kernel_name("binary_");
kernel_name.reserve(kShaderNameReserve);
std::string op = op_name;
int clamp_type = remove_clamp_from_name(op);
kernel_name += op;
add_storage_type_suffix(kernel_name, graph.storage_type_of(out));

Expand Down
Loading