#include "Halide.h"
#include <stdio.h>
int main(int argc, char **argv) {
brighter(x, y) = input(x, y) + offset;
printf("Halide pipeline compiled, but not yet run.\n");
return 0;
}
Func & parallel(const VarOrRVar &var)
Mark a dimension to be traversed in parallel.
Func & vectorize(const VarOrRVar &var)
Mark a dimension to be computed all-at-once as a single vector.
void compile_to_static_library(const std::string &filename_prefix, const std::vector< Argument > &args, const std::string &fn_name="", const Target &target=get_target_from_environment())
Compile to static-library file and header pair, with the given arguments.
An Image parameter to a halide pipeline.
A scalar parameter to a halide pipeline.
A Halide variable, to be used when defining functions.
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...