Halide  12.0.1
Halide compiler and libraries
LowerWarpShuffles.h
Go to the documentation of this file.
1 #ifndef HALIDE_LOWER_WARP_SHUFFLES_H
2 #define HALIDE_LOWER_WARP_SHUFFLES_H
3 
4 /** \file
5  * Defines the lowering pass that injects CUDA warp shuffle
6  * instructions to access storage outside of a GPULane loop.
7  */
8 
9 #include "Expr.h"
10 
11 namespace Halide {
12 namespace Internal {
13 
14 /** Rewrite access to things stored outside the loop over GPU lanes to
15  * use nvidia's warp shuffle instructions. */
17 
18 } // namespace Internal
19 } // namespace Halide
20 
21 #endif
Base classes for Halide expressions (Halide::Expr) and statements (Halide::Internal::Stmt)
Stmt lower_warp_shuffles(Stmt s)
Rewrite access to things stored outside the loop over GPU lanes to use nvidia's warp shuffle instruct...
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...
@ Internal
Not visible externally, similar to 'static' linkage in C.
A reference-counted handle to a statement node.
Definition: Expr.h:413