Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1023 Bytes

README.md

File metadata and controls

52 lines (36 loc) · 1023 Bytes

LAPACK Build Status

The package provides bindings to the Basic Linear Algebra Subprograms and Linear Algebra Package.

The list of available routines currently includes:

  • DDOT,
  • DGEMM,
  • DGEMV,
  • DGETRF,
  • DGETRI,
  • DGTSV, and
  • DSYEV.

Installation

Fetch the package:

go get -d github.com/ready-steady/lapack

Go to the directory of the package:

cd $GOPATH/src/github.com/ready-steady/lapack

Finally, install the package:

make install

This command requires gfortran to be installed.

Contribution

  1. Fork the project.
  2. Implement your idea.
  3. Open a pull request.