https://github.com/halide/Halide
Raw File
Tip revision: 825d863e7bd82bc00ca59be3934e1a0199a45dd2 authored by Andrew Adams on 22 May 2018, 21:11:35 UTC
Add stripped-down version of simplifier
Tip revision: 825d863
linux_yield.cpp
#include "runtime_internal.h"

extern "C" int sched_yield();

namespace Halide { namespace Runtime { namespace Internal {

WEAK void halide_thread_yield() {
    sched_yield();
}

}}}
back to top