root/test/warning/parallel_size_one.cpp

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

DEFINITIONS

This source file includes following definitions.
  1. main

#include "Halide.h"
#include <stdio.h>

using namespace Halide;

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

    f(x, y) = x + y;
    f.bound(y, 0, 1);
    f.parallel(y);

    f.realize(10, 1);

    return 0;
}

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