GCC 本机矩阵运算库

GCC Native matrix operations libraries

我想知道标准 gcc/glibc/g++ 附带的任何原生矩阵运算库。安装。我看到有很多 third party libraries boost、armadillo 等提供实现。

但我想知道较新的 gcc 9.2 版本是否有任何本机库提供矩阵运算而不是使用第三方库。

谢谢

自 C++20 起,C++ 标准库中不支持矩阵或线性代数。

有个proposal to add linear algebra support to the C++ standard library, P1385R5, targeted for C++23. Also video C++Now 2019: Bob Steagall “Linear Algebra for the Standard C++ Library”.