MUDA
Loading...
Searching...
No Matches
graph_launch.h
1#pragma once
2#include <muda/launch/launch_base.h>
3
4namespace muda
5{
6class GraphViewer;
7class GraphLaunch : public LaunchBase<GraphLaunch>
8{
9 public:
10 GraphLaunch(cudaStream_t stream = nullptr)
11 : LaunchBase(stream)
12 {
13 }
14 ~GraphLaunch() = default;
15
16 GraphLaunch& launch(const GraphViewer& graph);
17};
18} // namespace muda
19
20#include "details/graph_launch.inl"
Definition graph_launch.h:8
Definition graph_viewer.h:8
Definition launch_base.h:86