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.
args
1 parent e2dc9c8 commit 9ed0fdeCopy full SHA for 9ed0fde
backends/vulkan/runtime/VulkanBackend.cpp
@@ -582,7 +582,7 @@ class VulkanBackend final : public ::executorch::runtime::BackendInterface {
582
compute_graph->execute();
583
584
for (size_t i = 0; i < compute_graph->outputs().size(); i++) {
585
- const size_t o = num_inputs + i;
+ const size_t o = i + num_inputs;
586
const ValueRef oref = compute_graph->outputs()[i].value;
587
if (compute_graph->val_is_tensor(oref)) {
588
VK_CHECK_COND(args[o]->isTensor());
0 commit comments