Halide  17.0.2
Halide compiler and libraries
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
This file defines the class FunctionDAG, which is our representation of a Halide pipeline, and contains methods to using Halide's bounds tools to query properties of it.
Base classes for Halide expressions (Halide::Expr) and statements (Halide::Internal::Stmt) ...
Not visible externally, similar to 'static' linkage in C.
Stmt extract_tile_operations(const Stmt &s)
Rewrite any AMX tile operations that have been stored in the AMXTile memory type as intrinsic calls...