blob: 1cd42ec9fc6e38e9035d279bc5cf85abec4ae0d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Numerical Linear Algebra
This repo contains a small C++ dense numerical linear algebra library for `double`, with a companion experiments directory for evaluating performance.
The current matmul uses a vectorized dot-product kernel. The implementation supports compile-time SIMD backends for AVX, AVX2, AVX512, NEON (AArch64/ARM64).
## Build
```bash
cmake -S . -B build
cmake --build build
```
On x86, you can explicitly choose a matmul SIMD target at configure time:
```bash
cmake -S . -B build -DLINEAR_ALGEBRA_SIMD=AVX2
```
Valid values are `AUTO`, `NONE`, `AVX`, `AVX2`, and `AVX512`. `AUTO` uses the compiler's current target. `NONE` forces the scalar fallback.
## Run tests
```bash
ctest --test-dir build --output-on-failure
```
## Run the example
```bash
./build/solve_linear_system
```
|