https://github.com/halide/Halide
Raw File
Tip revision: f69a2d4bfb6d78747253d9c6970011eb9ed54435 authored by Steven Johnson on 15 December 2020, 22:22:25 UTC
Skip performance_nested_vectorization_gemm under wasm
Tip revision: f69a2d4
prefetch.cpp
#include "HalideRuntime.h"

extern "C" {

// These need to inline, otherwise the extern call with the ptr
// parameter breaks a lot of optimizations, but needs to be WEAK
// so that Codegen_LLVM can find an instance of the Function to insert.
WEAK_INLINE int _halide_prefetch(const void *ptr) {
    __builtin_prefetch(ptr, 1, 3);
    return 0;
}
}
back to top