root/test/correctness/vector_print_bug.cpp

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main


#include "Halide.h"

using namespace Halide;

int main(int argc, char **argv) {
    Func f;
    Var x;
    f(x) = print(x);
    f.vectorize(x, 4);
    f.realize(8);
    return 0;
}

/* [<][>][^][v][top][bottom][index][help] */