gitextract_168c70l7/ ├── .clang-format ├── .claude-plugin/ │ ├── marketplace.json │ └── plugin.json ├── .coveragerc ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ └── pythonpackage.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── Makefile ├── Procfile ├── README.rst ├── app.py ├── app_test.py ├── docs/ │ ├── 404.rst │ ├── Makefile │ ├── _extra/ │ │ └── robots.txt │ ├── _static/ │ │ ├── .gitignore │ │ ├── carbonad.css │ │ └── style.css │ ├── _templates/ │ │ ├── carbonad.html │ │ ├── cheatsheets.html │ │ ├── layout.html │ │ ├── link.html │ │ └── sidebarintro.html │ ├── conf.py │ ├── index.rst │ └── notes/ │ ├── appendix/ │ │ ├── disaggregated-prefill-decode.rst │ │ ├── index.rst │ │ ├── megatron-efa-monitoring.rst │ │ ├── nccl-gin.rst │ │ ├── python-gdb.rst │ │ └── python-walrus.rst │ ├── asyncio/ │ │ ├── index.rst │ │ ├── python-asyncio-advanced.rst │ │ ├── python-asyncio-basic.rst │ │ ├── python-asyncio-guide.rst │ │ └── python-asyncio-server.rst │ ├── basic/ │ │ ├── index.rst │ │ ├── python-basic.rst │ │ ├── python-dict.rst │ │ ├── python-func.rst │ │ ├── python-future.rst │ │ ├── python-generator.rst │ │ ├── python-heap.rst │ │ ├── python-list.rst │ │ ├── python-object.rst │ │ ├── python-rexp.rst │ │ ├── python-set.rst │ │ ├── python-typing.rst │ │ └── python-unicode.rst │ ├── concurrency/ │ │ ├── index.rst │ │ ├── python-futures.rst │ │ ├── python-multiprocessing.rst │ │ └── python-threading.rst │ ├── database/ │ │ ├── index.rst │ │ ├── python-sqlalchemy-orm.rst │ │ ├── python-sqlalchemy-query.rst │ │ └── python-sqlalchemy.rst │ ├── extension/ │ │ ├── cpp-from-python.rst │ │ ├── index.rst │ │ ├── python-capi.rst │ │ ├── python-cext-modern.rst │ │ └── python-ctypes.rst │ ├── hpc/ │ │ ├── index.rst │ │ └── slurm.rst │ ├── llm/ │ │ ├── index.rst │ │ ├── llm-bench.rst │ │ ├── llm-serving.rst │ │ ├── megatron.rst │ │ └── pytorch.rst │ ├── network/ │ │ ├── index.rst │ │ ├── python-socket-async.rst │ │ ├── python-socket-server.rst │ │ ├── python-socket-sniffer.rst │ │ ├── python-socket-ssl.rst │ │ ├── python-socket.rst │ │ └── python-ssh.rst │ ├── os/ │ │ ├── index.rst │ │ ├── python-date.rst │ │ ├── python-io.rst │ │ └── python-os.rst │ ├── python-new-py3.rst │ └── security/ │ ├── index.rst │ ├── python-crypto.rst │ ├── python-tls.rst │ └── python-vulnerability.rst ├── requirements.txt ├── runtime.txt ├── skills/ │ └── py/ │ ├── SKILL.md │ └── references/ │ ├── guidelines.md │ └── structure.md └── src/ ├── basic/ │ ├── asyncio_.py │ ├── basic.py │ ├── cext_.py │ ├── concurrency_.py │ ├── crypto_.py │ ├── datetime_.py │ ├── dict.py │ ├── fileio_.py │ ├── func.py │ ├── future_.py │ ├── generator.py │ ├── heap.py │ ├── list.py │ ├── object.py │ ├── os_.py │ ├── rexp.py │ ├── set.py │ ├── socket_.py │ ├── sqlalchemy_core.py │ ├── sqlalchemy_orm.py │ ├── sqlalchemy_query.py │ ├── typing_.py │ └── unicode_.py ├── cext/ │ ├── CMakeLists.txt │ ├── README.md │ ├── capi/ │ │ ├── args.c │ │ ├── errors.c │ │ ├── gil.c │ │ ├── setup.py │ │ ├── simple.c │ │ ├── test_capi.py │ │ └── types_demo.c │ ├── conftest.py │ ├── example.cpp │ ├── fib.c │ ├── gil_example.cpp │ ├── numpy_example.cpp │ ├── setup.py │ ├── test_cext.py │ └── vector.cpp ├── cpp_from_python/ │ ├── CMakeLists.txt │ └── cpp_from_py.cpp ├── gin/ │ ├── Dockerfile │ ├── Makefile │ ├── run.enroot │ └── run.sbatch ├── llm/ │ ├── sglang/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.rst │ │ ├── bench.sh │ │ ├── run.sbatch │ │ └── test.sh │ ├── tensorrt-llm/ │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.rst │ │ ├── bench.sh │ │ ├── run.sbatch │ │ └── test.sh │ └── vllm/ │ ├── Dockerfile │ ├── Makefile │ ├── README.rst │ ├── bench.sh │ ├── offline_bench.py │ ├── offline_bench.sh │ ├── run.sbatch │ ├── run.sh │ ├── sweep.sbatch │ ├── sweep.sh │ └── test.sh ├── megatron/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── enroot.sh │ ├── entrypoint.py │ ├── recipes/ │ │ └── deepseek_v2_lite_pretrain.py │ ├── srun.sh │ └── viztracer_plugin.py ├── new_py3/ │ └── py3.py ├── nixl/ │ ├── Dockerfile │ ├── Makefile │ ├── bench.sh │ ├── nixl.sbatch │ └── vllm.sbatch └── security/ └── vulnerability_.py