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
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Learning to Write _Less Slow_ C, C++, and Assembly Code
2
2
3
3
> The benchmarks in this repository don't aim to cover every topic entirely, but they help form a mindset and intuition for performance-oriented software design.
4
-
> It also provides an example of using some non-STL but de facto standard libraries in C++, importing them via CMake, and compiling from source.
4
+
> It also provides an example of using some non-[STL](https://en.wikipedia.org/wiki/Standard_Template_Library) but de facto standard libraries in C++, importing them via CMake, and compiling from source.
5
5
> For higher-level abstractions and languages, check out [`less_slow.rs`](https://github.com/ashvardanian/less_slow.rs) and [`less_slow.py`](https://github.com/ashvardanian/less_slow.py).
6
6
7
7
Much modern code suffers from common pitfalls, such as bugs, security vulnerabilities, and __performance bottlenecks__.
@@ -32,7 +32,7 @@ Follow the instructions below to run the code in your environment and compare it
32
32
33
33
## Running the Benchmarks
34
34
35
-
If you are on Windows, it's recommended that you set up a Linux environment using [WSL](https://docs.microsoft.com/en-us/windows/wsl/install).
35
+
-If you are on Windows, it's recommended that you set up a Linux environment using [WSL](https://docs.microsoft.com/en-us/windows/wsl/install).
36
36
- If you are on MacOS, consider using the non-native distribution of Clang from [Homebrew](https://brew.sh) or [MacPorts](https://www.macports.org).
37
37
- If you are on Linux, make sure to install CMake and a recent version of GCC or Clang compilers to support C++20 features.
0 commit comments