You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,30 @@ For a general introduction to the BLAS routines, please refer to the extensive d
24
24
<https://www.netlib.org/blas>. On that site you will likewise find documentation for the reference implementation of the higher-level library LAPACK - the **L**inear **A**lgebra **Pack**age that comes included with OpenBLAS. If you are looking for a general primer or refresher on Linear Algebra, the set of six
25
25
20-minute lecture videos by Prof. Gilbert Strang on either MIT OpenCourseWare [here](https://ocw.mit.edu/resources/res-18-010-a-2020-vision-of-linear-algebra-spring-2020/) or YouTube [here](https://www.youtube.com/playlist?list=PLUl4u3cNGP61iQEFiWLE21EJCxwmWvvek) may be helpful.
26
26
27
+
## Building Documentation for offline use
28
+
29
+
You can run your own local instance of http://www.openmathlib.org/OpenBLAS/docs/ via:
30
+
31
+
```
32
+
uv venv
33
+
source .venv/bin/activate
34
+
uv pip install mkdocs
35
+
uv pip install $(mkdocs-get-deps)
36
+
mkdocs serve
37
+
```
38
+
39
+
For reference / reproducing in the future, here is a summary of the versions used:
0 commit comments