forked from taskflow/taskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaxpy.dot
More file actions
22 lines (22 loc) · 774 Bytes
/
saxpy.dot
File metadata and controls
22 lines (22 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
digraph Taskflow {
p0x55b219117698[label="allocate_x" ];
p0x55b219117698 -> p0x55b2191178a8;
p0x55b2191177a0[label="allocate_y" ];
p0x55b2191177a0 -> p0x55b2191178a8;
p0x55b2191178a8[label="saxpy" shape=folder fillcolor=cyan style=filled];
subgraph cluster_p0x55b2191178a8 {
label="cudaFlow: saxpy";
color="purple"
p0x7f2870401a50[label="h2d_x"];
p0x7f2870401a50 -> p0x7f2870402bc0;
p0x7f2870401eb0[label="h2d_y"];
p0x7f2870401eb0 -> p0x7f2870402bc0;
p0x7f2870402310[label="d2h_x"];
p0x7f2870402310 -> p0x55b2191178a8;
p0x7f2870402780[label="d2h_y"];
p0x7f2870402780 -> p0x55b2191178a8;
p0x7f2870402bc0[label="saxpy" style="filled" color="white" fillcolor="black" fontcolor="white" shape="box3d"];
p0x7f2870402bc0 -> p0x7f2870402310;
p0x7f2870402bc0 -> p0x7f2870402780;
}
}