{"id":13438769,"url":"https://github.com/blas-lapack-rs/lapack","last_synced_at":"2025-12-18T07:21:17.730Z","repository":{"id":21524723,"uuid":"24843944","full_name":"blas-lapack-rs/lapack","owner":"blas-lapack-rs","description":"Wrappers for LAPACK (Fortran)","archived":false,"fork":false,"pushed_at":"2021-04-18T12:25:36.000Z","size":1310,"stargazers_count":80,"open_issues_count":1,"forks_count":18,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-05-23T02:34:45.186Z","etag":null,"topics":["linear-algebra","science","wrappers"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blas-lapack-rs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-06T11:57:08.000Z","updated_at":"2024-02-22T02:15:40.000Z","dependencies_parsed_at":"2022-08-21T16:40:57.308Z","dependency_job_id":null,"html_url":"https://github.com/blas-lapack-rs/lapack","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blas-lapack-rs%2Flapack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blas-lapack-rs%2Flapack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blas-lapack-rs%2Flapack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blas-lapack-rs%2Flapack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blas-lapack-rs","download_url":"https://codeload.github.com/blas-lapack-rs/lapack/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244565397,"owners_count":20473271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["linear-algebra","science","wrappers"],"created_at":"2024-07-31T03:01:08.286Z","updated_at":"2025-12-12T16:38:31.909Z","avatar_url":"https://github.com/blas-lapack-rs.png","language":"Rust","funding_links":[],"categories":["Libraries","库 Libraries","库"],"sub_categories":["Computation","计算 Computation","计算"],"readme":"# LAPACK [![Package][package-img]][package-url] [![Documentation][documentation-img]][documentation-url] [![Build][build-img]][build-url]\n\nThe package provides wrappers for [LAPACK] (Fortran).\n\n## [Architecture]\n\n## Example\n\n```rust\nuse lapack::*;\n\nlet n = 3;\nlet mut a = vec![3.0, 1.0, 1.0, 1.0, 3.0, 1.0, 1.0, 1.0, 3.0];\nlet mut w = vec![0.0; n as usize];\nlet mut work = vec![0.0; 4 * n as usize];\nlet lwork = 4 * n;\nlet mut info = 0;\n\nunsafe {\n    dsyev(b'V', b'U', n, \u0026mut a, n, \u0026mut w, \u0026mut work, lwork, \u0026mut info);\n}\n\nassert!(info == 0);\nfor (one, another) in w.iter().zip(\u0026[2.0, 2.0, 5.0]) {\n    assert!((one - another).abs() \u003c 1e-14);\n}\n```\n\n## Development\n\nThe code is generated via a Python script based on the content the `lapack-sys`\nsubmodule. To re-generate, run the following commands:\n\n```sh\n./bin/generate.py \u003e src/lapack-sys.rs\nrustfmt src/lapack-sys.rs\n```\n\n## Contribution\n\nYour contribution is highly appreciated. Do not hesitate to open an issue or a\npull request. Note that any contribution submitted for inclusion in the project\nwill be licensed according to the terms given in [LICENSE.md](LICENSE.md).\n\n[architecture]: https://blas-lapack-rs.github.io/architecture\n[lapack]: https://en.wikipedia.org/wiki/LAPACK\n\n[build-img]: https://travis-ci.org/blas-lapack-rs/lapack.svg?branch=master\n[build-url]: https://travis-ci.org/blas-lapack-rs/lapack\n[documentation-img]: https://docs.rs/lapack/badge.svg\n[documentation-url]: https://docs.rs/lapack\n[package-img]: https://img.shields.io/crates/v/lapack.svg\n[package-url]: https://crates.io/crates/lapack\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblas-lapack-rs%2Flapack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblas-lapack-rs%2Flapack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblas-lapack-rs%2Flapack/lists"}