@@ -42,7 +42,7 @@ Every major topic is meant to be **readable, buildable, and measurable**.
4242| ` examples/03-modern-cpp/ ` | constexpr, move semantics, reserve, ranges |
4343| ` examples/04-simd-vectorization/ ` | auto-vectorization, intrinsics, SIMD wrappers |
4444| ` examples/05-concurrency/ ` | atomics, lock-free queue, OpenMP |
45- | ` docs/ ` | bilingual learning path, profiling guide, troubleshooting, reference |
45+ | ` docs/ ` | bilingual Pages whitepaper covering academy, architecture, playbook, reference, research |
4646| ` openspec/ ` | spec-driven development workflow and change history |
4747
4848## Quick start
@@ -61,8 +61,9 @@ Run one benchmark:
6161./build/release/examples/02-memory-cache/aos_soa_bench
6262```
6363
64- Need sanitizer-specific guidance after the quick start? See
65- [ ` docs/en/guides/validation.md ` ] ( docs/en/guides/validation.md ) .
64+ Need the redesigned docs route after the quick start? Start with
65+ [ ` docs/en/playbook/index.md ` ] ( docs/en/playbook/index.md ) , then continue to
66+ [ ` docs/en/guides/validation.md ` ] ( docs/en/guides/validation.md ) for sanitizer-specific guidance.
6667
6768## Validation commands
6869
@@ -75,13 +76,17 @@ cmake --preset=tsan && cmake --build build/tsan && ctest --preset=tsan
7576cmake --preset=ubsan && cmake --build build/ubsan && ctest --preset=ubsan
7677```
7778
78- ## Documentation and learning path
79+ ## Documentation entry points
7980
8081- ** Docs site:** < https://lessup.github.io/cpp-high-performance-guide/ >
81- - ** Quick start:** ` docs/en/getting-started/quickstart.md `
82- - ** Learning path:** ` docs/en/guides/learning-path.md `
83- - ** Profiling guide:** ` docs/en/guides/profiling-guide.md `
84- - ** Validation & sanitizers:** ` docs/en/guides/validation.md `
82+ - ** Academy:** [ ` docs/en/academy/index.md ` ] ( docs/en/academy/index.md )
83+ - ** Architecture:** [ ` docs/en/architecture/index.md ` ] ( docs/en/architecture/index.md )
84+ - ** Playbook:** [ ` docs/en/playbook/index.md ` ] ( docs/en/playbook/index.md )
85+ - ** Reference:** [ ` docs/en/reference/index.md ` ] ( docs/en/reference/index.md )
86+ - ** Research:** [ ` docs/en/research/index.md ` ] ( docs/en/research/index.md )
87+ - ** Quick start inside the playbook:** [ ` docs/en/getting-started/quickstart.md ` ] ( docs/en/getting-started/quickstart.md )
88+ - ** Profiling guide:** [ ` docs/en/guides/profiling-guide.md ` ] ( docs/en/guides/profiling-guide.md )
89+ - ** Validation & sanitizers:** [ ` docs/en/guides/validation.md ` ] ( docs/en/guides/validation.md )
8590- ** Chinese entry:** ` README.zh-CN.md ` and ` docs/zh/ `
8691
8792## Development workflow
0 commit comments