Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ready-steady/lapack
Bindings to BLAS and LAPACK
https://github.com/ready-steady/lapack
linear-algebra science
Last synced: about 2 months ago
JSON representation
Bindings to BLAS and LAPACK
- Host: GitHub
- URL: https://github.com/ready-steady/lapack
- Owner: ready-steady
- License: mit
- Created: 2015-03-24T14:33:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-26T09:40:23.000Z (about 7 years ago)
- Last Synced: 2024-06-20T14:26:42.225Z (6 months ago)
- Topics: linear-algebra, science
- Language: Go
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# LAPACK [![Build Status][travis-img]][travis-url]
The package provides bindings to the [Basic Linear Algebra Subprograms][blas]
and [Linear Algebra Package][lapack].The list of available routines currently includes:
* DDOT,
* DGEMM,
* DGEMV,
* DGETRF,
* DGETRI,
* DGTSV, and
* DSYEV.## [Documentation][doc]
## Installation
Fetch the package:
```bash
go get -d github.com/ready-steady/lapack
```Go to the directory of the package:
```bash
cd $GOPATH/src/github.com/ready-steady/lapack
```Finally, install the package:
```bash
make install
```This command requires [gfortran][gfortran] to be installed.
## Contribution
1. Fork the project.
2. Implement your idea.
3. Open a pull request.[blas]: http://www.netlib.org/blas/
[gfortran]: https://gcc.gnu.org/wiki/GFortranBinaries
[lapack]: http://www.netlib.org/lapack/[doc]: http://godoc.org/github.com/ready-steady/lapack
[travis-img]: https://travis-ci.org/ready-steady/lapack.svg?branch=master
[travis-url]: https://travis-ci.org/ready-steady/lapack