|
|
|
|
|
by howeman
3899 days ago
|
|
gonum also has LAPACK bindings godoc.org/github.com/gonum/lapack/cgo Assuming you need float64, BLAS and LAPACK are most easily accessed through the wrapper packages godoc.org/github.com/gonum/blas/blas64 and godoc.org/github.com/gonum/lapack/lapack64. This way code can be written to either use the native go implementations or the assembly/c/fortran ones. |
|