-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcppmodules.dot
More file actions
30 lines (29 loc) · 775 Bytes
/
cppmodules.dot
File metadata and controls
30 lines (29 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
digraph modules {
gsl [shape=box];
cppcoro [shape=box];
"boost::container" [shape=box];
fftw [shape=box];
xtensor [shape=box];
"xtensor-blas" [shape=box];
"xtensor-fftw" [shape=box];
"openblas" [shape=box];
xtensor -> ellalgo;
ellalgo -> multiplierless;
ellalgo -> "lmi-solver" -> "corr-solver";
xtensor -> "xtensor-blas";
xtensor -> "xtensor-fftw";
openblas -> "xtensor-blas";
fftw -> "xtensor-fftw";
"xtensor-blas" -> "corr-solver";
"xtensor-blas" -> multiplierless;
"xtensor-fftw" -> multiplierless;
ellalgo -> netoptim;
xnetwork -> netoptim;
xnetwork -> ckpttn;
gsl -> "lmi-solver";
gsl -> ckpttn;
cppcoro -> xnetwork;
py2cpp -> xnetwork;
"boost::container" -> ckpttn;
cppcoro -> ecgen;
}