Revision 799236949867b6a2be0d492137b36a0b67011622 authored by Andrew Adams on 07 December 2021, 16:16:50 UTC, committed by GitHub on 07 December 2021, 16:16:50 UTC
* Add a version of fast_integer_divide that rounds towards zero

* clang-format

* Fix test condition

* Clean up debugging code

* Add explanatory comment to performance test

* Pacify clang tidy
1 parent fb305fd
Raw File
many_updates.cpp
#include "Halide.h"
#include <stdio.h>

using namespace Halide;

int main(int argc, char **argv) {
    const int N = 20;

    Func f;
    Var x, y;
    f(x, y) = x + y;
    for (int i = 0; i < N; i++) {
        f(x, i) += 1;
        f(i, y) += 1;
    }
    f.compute_root();

    Buffer<int> im = f.realize({N, N});

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