https://github.com/halide/Halide
Raw File
Tip revision: 1f7c57fea597ee3668347e773f575de95f4b7fc7 authored by Steven Johnson on 12 September 2022, 22:33:14 UTC
Merge branch 'rootjalex/x86-optimize' into srj/xvc-experimetn
Tip revision: 1f7c57f
linux_yield.cpp
#include "runtime_internal.h"

extern "C" int sched_yield();

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