Halide
ExtractTileOperations.h
Go to the documentation of this file.
1 #ifndef HALIDE_EXTRACT_TILE_OPERATIONS_H
2 #define HALIDE_EXTRACT_TILE_OPERATIONS_H
3 
4 /** \file
5  * Defines the lowering pass that injects calls to tile intrinsics that support
6  * AMX instructions.
7  */
8 
9 #include "Expr.h"
10 
11 namespace Halide {
12 namespace Internal {
13 
14 /** Rewrite any AMX tile operations that have been stored in the AMXTile memory
15  * type as intrinsic calls, to be used in the X86 backend. */
16 Stmt extract_tile_operations(const Stmt &s);
17 
18 } // namespace Internal
19 } // namespace Halide
20 
21 #endif
Halide::Internal::extract_tile_operations
Stmt extract_tile_operations(const Stmt &s)
Rewrite any AMX tile operations that have been stored in the AMXTile memory type as intrinsic calls,...
Halide
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...
Definition: AbstractGenerator.h:19
Halide::LinkageType::Internal
@ Internal
Not visible externally, similar to 'static' linkage in C.
Expr.h