https://github.com/zang-langyan/eastwind_math
EastWind Math Library (C++ interface for BLAS and LAPACK)
https://github.com/zang-langyan/eastwind_math
blas cpp lapack linear-algebra
Last synced: 11 months ago
JSON representation
EastWind Math Library (C++ interface for BLAS and LAPACK)
- Host: GitHub
- URL: https://github.com/zang-langyan/eastwind_math
- Owner: zang-langyan
- Created: 2024-03-23T14:28:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-22T15:52:26.000Z (almost 2 years ago)
- Last Synced: 2025-07-25T03:48:30.707Z (11 months ago)
- Topics: blas, cpp, lapack, linear-algebra
- Language: C++
- Homepage:
- Size: 21.9 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# EastWind Math
## EastWind Math
It is a wrapper library of BLAS and LAPACK for the EastWind Engine Math support.
## EastWind Graphics
This submodule provides some utility functions for graphics computing using EastWind Math template class.
## Build
You would need a cmake version >= 3.20 and a c++ compiler and especially gfortran compiler to build this library
```shell
cmake -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=1
cmake --build build
```
## Features
So far, this library supports the basic Vector and Matrix operations and LU decomposition for square matrix including inverse computation based on that.
## TODO List
- [ ] LU decomposition full support
- [ ] Cholesky decomposition
- [ ] QR decomposition
- [ ] SVD decomposition