Halide
Module.h
Go to the documentation of this file.
1 #ifndef HALIDE_MODULE_H
2 #define HALIDE_MODULE_H
3 
4 /** \file
5  *
6  * Defines Module, an IR container that fully describes a Halide program.
7  */
8 
9 #include <functional>
10 #include <map>
11 #include <memory>
12 #include <string>
13 
14 #include "Argument.h"
15 #include "Expr.h"
16 #include "Function.h" // for NameMangling
17 #include "ModulusRemainder.h"
18 
19 namespace Halide {
20 
21 template<typename T, int Dims>
22 class Buffer;
23 struct Target;
24 
25 /** Enums specifying various kinds of outputs that can be produced from a Halide Pipeline. */
26 enum class OutputFileType {
27  assembly,
28  bitcode,
29  c_header,
30  c_source,
32  cpp_stub,
36  object,
40  schedule,
42  stmt,
43  stmt_html,
44 };
45 
46 /** Type of linkage a function in a lowered Halide module can have.
47  Also controls whether auxiliary functions and metadata are generated. */
48 enum class LinkageType {
49  External, ///< Visible externally.
50  ExternalPlusMetadata, ///< Visible externally. Argument metadata and an argv wrapper are also generated.
51  ExternalPlusArgv, ///< Visible externally. Argv wrapper is generated but *not* argument metadata.
52  Internal, ///< Not visible externally, similar to 'static' linkage in C.
53 };
54 
55 namespace Internal {
56 
57 struct OutputInfo {
58  std::string name, extension;
59 
60  // `is_multi` indicates how these outputs are generated
61  // when using the compile_to_multitarget_xxx() APIs (or via the
62  // Generator command-line mode):
63  //
64  // - If `is_multi` is true, then a separate file of this Output type is
65  // generated for each target in the multitarget (e.g. object files,
66  // assembly files, etc). Each of the files will have a suffix appended
67  // that is based on the specific subtarget.
68  //
69  // - If `is_multi` is false, then only one file of this Output type
70  // regardless of how many targets are in the multitarget. No additional
71  // suffix will be appended to the filename.
72  //
73  bool is_multi{false};
74 };
75 std::map<OutputFileType, const OutputInfo> get_output_info(const Target &target);
76 
77 /** Definition of an argument to a LoweredFunc. This is similar to
78  * Argument, except it enables passing extra information useful to
79  * some targets to LoweredFunc. */
80 struct LoweredArgument : public Argument {
81  /** For scalar arguments, the modulus and remainder of this
82  * argument. */
84 
85  LoweredArgument() = default;
86  explicit LoweredArgument(const Argument &arg)
87  : Argument(arg) {
88  }
89  LoweredArgument(const std::string &_name, Kind _kind, const Type &_type, uint8_t _dimensions, const ArgumentEstimates &argument_estimates)
90  : Argument(_name, _kind, _type, _dimensions, argument_estimates) {
91  }
92 };
93 
94 /** Definition of a lowered function. This object provides a concrete
95  * mapping between parameters used in the function body and their
96  * declarations in the argument list. */
97 struct LoweredFunc {
98  std::string name;
99 
100  /** Arguments referred to in the body of this function. */
101  std::vector<LoweredArgument> args;
102 
103  /** Body of this function. */
105 
106  /** The linkage of this function. */
108 
109  /** The name-mangling choice for the function. Defaults to using
110  * the Target. */
112 
113  LoweredFunc(const std::string &name,
114  const std::vector<LoweredArgument> &args,
115  Stmt body,
118  LoweredFunc(const std::string &name,
119  const std::vector<Argument> &args,
120  Stmt body,
123 };
124 
125 } // namespace Internal
126 
127 namespace Internal {
128 struct ModuleContents;
129 class CompilerLogger;
130 } // namespace Internal
131 
132 struct AutoSchedulerResults;
133 
134 using MetadataNameMap = std::map<std::string, std::string>;
135 
136 /** A halide module. This represents IR containing lowered function
137  * definitions and buffers. */
138 class Module {
140 
141 public:
142  Module(const std::string &name, const Target &target, const MetadataNameMap &metadata_name_map = {});
143 
144  /** Get the target this module has been lowered for. */
145  const Target &target() const;
146 
147  /** The name of this module. This is used as the default filename
148  * for output operations. */
149  const std::string &name() const;
150 
151  /** If this Module had an auto-generated schedule, return a read-only pointer
152  * to the AutoSchedulerResults. If not, return nullptr. */
154 
155  /** Return whether this module uses strict floating-point anywhere. */
156  bool any_strict_float() const;
157 
158  /** The declarations contained in this module. */
159  // @{
160  const std::vector<Buffer<void>> &buffers() const;
161  const std::vector<Internal::LoweredFunc> &functions() const;
162  std::vector<Internal::LoweredFunc> &functions();
163  const std::vector<Module> &submodules() const;
164  // @}
165 
166  /** Return the function with the given name. If no such function
167  * exists in this module, assert. */
168  Internal::LoweredFunc get_function_by_name(const std::string &name) const;
169 
170  /** Add a declaration to this module. */
171  // @{
172  void append(const Buffer<void> &buffer);
173  void append(const Internal::LoweredFunc &function);
174  void append(const Module &module);
175  // @}
176 
177  /** Compile a halide Module to variety of outputs, depending on
178  * the fields set in output_files. */
179  void compile(const std::map<OutputFileType, std::string> &output_files) const;
180 
181  /** Compile a halide Module to in-memory object code. Currently
182  * only supports LLVM based compilation, but should be extended to
183  * handle source code backends. */
185 
186  /** Return a new module with all submodules compiled to buffers on
187  * on the result Module. */
188  Module resolve_submodules() const;
189 
190  /** When generating metadata from this module, remap any occurrences
191  * of 'from' into 'to'. */
192  void remap_metadata_name(const std::string &from, const std::string &to) const;
193 
194  /** Retrieve the metadata name map. */
196 
197  /** Set the AutoSchedulerResults for the Module. It is an error to call this
198  * multiple times for a given Module. */
200 
201  /** Set whether this module uses strict floating-point directives anywhere. */
203 };
204 
205 /** Link a set of modules together into one module. */
206 Module link_modules(const std::string &name, const std::vector<Module> &modules);
207 
208 /** Create an object file containing the Halide runtime for a given target. For
209  * use with Target::NoRuntime. Standalone runtimes are only compatible with
210  * pipelines compiled by the same build of Halide used to call this function. */
211 void compile_standalone_runtime(const std::string &object_filename, const Target &t);
212 
213 /** Create an object and/or static library file containing the Halide runtime
214  * for a given target. For use with Target::NoRuntime. Standalone runtimes are
215  * only compatible with pipelines compiled by the same build of Halide used to
216  * call this function. Return a map with just the actual outputs filled in
217  * (typically, OutputFileType::object and/or OutputFileType::static_library).
218  */
219 std::map<OutputFileType, std::string> compile_standalone_runtime(const std::map<OutputFileType, std::string> &output_files, const Target &t);
220 
221 using ModuleFactory = std::function<Module(const std::string &fn_name, const Target &target)>;
222 using CompilerLoggerFactory = std::function<std::unique_ptr<Internal::CompilerLogger>(const std::string &fn_name, const Target &target)>;
223 
224 void compile_multitarget(const std::string &fn_name,
225  const std::map<OutputFileType, std::string> &output_files,
226  const std::vector<Target> &targets,
227  const std::vector<std::string> &suffixes,
228  const ModuleFactory &module_factory,
229  const CompilerLoggerFactory &compiler_logger_factory = nullptr);
230 
231 } // namespace Halide
232 
233 #endif
Halide::Internal::LoweredArgument::alignment
ModulusRemainder alignment
For scalar arguments, the modulus and remainder of this argument.
Definition: Module.h:83
Halide::Internal::OutputInfo::name
std::string name
Definition: Module.h:58
Halide::Module::remap_metadata_name
void remap_metadata_name(const std::string &from, const std::string &to) const
When generating metadata from this module, remap any occurrences of 'from' into 'to'.
Halide::OutputFileType::llvm_assembly
@ llvm_assembly
uint8_t
unsigned __INT8_TYPE__ uint8_t
Definition: runtime_internal.h:29
Halide::Module::compile_to_buffer
Buffer< uint8_t > compile_to_buffer() const
Compile a halide Module to in-memory object code.
Halide::Internal::LoweredFunc::name_mangling
NameMangling name_mangling
The name-mangling choice for the function.
Definition: Module.h:111
Halide::OutputFileType::stmt_html
@ stmt_html
Halide::Module::submodules
const std::vector< Module > & submodules() const
Halide::Argument
A struct representing an argument to a halide-generated function.
Definition: Argument.h:37
Halide::Module::target
const Target & target() const
Get the target this module has been lowered for.
Halide::Module::resolve_submodules
Module resolve_submodules() const
Return a new module with all submodules compiled to buffers on on the result Module.
Halide::NameMangling::Default
@ Default
Match whatever is specified in the Target.
Halide::Module::any_strict_float
bool any_strict_float() const
Return whether this module uses strict floating-point anywhere.
Halide::Internal::IntrusivePtr< Internal::ModuleContents >
Halide::Internal::Stmt
A reference-counted handle to a statement node.
Definition: Expr.h:418
Halide::Module
A halide module.
Definition: Module.h:138
Halide::Internal::LoweredFunc::linkage
LinkageType linkage
The linkage of this function.
Definition: Module.h:107
Halide::Type
Types in the halide type system.
Definition: Type.h:276
Halide::Internal::LoweredFunc::LoweredFunc
LoweredFunc(const std::string &name, const std::vector< LoweredArgument > &args, Stmt body, LinkageType linkage, NameMangling mangling=NameMangling::Default)
Halide::Module::name
const std::string & name() const
The name of this module.
Halide
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...
Definition: AbstractGenerator.h:19
Halide::Module::set_any_strict_float
void set_any_strict_float(bool any_strict_float)
Set whether this module uses strict floating-point directives anywhere.
Halide::Module::get_metadata_name_map
MetadataNameMap get_metadata_name_map() const
Retrieve the metadata name map.
Halide::Module::append
void append(const Buffer< void > &buffer)
Add a declaration to this module.
Halide::LinkageType::Internal
@ Internal
Not visible externally, similar to 'static' linkage in C.
Halide::OutputFileType::c_source
@ c_source
Halide::OutputFileType
OutputFileType
Enums specifying various kinds of outputs that can be produced from a Halide Pipeline.
Definition: Module.h:26
Argument.h
Halide::Internal::LoweredArgument::LoweredArgument
LoweredArgument()=default
Halide::LinkageType
LinkageType
Type of linkage a function in a lowered Halide module can have.
Definition: Module.h:48
Halide::Buffer< void >
Halide::Argument::Kind
Kind
An argument is either a primitive type (for parameters), or a buffer pointer.
Definition: Argument.h:52
Halide::OutputFileType::stmt
@ stmt
Halide::Internal::OutputInfo::extension
std::string extension
Definition: Module.h:58
Halide::Internal::LoweredArgument::LoweredArgument
LoweredArgument(const Argument &arg)
Definition: Module.h:86
Halide::Internal::OutputInfo
Definition: Module.h:57
Halide::Module::functions
const std::vector< Internal::LoweredFunc > & functions() const
Halide::MetadataNameMap
std::map< std::string, std::string > MetadataNameMap
Definition: Module.h:134
Halide::link_modules
Module link_modules(const std::string &name, const std::vector< Module > &modules)
Link a set of modules together into one module.
Halide::OutputFileType::python_extension
@ python_extension
Halide::Internal::LoweredFunc::body
Stmt body
Body of this function.
Definition: Module.h:104
Halide::OutputFileType::schedule
@ schedule
Halide::Module::set_auto_scheduler_results
void set_auto_scheduler_results(const AutoSchedulerResults &results)
Set the AutoSchedulerResults for the Module.
Halide::OutputFileType::featurization
@ featurization
Halide::Internal::LoweredFunc
Definition of a lowered function.
Definition: Module.h:97
Halide::NameMangling
NameMangling
An enum to specify calling convention for extern stages.
Definition: Function.h:25
Expr.h
Halide::Module::get_auto_scheduler_results
const AutoSchedulerResults * get_auto_scheduler_results() const
If this Module had an auto-generated schedule, return a read-only pointer to the AutoSchedulerResults...
Halide::OutputFileType::pytorch_wrapper
@ pytorch_wrapper
Halide::Module::Module
Module(const std::string &name, const Target &target, const MetadataNameMap &metadata_name_map={})
Halide::OutputFileType::compiler_log
@ compiler_log
Halide::Module::get_function_by_name
Internal::LoweredFunc get_function_by_name(const std::string &name) const
Return the function with the given name.
Halide::compile_multitarget
void compile_multitarget(const std::string &fn_name, const std::map< OutputFileType, std::string > &output_files, const std::vector< Target > &targets, const std::vector< std::string > &suffixes, const ModuleFactory &module_factory, const CompilerLoggerFactory &compiler_logger_factory=nullptr)
ModulusRemainder.h
Halide::OutputFileType::object
@ object
Halide::OutputFileType::function_info_header
@ function_info_header
Halide::Module::buffers
const std::vector< Buffer< void > > & buffers() const
The declarations contained in this module.
Halide::compile_standalone_runtime
void compile_standalone_runtime(const std::string &object_filename, const Target &t)
Create an object file containing the Halide runtime for a given target.
Halide::Internal::LoweredFunc::args
std::vector< LoweredArgument > args
Arguments referred to in the body of this function.
Definition: Module.h:101
Halide::Internal::OutputInfo::is_multi
bool is_multi
Definition: Module.h:73
Halide::LinkageType::External
@ External
Visible externally.
Halide::ModuleFactory
std::function< Module(const std::string &fn_name, const Target &target)> ModuleFactory
Definition: Module.h:221
Halide::OutputFileType::bitcode
@ bitcode
Halide::Internal::ArgInfoKind::Buffer
@ Buffer
Halide::Internal::get_output_info
std::map< OutputFileType, const OutputInfo > get_output_info(const Target &target)
Halide::Internal::LoweredArgument::LoweredArgument
LoweredArgument(const std::string &_name, Kind _kind, const Type &_type, uint8_t _dimensions, const ArgumentEstimates &argument_estimates)
Definition: Module.h:89
Halide::OutputFileType::c_header
@ c_header
Halide::AutoSchedulerResults
Definition: Pipeline.h:95
Halide::Internal::ModulusRemainder
The result of modulus_remainder analysis.
Definition: ModulusRemainder.h:31
Halide::Internal::LoweredArgument
Definition of an argument to a LoweredFunc.
Definition: Module.h:80
Function.h
Halide::OutputFileType::registration
@ registration
Halide::Target
A struct representing a target machine and os to generate code for.
Definition: Target.h:19
Halide::Module::compile
void compile(const std::map< OutputFileType, std::string > &output_files) const
Compile a halide Module to variety of outputs, depending on the fields set in output_files.
Halide::LinkageType::ExternalPlusMetadata
@ ExternalPlusMetadata
Visible externally. Argument metadata and an argv wrapper are also generated.
Halide::CompilerLoggerFactory
std::function< std::unique_ptr< Internal::CompilerLogger >(const std::string &fn_name, const Target &target)> CompilerLoggerFactory
Definition: Module.h:222
Halide::ArgumentEstimates
Definition: Argument.h:18
Halide::OutputFileType::cpp_stub
@ cpp_stub
Halide::Internal::LoweredFunc::name
std::string name
Definition: Module.h:98
Halide::Argument::argument_estimates
ArgumentEstimates argument_estimates
Definition: Argument.h:72
Halide::LinkageType::ExternalPlusArgv
@ ExternalPlusArgv
Visible externally. Argv wrapper is generated but not argument metadata.
Halide::OutputFileType::static_library
@ static_library
Halide::OutputFileType::assembly
@ assembly