https://github.com/halide/Halide
Raw File
Tip revision: cc6e06d0a8109daee522ffd41f7f82c49e991df0 authored by Andrew Adams on 03 April 2023, 23:43:52 UTC
Increase test threshold for mullapudi histogram test
Tip revision: cc6e06d
linux_yield.cpp
#include "runtime_internal.h"

extern "C" int sched_yield();

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