https://github.com/halide/Halide
Raw File
Tip revision: 9f9a64cc1fb2f4aebbbd53a4c7e6f6b6ceadff6d authored by Andrew Adams on 07 December 2017, 19:16:54 UTC
Merge remote-tracking branch 'origin/master' into alina-strided-store
Tip revision: 9f9a64c
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);

}
}

#endif
back to top