Code Monkey home page Code Monkey logo

rdma_test's Introduction

RDMA_TEST

Examples for using RDMA and testing performance of RDMA communication.

Reference codes in https://github.com/jcxue/RDMA-Tutorial. Fix some bugs and unused function(in my view).

Usage

make

# At node 1
./rdma_test server ip_of_server port_of_server

# At node 2
./rdma_test client ip_of_server port_of_server

#Output will be in client.log && server.log

bugs

ibv_create_cq

For call of ibv_create_cq, the initial code set the number of cq to max_cq in dev_attr. It will cuase collapse and lead the processing of cq to be very slow. Set it to 512 makes the ultimate performance to be approaching to perftest.

ibv_poll_cq

  1. ibv_poll_cq may return with zero cq polled.
  2. Remote Write will also generate wc into server's cq.

ibv_post_send

  1. When I test the latency of send, the result shows that the latency of send_with_imm is much higher than expected, compared to a single send_wo_imm.
  2. Overlap post_send with poll_cq will greatly improve the performance of RDMA.
  3. We should gurantee correspondence bewteen client's send and server's recv when testing the latency of send.

DDIO

Reference:https://github.com/aliireza/ddio-bench Dependency: sudo apt-get install libpci-dev

rdma_test's People

Contributors

minxinhao avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.