Revision 5deee77b677da97c4dadc966f76d8bf01d855c57 authored by Steven Johnson on 01 April 2020, 00:47:39 UTC, committed by Steven Johnson on 01 April 2020, 00:47:39 UTC
1 parent cb6f4a9
Raw File
AsyncProducers.h
#ifndef HALIDE_ASYNC_PRODUCERS_H
#define HALIDE_ASYNC_PRODUCERS_H

#include <map>
#include <string>

#include "Expr.h"
/** \file
 * Defines the lowering pass that injects task parallelism for producers that are scheduled as async.
 */

namespace Halide {
namespace Internal {
class Function;

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

}
}  // namespace Halide

#endif
back to top