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 bf50527 commit 742b95bCopy full SHA for 742b95b
backends/vulkan/runtime/graph/ComputeGraph.cpp
@@ -625,6 +625,7 @@ void ComputeGraph::prepack() const {
625
vkapi::VulkanFence fence = context_->fences().get_fence();
626
context_->submit_cmd_to_gpu(fence.get_submit_handle(), /*final_use = */ true);
627
fence.wait();
628
+ context_->fences().return_fence(fence);
629
630
context_->flush();
631
}
@@ -649,6 +650,7 @@ void ComputeGraph::execute() const {
649
650
651
context_->submit_cmd_to_gpu(fence.get_submit_handle());
652
653
654
655
656
void ComputeGraph::resize_input(
0 commit comments