We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c7a55 commit 64309c1Copy full SHA for 64309c1
1 file changed
backends/vulkan/runtime/graph/ops/impl/LinearDw.cpp
@@ -59,7 +59,7 @@ void linear_dW(ComputeGraph& graph, const std::vector<ValueRef>& args) {
59
int32_t i = 0;
60
const ValueRef d_out = args.at(i++);
61
const ValueRef x = args.at(i++);
62
- const ValueRef dW = args.at(i++);
+ const ValueRef dW = args.at(i);
63
64
VK_CHECK_COND(graph.dtype_of(d_out) == vkapi::kFloat);
65
VK_CHECK_COND(graph.dtype_of(x) == vkapi::kFloat);
0 commit comments