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
|
#include "Halide.h"
#include <stdio.h>
using namespace Halide;
void check(Func f, ImageParam in, int min, int extent) {
Buffer<int> output(12345);
output.set_min(-1234);
in.reset();
f.infer_input_bounds(output);
Buffer<int> im = in.get();
if (im.extent(0) != extent || im.min(0) != min) {
printf("Inferred size was [%d, %d] instead of [%d, %d]\n",
im.min(0), im.extent(0), min, extent);
exit(1);
}
}
int main(int argc, char **argv) {
ImageParam input(Int(32), 1);
Var x;
Func f1 = lambda(x, input(abs(cast<int8_t>(x))));
Func f2 = lambda(x, input(abs(cast<int16_t>(x))));
Func f3 = lambda(x, input(cast<int32_t>(abs(cast<float>(x)))));
// input should be required from 0 to 128 inclusive, because abs
// of an int 8 can return 128. This is an extent of 129.
check(f1, input, 0, 129);
check(f2, input, 0, 32769);
// cast from int to float is treated as lossless, so we get 12345 - 1234
check(f3, input, 0, 11111);
// test a reflect boundary condition between zero and 100
Expr reflect_x = 100 - cast<int>(abs(100 - (x % 200)));
Func f4 = lambda(x, input(reflect_x));
check(f4, input, 0, 101);
// Verify an undefined bound on one side of the range still results in
// correct bounds from abs and not an undefined error in the logic or
// failure to bound the negative branch to zero.
Func f5;
f5 = lambda(x, input(cast<int>(clamp(abs(1.0f / (x + .1f)), -50, 50))));
check(f5, input, 0, 51);
printf("Success!\n");
return 0;
}
|