Changes
Page history
Update Documentation
authored
Sep 28, 2022
by
Camille Coti
Show whitespace changes
Inline
Side-by-side
Documentation.md
View page @
b1e5a7c2
...
...
@@ -133,3 +133,14 @@ CPU Timers : #calls | #yields | m
StarPU driver :8 : 1 0 2.652 2.652 59.186
[...]
```
More options are available using Apex, such as getting the taskgraph or the tasktree:
```
~/x86/apex/install/bin/apex_exec --apex:cuda --apex:taskgraph ./lu_example_float
```
This command will give you a file `taskgraph.0.dot` that can be converted using `dot`. The output is super cute, and the darker the rectangle is, the more time is spent in the corresponding task.
```
dot -Tpng taskgraph.0.dot > taskgraph.0.png
```

\ No newline at end of file