Created
February 11, 2015 03:08
-
-
Save kortschak/80ecde7d7d9e31219532 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph matdeps { | |
"client" -> "gonum/matrix/mat64" [label="mat64 calls"] | |
"client" -> "gonum/blas/blas64" [label="Use() call\lexcursion from mat64 API", style=dashed] | |
"client" -> "gonum/blas/blas" [label="excursion from mat64 API", style=dashed] | |
"client" -> "gonum/blas/cblas" [label="Use() parameter", style=dashed] | |
"client" -> "gonum/blas/goblas" [label="Use() parameter", style=dashed] | |
"gonum/matrix/mat64" -> "gonum/blas/blas64" [label="blas wrapper calls\lraw matrix types"] | |
"gonum/matrix/mat64" -> "gonum/blas/blas" [label="option parameter types"] | |
"gonum/blas/blas64" -> "gonum/blas/blas" [label="blas calls\loption parameter types"] | |
"gonum/blas/blas64" -> "gonum/blas/goblas" [label="default implementation"] | |
"gonum/blas/cblas" -> "gonum/blas/blas" [label="option parameter types"] | |
"gonum/blas/goblas" -> "gonum/blas/blas" [label="option parameter types"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment