Revision a34d00d3fc0cffa8c80548051f5bbd901d0260a5 authored by Alex Reinking on 02 December 2020, 22:44:43 UTC, committed by GitHub on 02 December 2020, 22:44:43 UTC
* Add fft build

* Fix properties

* Fix generator argument

* Add "Success!" message to fft aot test.

* Formatting.

* Fix target directory for bench_fft
1 parent f47c5c9
Raw File
bad_bound.cpp
#include "Halide.h"
#include <stdio.h>

using namespace Halide;

int main(int argc, char **argv) {
    Func f("f");
    Var x("x"), y("y");

    f(x) = 0;
    f.bound(y, 0, 10);

    printf("Success!\n");
    return 0;
}
back to top