MUDA
Loading...
Searching...
No Matches
compute_graph_phase.h
1#pragma once
2namespace muda
3{
4enum class ComputeGraphPhase
5{
6 None,
7 TopoBuilding, // we don't create cuda graph at this point, just build the topo
8 Building, // we create cuda graph at this point
9 Updating, // we update the graph at this point
10 SerialLaunching, // we just launch invoke all the graph closure in serial
11 Max
12};
13}