https://github.com/halide/Halide
Raw File
Tip revision: 1314cd4bf998949d512faae969f8026226ef8008 authored by Derek Gerstmann on 07 June 2024, 21:44:11 UTC
Backport fixes for Vulkan in src/runtime/internal for allocations.
Tip revision: 1314cd4
linux_yield.cpp
#include "runtime_internal.h"

extern "C" int sched_yield();

extern "C" WEAK void halide_thread_yield() {
    sched_yield();
}
back to top