aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/README.md b/README.md
index e95b936..172f1a7 100644
--- a/README.md
+++ b/README.md
@@ -25,9 +25,23 @@ Valid values are `AUTO`, `NONE`, `AVX`, `AVX2`, and `AVX512`. `AUTO` uses the co
ctest --test-dir build --output-on-failure
```
+## What's implemented
+
+- Matrix / Vector core with SIMD matmul
+- Triangular solvers (forward / backward substitution)
+- LU factorization with partial pivoting (`lu_factor`, `lu_solve`)
+- QR factorization — classical GS, modified GS, and Householder (`qr_classical_gs`, `qr_modified_gs`, `qr_householder`)
+
## Run examples
```bash
./build/linear_system
./build/matmul
-``` \ No newline at end of file
+```
+
+## Run experiments
+
+```bash
+./build/pivoting_vs_no_pivoting
+./build/hilbert_qr
+```