https://github.com/halide/Halide
Raw File
Tip revision: 6f2eb3532cd10174d4b78d7e3541c79d0838d16f authored by Steven Johnson on 25 October 2022, 17:29:07 UTC
Require Python 3.8+ in CMake build (#7117)
Tip revision: 6f2eb35
PrintLoopNest.h
#ifndef HALIDE_INTERNAL_PRINT_LOOP_NEST_H
#define HALIDE_INTERNAL_PRINT_LOOP_NEST_H

/** \file
 *
 * Defines methods to print out the loop nest corresponding to a schedule.
 */

#include <string>
#include <vector>

namespace Halide {
namespace Internal {

class Function;

/** Emit some simple pseudocode that shows the structure of the loop
 * nest specified by this pipeline's schedule, and the schedules of
 * the functions it uses. */
std::string print_loop_nest(const std::vector<Function> &output_funcs);

}  // namespace Internal
}  // namespace Halide

#endif
back to top