Skip to content

Commit

Permalink
Add Performance test result
Browse files Browse the repository at this point in the history
  • Loading branch information
jcf94 committed Mar 29, 2019
1 parent 669a51c commit b6f6054
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,16 @@ in 56 Gb/s FDR

Perform Really low bw ...

Continue to be improved ...
Continue to be improved ...

[Commit 669a51c](https://github.com/jcf94/RDMA-wheel/commit/669a51ccbdaf28b2ee38319cceb241e986d464c2):

|Total Bytes|Block Size|Bandwidth|
|-|-|-|
|256 MB|4 KB|62 MB/s|
|512 MB|256 KB|2160 MB/s|
|512 MB|1 MB|2031 MB/s|

Bad ...

The memorypool is protected by std::mutex, maybe this can be improved.
4 changes: 2 additions & 2 deletions benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ int main(int argc, char* argv[])
RDMA_Endpoint* endpoint = session.ptp_connect(&pre_tcp);

// Prepare data
int total_data = 256 * MB;
int block_data = 4 * KB;
int total_data = 512 * MB;
int block_data = 1024 * KB;

if (strcmp(argv[1], "s") == 0)
{
Expand Down

0 comments on commit b6f6054

Please sign in to comment.