This source file includes following definitions.
- my_trace
- main
#include "Halide.h"
#include <stdio.h>
using namespace Halide;
int my_trace(void *user_context, const halide_trace_event_t *e) {
if (e->event == 2) {
if (e->coordinates[1] != 4) {
printf("Realization of f was supposed to be 4-wide\n");
exit(-1);
}
}
return 0;
}
int main(int argc, char **argv) {
Func f("f"), g("g"), h("h");
Var x;
f(x) = x;
f.compute_root();
g(x) = f(x) + 1;
g.compute_root().vectorize(x, 4);
h(x) = g(x) + 2;
h.output_buffer().dim(0).set_bounds(0, 1);
f.trace_realizations();
h.set_custom_trace(&my_trace);
h.realize(1);
printf("Success!\n");
return 0;
}