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
|
#include "Halide.h"
using namespace Halide;
int main(int argc, char **argv) {
if (get_jit_target_from_environment().arch == Target::WebAssembly) {
printf("[SKIP] Autoschedulers do not support WebAssembly.\n");
return 0;
}
if (argc != 2) {
fprintf(stderr, "Usage: %s <autoscheduler-lib>\n", argv[0]);
return 1;
}
load_plugin(argv[1]);
int W = 1000;
int H = 1000;
Buffer<uint16_t> input(W, H);
for (int y = 0; y < input.height(); y++) {
for (int x = 0; x < input.width(); x++) {
input(x, y) = rand() & 0xfff;
}
}
Var x("x"), y("y");
Func f("f");
f(x, y) = input(x, y) * input(x, y);
Func g("g");
g(x, y) = (f(x, y) + f(x + 1, y)) / 2;
Func h("h");
h(x, y) = (f(x, y) + f(x, y + 1)) / 2;
// Provide estimates on the pipeline output
g.set_estimate(x, 0, 1000).set_estimate(y, 0, 1000);
h.set_estimate(x, 0, 1000).set_estimate(y, 0, 1000);
// Auto-schedule the pipeline
std::vector<Func> outs;
outs.push_back(h);
outs.push_back(g);
Pipeline test(outs);
Target target = get_jit_target_from_environment();
test.auto_schedule(target);
// Inspect the schedule
h.print_loop_nest();
g.print_loop_nest();
Buffer<uint16_t> out_1(999, 999), out_2(999, 999);
// Run the schedule
test.realize({out_1, out_2});
printf("Success!\n");
return 0;
}
|