https://github.com/halide/Halide
Raw File
Tip revision: 43f94b33d4422f3093de8d0498f7dcce525ab1a7 authored by Andrew Adams on 17 July 2020, 20:38:21 UTC
Add an error message if you forget to compile RunGenMain with a registration file
Tip revision: 43f94b3
posix_abort.cpp
#include "runtime_internal.h"

extern "C" void abort();

namespace Halide {
namespace Runtime {
namespace Internal {

WEAK_INLINE void halide_abort() {
    abort();
}

}  // namespace Internal
}  // namespace Runtime
}  // namespace Halide
back to top