Skip to content

Commit 84e7710

Browse files
committed
Docs: Placeholders
1 parent d8fb261 commit 84e7710

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Learning to Write _Less Slow_ C, C++, and Assembly Code
22

33
> 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.
55
> 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).
66
77
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
3232

3333
## Running the Benchmarks
3434

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).
3636
- If you are on MacOS, consider using the non-native distribution of Clang from [Homebrew](https://brew.sh) or [MacPorts](https://www.macports.org).
3737
- If you are on Linux, make sure to install CMake and a recent version of GCC or Clang compilers to support C++20 features.
3838

less_slow.cpp

+26-2
Original file line numberDiff line numberDiff line change
@@ -3435,7 +3435,18 @@ BENCHMARK(graph_rank<graph_flat_set_t, 2'500, 150>)->MinTime(10)->Name("graph_ra
34353435

34363436
#pragma endregion // Trees, Graphs, and Data Layouts
34373437

3438-
#pragma region Concurrent Data Structures
3438+
#pragma region Smart Pointers
3439+
3440+
/**
3441+
* More often than not, people allocate nodes of graphs or trees individually,
3442+
* never considering @b implicit or @b succinct data-structures, as alternatives.
3443+
*/
3444+
3445+
#include <memory> // `std::unique_ptr`, `std::shared_ptr`, `std::weak_ptr`
3446+
3447+
#pragma endregion // Smart Pointers
3448+
3449+
#pragma region Concurrency
34393450

34403451
/**
34413452
* @see "C++ atomics, from basic to advanced. What do they really do?"
@@ -3446,7 +3457,7 @@ BENCHMARK(graph_rank<graph_flat_set_t, 2'500, 150>)->MinTime(10)->Name("graph_ra
34463457
#include <mutex> // `std::mutex`
34473458
#include <shared_mutex> // `std::shared_mutex`
34483459

3449-
#pragma endregion // Concurrent Data Structures
3460+
#pragma endregion // Concurrency
34503461

34513462
#pragma endregion // - Structures, Tuples, ADTs, AOS, SOA
34523463

@@ -3888,6 +3899,19 @@ BENCHMARK(logging<log_fmt_t>)->Name("log_fmt")->MinTime(2);
38883899

38893900
#pragma endregion // - Exceptions, Backups, Logging
38903901

3902+
#pragma region - Networking and Databases
3903+
3904+
/**
3905+
* There are legends about the complexity of dependency management in C++.
3906+
* It often prohibits developers from designing larger systems in C++, as
3907+
* the Web, for example, requires a lot of dependencies.
3908+
*/
3909+
#pragma region ASIO
3910+
3911+
#pragma endregion // ASIO
3912+
3913+
#pragma endregion // - Networking and Databases
3914+
38913915
/**
38923916
* The default variant is to invoke the `BENCHMARK_MAIN()` macro.
38933917
* Alternatively, we can unpack it, if we want to augment the main function

0 commit comments

Comments
 (0)