Halide 19.0.0
Halide compiler and libraries
Loading...
Searching...
No Matches
common.h
Go to the documentation of this file.
1#ifndef HALIDE_TEST_RUNTIME_COMMON_H_
2#define HALIDE_TEST_RUNTIME_COMMON_H_
3
4#include "HalideRuntime.h"
5
7
9void *allocate_system(void *user_context, size_t bytes);
10void deallocate_system(void *user_context, void *aligned_ptr);
11
12} // namespace Halide::Runtime::Internal
13
14#define HALIDE_CHECK(user_context, cond) \
15 do { \
16 if (!(cond)) { \
17 halide_print(user_context, __FILE__ ":" _halide_expand_and_stringify(__LINE__) " HALIDE_CHECK() failed: " #cond "\n"); \
18 abort(); \
19 } \
20 } while (0)
21
22#endif // HALIDE_TEST_RUNTIME_COMMON_H_
This file declares the routines used by Halide internally in its runtime.
void * allocate_system(void *user_context, size_t bytes)
size_t get_allocated_system_memory()
void deallocate_system(void *user_context, void *aligned_ptr)