lapacke-static 0.1.0

Statically compiled LAPACKE library
Documentation
  • Coverage
  • 0%
    0 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 11.8 MB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 185.21 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10m 6s Average build duration of successful builds.
  • all releases: 10m 6s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • astraw/lapacke-static
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • astraw

lapacke-static - Statically compiled LAPACKE library

What is this?

This is a package of LAPACKE into a statically compiled rust crate. LAPACKE is a library that allows calling LAPACK implementations with row-major matrix memory layouts, as is conventional in C.

Why?

Some LAPACK implementations (e.g. Apple's Accelerate.framework) do not provide the LAPACKE interface, instead supporting only column-major matrix memory layouts.

With this crate, rust code can use either column-major layouts (using directly the the lapack-sys implementation) or row-major layouts (via this crate).

Where is this code from?

LAPACKE/ directory extracted from lapack-3.7.0.tgz downloaded from netlib.org (sha256sum ef6ce65c1339dd680699d365cc325f8c2310bc10b8b1573a79c5ca5c9bfe1945 )

License

BSD-3-Clause