1
0
Fork
You've already forked cnmatrix
0
No description
  • C 55.4%
  • C++ 30%
  • CMake 13.1%
  • Makefile 1.5%
2022年02月15日 12:22:45 -07:00
.github/workflows Fixed single precision issues 2021年12月29日 16:06:11 -07:00
cmake Updated find eigen logic 2021年12月30日 13:11:00 -07:00
include/cnmatrix Fix more step/col issues 2022年01月26日 23:11:38 -07:00
src Check args to multrans 2022年02月02日 23:52:38 -07:00
tests correctly map step instead of cols 2022年01月21日 00:55:01 -07:00
.gitignore Initial refactor 2021年12月22日 22:09:13 -07:00
Android.mk Android: track source file split 2022年01月05日 11:19:42 -06:00
CMakeLists.txt Verbose options 2022年02月15日 12:22:45 -07:00
cnmatrix.pc.in Initial refactor 2021年12月22日 22:09:13 -07:00
LICENSE Initial commit 2021年12月22日 22:07:15 -07:00
README.md Fixed single precision issues 2021年12月29日 16:06:11 -07:00

CNMatrix .github/workflows/cmake.yml

This library provides a consistent C interface to a few matrix backends.

The interface itself is a little more sane than raw lapack / blas calls, and is meant to be reasonably performant for medium to large matrices. It should also be cross platform and work reasonably well on embedded low latency systems; as it consistently tries to avoid heap allocations.

As a caveat though; this library makes sense for C code bases, for C++ codebases it likely makes more sense to just use eigen directly.