├── .clang-format ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── TODO.md ├── blog ├── InfiniBand, Verbs, RDMA _ The Geek in the Corner.pdf ├── 【RDMA】RDMA技术详解.pdf └── 参考.md ├── docs ├── ibverbs_api.md ├── images │ └── Markdown-image-2021-12-04-10-39-50.png ├── 性能测试.md ├── 术语.md ├── 核心概念.md ├── 注意和优化.md └── 编程流程.md ├── manual └── RDMA_Aware_Programming_user_manual.pdf ├── tests └── basic │ ├── Makefile │ ├── build │ ├── pingpong │ └── rdma_device │ ├── pingpong.cc │ ├── rc_pingpong_test.sh │ └── rdma_device.cc └── tmp.cc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RDMA-Programming 2 | rdma编程学习 3 | -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/TODO.md -------------------------------------------------------------------------------- /blog/InfiniBand, Verbs, RDMA _ The Geek in the Corner.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/blog/InfiniBand, Verbs, RDMA _ The Geek in the Corner.pdf -------------------------------------------------------------------------------- /blog/【RDMA】RDMA技术详解.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/blog/【RDMA】RDMA技术详解.pdf -------------------------------------------------------------------------------- /blog/参考.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/blog/参考.md -------------------------------------------------------------------------------- /docs/ibverbs_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/docs/ibverbs_api.md -------------------------------------------------------------------------------- /docs/images/Markdown-image-2021-12-04-10-39-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/docs/images/Markdown-image-2021-12-04-10-39-50.png -------------------------------------------------------------------------------- /docs/性能测试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/docs/性能测试.md -------------------------------------------------------------------------------- /docs/术语.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/docs/术语.md -------------------------------------------------------------------------------- /docs/核心概念.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/docs/核心概念.md -------------------------------------------------------------------------------- /docs/注意和优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/docs/注意和优化.md -------------------------------------------------------------------------------- /docs/编程流程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/docs/编程流程.md -------------------------------------------------------------------------------- /manual/RDMA_Aware_Programming_user_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/manual/RDMA_Aware_Programming_user_manual.pdf -------------------------------------------------------------------------------- /tests/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/tests/basic/Makefile -------------------------------------------------------------------------------- /tests/basic/build/pingpong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/tests/basic/build/pingpong -------------------------------------------------------------------------------- /tests/basic/build/rdma_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/tests/basic/build/rdma_device -------------------------------------------------------------------------------- /tests/basic/pingpong.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/tests/basic/pingpong.cc -------------------------------------------------------------------------------- /tests/basic/rc_pingpong_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/tests/basic/rc_pingpong_test.sh -------------------------------------------------------------------------------- /tests/basic/rdma_device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzh-wisdom/RDMA-Programming/HEAD/tests/basic/rdma_device.cc -------------------------------------------------------------------------------- /tmp.cc: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------