docs: document build parallel limit - #2132
Conversation
Greptile SummaryThis PR adds a short troubleshooting tip to
Confidence Score: 5/5Documentation-only change; no code paths are modified and no existing behaviour is altered. The change adds nine lines of Markdown explaining an already-documented environment variable. The example command is correct, the prose is accurate, and the new content is placed logically next to the relevant table row. Files Needing Attention: No files require special attention.
|
| Filename | Overview |
|---|---|
| kt-kernel/README.md | Documentation-only addition: adds a memory-constrained build troubleshooting tip with a concrete retry example for CPUINFER_PARALLEL. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Run ./install.sh build] --> B{cmake --build succeeds?}
B -- Yes --> C[Build complete]
B -- No / OOM error --> D[Set CPUINFER_PARALLEL=N where N < auto-detected]
D --> A
Reviews (1): Last reviewed commit: "[docs]: document build parallel limit" | Re-trigger Greptile
Summary
CPUINFER_PARALLELas the supported way to reduce kt-kernel build parallelism.cmake --build ... --parallel=<N>on memory-constrained machines.Refs #673
Test Plan
pythondocumentation guard check for the new build parallelism guidance and setup.py forwardinggit diff --check HEAD~1..HEAD