From 7db0d82731ababdf0b2f4d986dd54da3b4650954 Mon Sep 17 00:00:00 2001 From: y-jan137 Date: Sat, 14 Mar 2026 14:49:46 +0300 Subject: Add triangular solve --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 1cd42ec..e95b936 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ 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). +The current matmul uses a vectorized dot-product kernel. The implementation supports compile-time SIMD backends for `AVX`, `AVX2`, `AVX512`, and `NEON` on `AArch64`/`ARM64` with FP64 vector support. ## Build @@ -25,8 +25,9 @@ Valid values are `AUTO`, `NONE`, `AVX`, `AVX2`, and `AVX512`. `AUTO` uses the co ctest --test-dir build --output-on-failure ``` -## Run the example +## Run examples ```bash -./build/solve_linear_system +./build/linear_system +./build/matmul ``` \ No newline at end of file -- cgit v1.2.3