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
lerp_signed_weight.cpp
#include "Halide.h"

#include <stdio.h>

using namespace Halide;

int main(int argc, char **argv) {
    // This should trigger an error.
    Func f;
    f() = lerp(cast<uint8_t>(0), cast<uint8_t>(42), cast<int8_t>(16));

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