Skip to content

Commit

Permalink
Merge pull request openucx#24 from shizhibao/huawei
Browse files Browse the repository at this point in the history
Fix non-contiguous datatype UT
  • Loading branch information
nsosnsos authored Dec 6, 2020
2 parents 8dbbe39 + 5905629 commit bf2cf5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/gtest/ucg/test_cb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ ucg_builtin_request_t* ucg_cb_test::create_request(ucg_builtin_op_step_t *step)
comp_req->status = UCS_OK;
req->comp_req = comp_req;
ucg_builtin_op_t *op = new ucg_builtin_op_t;
op->send_dt = NULL;
op->recv_dt = NULL;
op->final_cb = NULL;
req->op = op;

Expand Down
2 changes: 2 additions & 0 deletions test/gtest/ucg/test_step.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ ucg_builtin_comp_slot_t *ucg_step_test::create_slot(ucg_builtin_op_step_t *step)
comp_req->status = UCS_OK;
req->comp_req = comp_req;
ucg_builtin_op_t *op = new ucg_builtin_op_t;
op->send_dt = NULL;
op->recv_dt = NULL;
op->final_cb = NULL;
req->op = op;

Expand Down

0 comments on commit bf2cf5b

Please sign in to comment.