1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
#include "Halide.h"
#include <stdio.h>
using namespace Halide;
// Backends allocate up to 3 extra elements.
int tolerance = 3 * sizeof(int);
int expected_allocation = 0;
void *my_malloc(JITUserContext *user_context, size_t x) {
if (std::abs((int)x - expected_allocation) > tolerance) {
printf("Error! Expected allocation of %d bytes, got %zu bytes (tolerance %d)\n", expected_allocation, x, tolerance);
exit(1);
}
return malloc(x);
}
void my_free(JITUserContext *user_context, void *ptr) {
free(ptr);
}
int main(int argc, char **argv) {
if (get_jit_target_from_environment().arch == Target::WebAssembly) {
printf("[SKIP] WebAssembly JIT does not support custom allocators.\n");
return 0;
}
Target target = get_jit_target_from_environment();
if (target.has_feature(Target::Debug)) {
// the runtime debug adds some debug payload to each allocation,
// so the 'expected_allocation' is unlikely to be a match.
printf("[SKIP] Test incompatible with debug runtime.\n");
return 0;
}
Var x, y, c;
Func f("f"), g;
f(x, y, c) = 1;
g(x, y, c) = f(x, y, c);
f.compute_root().reorder_storage(c, x, y);
g.jit_handlers().custom_malloc = my_malloc;
g.jit_handlers().custom_free = my_free;
// Without any storage alignment, we should expect an allocation
// that is the product of the extents of the realization.
int W = 10;
int H = 11;
expected_allocation = 3 * W * H * sizeof(int);
g.realize({W, H, 3});
int x_alignment = 16;
f.align_storage(x, x_alignment);
// We've aligned the x dimension, make sure the allocation reflects this.
int W_aligned = (W + x_alignment - 1) & ~(x_alignment - 1);
expected_allocation = W_aligned * H * 3 * sizeof(int);
// Force g to clear it's cache...
g.compute_root();
g.realize({W, H, 3});
printf("Success!\n");
return 0;
}
|