https://github.com/halide/Halide
Raw File
Tip revision: cad87b7aaac4b2725b66f4f89d70d536d4ea11fa authored by Steven Johnson on 01 August 2022, 17:10:27 UTC
Fix
Tip revision: cad87b7
linux_yield.cpp
#include "runtime_internal.h"

extern "C" int sched_yield();

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