Raw File
AsyncProducers.h
#ifndef HALIDE_ASYNC_PRODUCERS_H
#define HALIDE_ASYNC_PRODUCERS_H

/** \file
 * Defines the lowering pass that injects task parallelism for producers that are scheduled as async.
 */

#include "IR.h"

namespace Halide {
namespace Internal {

Stmt fork_async_producers(Stmt s, const std::map<std::string, Function> &env);

}
}

#endif
back to top