All Projects → blas-lapack-rs → blas

blas-lapack-rs / blas

Licence: other
Wrappers for BLAS (Fortran)

Programming Languages

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

Projects that are alternatives of or similar to blas

lapack
Wrappers for LAPACK (Fortran)
Stars: ✭ 63 (+8.62%)
Mutual labels:  science, linear-algebra, wrappers
Matrix
Matrix laboratory
Stars: ✭ 23 (-60.34%)
Mutual labels:  science, linear-algebra
ponylang-linal
Linear Algebra library for Pony Language
Stars: ✭ 23 (-60.34%)
Mutual labels:  linear-algebra
dbcsr
DBCSR: Distributed Block Compressed Sparse Row matrix library
Stars: ✭ 65 (+12.07%)
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 (-44.83%)
Mutual labels:  science
NumLin
NumLin: Linear Types for Linear Algebra
Stars: ✭ 21 (-63.79%)
Mutual labels:  linear-algebra
awesome-gamedev
A compilation of game dev related media (podcasts, Youtube, article, books, etc..)
Stars: ✭ 49 (-15.52%)
Mutual labels:  science
PyProSAIL
Python interface to the ProSAIL leaf/canopy reflectance model
Stars: ✭ 15 (-74.14%)
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 (+374.14%)
Mutual labels:  science
optimath
A #[no_std] LinAlg library
Stars: ✭ 47 (-18.97%)
Mutual labels:  linear-algebra
HackTheDeep
The 4th Annual American Museum of Natural History Hackathon produced by the BridgeUP: STEM program
Stars: ✭ 35 (-39.66%)
Mutual labels:  science
hector
The Hector Simple Climate Model
Stars: ✭ 72 (+24.14%)
Mutual labels:  science
CNCC-2020
Computational Neuroscience Crash Course (University of Bordeaux, 2020)
Stars: ✭ 36 (-37.93%)
Mutual labels:  linear-algebra
Matrix
Easy-to-use Scientific Computing library in/for C++ available for Linux and Windows.
Stars: ✭ 20 (-65.52%)
Mutual labels:  linear-algebra
grblas
Python wrapper around GraphBLAS
Stars: ✭ 22 (-62.07%)
Mutual labels:  linear-algebra
Scipy-Bordeaux-2017
Course taught at the University of Bordeaux in the academic year 2017 for PhD students.
Stars: ✭ 16 (-72.41%)
Mutual labels:  science
BioExplorer
The Blue Brain BioExplorer (BBBE) is a tool for scientists to extract and analyze scientific data from visualization and interactive exploration
Stars: ✭ 18 (-68.97%)
Mutual labels:  science
sblas
Scala Native BLAS (Basic Linear Algebra Subprograms) supporting Linux and macOS
Stars: ✭ 25 (-56.9%)
Mutual labels:  linear-algebra
arboles
Mapa de Arbolado Urbano
Stars: ✭ 13 (-77.59%)
Mutual labels:  science
PartitionedArrays.jl
Vectors and sparse matrices partitioned into pieces for parallel distributed-memory computations.
Stars: ✭ 45 (-22.41%)
Mutual labels:  linear-algebra

BLAS Package Documentation Build

The package provides wrappers for BLAS (Fortran).

Architecture

Example

use blas::*;

let (m, n, k) = (2, 4, 3);
let a = vec![
    1.0, 4.0,
    2.0, 5.0,
    3.0, 6.0,
];
let b = vec![
    1.0, 5.0,  9.0,
    2.0, 6.0, 10.0,
    3.0, 7.0, 11.0,
    4.0, 8.0, 12.0,
];
let mut c = vec![
    2.0, 7.0,
    6.0, 2.0,
    0.0, 7.0,
    4.0, 2.0,
];

unsafe {
    dgemm(b'N', b'N', m, n, k, 1.0, &a, m, &b, k, 1.0, &mut c, m);
}

assert!(
    c == vec![
        40.0,  90.0,
        50.0, 100.0,
        50.0, 120.0,
        60.0, 130.0,
    ]
);

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].