Skip to content

Commit

Permalink
CONTRIB/IBMOCK: Add EFA runs to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tvegas1 committed Jan 9, 2025
1 parent 26f9f1d commit d0c2718
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions contrib/ibmock/stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,3 +218,11 @@ int ibv_cmd_modify_qp(struct ibv_qp *qp, struct ibv_qp_attr *attr,

return ENOTSUP;
}

struct ibv_srq *ibv_create_srq(struct ibv_pd *pd,
struct ibv_srq_init_attr *srq_init_attr)
{
(void)pd;
(void)srq_init_attr;
return NULL;
}
2 changes: 1 addition & 1 deletion contrib/test_efa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ run_gtests() {
export CLOUD_TYPE
# Check basic ibmock functionality, error if mocked interface is not found
UCX_LOG_LEVEL=debug \
UCX_LOG_LEVEL=trace \
UCX_PROTO_INFO=y UCX_TLS=ud UCX_NET_DEVICES=rdmap0:1 \
./install/bin/ucx_perftest -l -t tag_bw
./install/bin/ucx_info -d
Expand Down

0 comments on commit d0c2718

Please sign in to comment.