Skip to content

Commit

Permalink
rdma: reduce kStartDepth to 128 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
ymjiang authored Jan 7, 2020
1 parent 3b7180d commit 7644025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rdma_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace ps {
#define DIVUP(x, y) (((x)+(y)-1)/(y))
#define ROUNDUP(x, y) (DIVUP((x), (y))*(y))

static const int kStartDepth = 1024;
static const int kStartDepth = 128;
static const int kWriteDepth = kStartDepth;

static const int kRxDepth = kStartDepth + kWriteDepth;
Expand Down

0 comments on commit 7644025

Please sign in to comment.