All Projects → blas-lapack-rs → lapack

blas-lapack-rs / lapack

Licence: other
Wrappers for LAPACK (Fortran)

Programming Languages

rust
11053 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to lapack

blas
Wrappers for BLAS (Fortran)
Stars: ✭ 58 (-7.94%)
Mutual labels:  science, linear-algebra, wrappers
Matrix
Matrix laboratory
Stars: ✭ 23 (-63.49%)
Mutual labels:  science, linear-algebra
grblas
Python wrapper around GraphBLAS
Stars: ✭ 22 (-65.08%)
Mutual labels:  linear-algebra
Scipy-Bordeaux-2017
Course taught at the University of Bordeaux in the academic year 2017 for PhD students.
Stars: ✭ 16 (-74.6%)
Mutual labels:  science
arboles
Mapa de Arbolado Urbano
Stars: ✭ 13 (-79.37%)
Mutual labels:  science
CNCC-2020
Computational Neuroscience Crash Course (University of Bordeaux, 2020)
Stars: ✭ 36 (-42.86%)
Mutual labels:  linear-algebra
Matrix
Easy-to-use Scientific Computing library in/for C++ available for Linux and Windows.
Stars: ✭ 20 (-68.25%)
Mutual labels:  linear-algebra
BioExplorer
The Blue Brain BioExplorer (BBBE) is a tool for scientists to extract and analyze scientific data from visualization and interactive exploration
Stars: ✭ 18 (-71.43%)
Mutual labels:  science
PartitionedArrays.jl
Vectors and sparse matrices partitioned into pieces for parallel distributed-memory computations.
Stars: ✭ 45 (-28.57%)
Mutual labels:  linear-algebra
sirius
SIRIUS is a software for discovering a landscape of de-novo identification of metabolites using tandem mass spectrometry. This repository contains the code of the SIRIUS Software (GUI and CLI)
Stars: ✭ 32 (-49.21%)
Mutual labels:  science
dbcsr
DBCSR: Distributed Block Compressed Sparse Row matrix library
Stars: ✭ 65 (+3.17%)
Mutual labels:  linear-algebra
optimath
A #[no_std] LinAlg library
Stars: ✭ 47 (-25.4%)
Mutual labels:  linear-algebra
paper-moho-inversion-tesseroids
Source code, data, and model results for "Fast non-linear gravity inversion in spherical coordinates with application to the South American Moho". Published in the Geophysical Journal International.
Stars: ✭ 27 (-57.14%)
Mutual labels:  science
HackTheSolarSystem
The 5th Annual American Museum of Natural History Hackathon produced by the BridgeUP: STEM program
Stars: ✭ 22 (-65.08%)
Mutual labels:  science
NumLin
NumLin: Linear Types for Linear Algebra
Stars: ✭ 21 (-66.67%)
Mutual labels:  linear-algebra
ign-math
General purpose math library for robot applications.
Stars: ✭ 35 (-44.44%)
Mutual labels:  linear-algebra
ponylang-linal
Linear Algebra library for Pony Language
Stars: ✭ 23 (-63.49%)
Mutual labels:  linear-algebra
awesome-gamedev
A compilation of game dev related media (podcasts, Youtube, article, books, etc..)
Stars: ✭ 49 (-22.22%)
Mutual labels:  science
hector
The Hector Simple Climate Model
Stars: ✭ 72 (+14.29%)
Mutual labels:  science
Things-a-scientist-is-suppposed-to-know
A comprehensive and long list of things a modern scientist is supposed to know
Stars: ✭ 275 (+336.51%)
Mutual labels:  science

LAPACK Package Documentation Build

The package provides wrappers for LAPACK (Fortran).

Architecture

Example

use lapack::*;

let n = 3;
let mut a = vec![3.0, 1.0, 1.0, 1.0, 3.0, 1.0, 1.0, 1.0, 3.0];
let mut w = vec![0.0; n as usize];
let mut work = vec![0.0; 4 * n as usize];
let lwork = 4 * n;
let mut info = 0;

unsafe {
    dsyev(b'V', b'U', n, &mut a, n, &mut w, &mut work, lwork, &mut info);
}

assert!(info == 0);
for (one, another) in w.iter().zip(&[2.0, 2.0, 5.0]) {
    assert!((one - another).abs() < 1e-14);
}

Development

The code is generated via a Python script based on the content the lapack-sys submodule. To re-generate, run the following commands:

./bin/generate.py > src/lapack-sys.rs
rustfmt src/lapack-sys.rs

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].