Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions fabtests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ nobase_dist_config_DATA = \
pytest/efa/test_gda.py \
pytest/efa/test_multi_ep_stress.py \
pytest/efa/test_efa_mmap.py \
pytest/efa/test_hw_cntr.py \
pytest/shm/conftest.py \
pytest/shm/shm_common.py \
pytest/shm/test_av.py \
Expand Down
8 changes: 8 additions & 0 deletions fabtests/prov/efa/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ endif BUILD_EFA_RDMA_CHECKER
if EFAGDA
bin_PROGRAMS += prov/efa/src/fi_efa_gda
endif EFAGDA
if HAVE_EFADV_CREATE_COMP_CNTR
bin_PROGRAMS += prov/efa/src/fi_efa_hw_cntr
endif HAVE_EFADV_CREATE_COMP_CNTR
endif HAVE_VERBS_DEVEL

efa_rnr_srcs = \
Expand Down Expand Up @@ -140,5 +143,10 @@ endif EFAGDA

EXTRA_DIST += prov/efa/src/efagda

prov_efa_src_fi_efa_hw_cntr_SOURCES = \
prov/efa/src/efa_hw_cntr_test.c \
$(benchmarks_srcs)
prov_efa_src_fi_efa_hw_cntr_LDADD = libfabtests.la

endif HAVE_VERBS_DEVEL
endif ENABLE_EFA
9 changes: 9 additions & 0 deletions fabtests/prov/efa/configure.m4
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ AS_IF([test x"$have_efadv" = x"1"], [
])
AM_CONDITIONAL([BUILD_EFA_RDMA_CHECKER], [test $efa_rdma_checker_happy -eq 1])

have_efadv_create_comp_cntr=0
AS_IF([test x"$have_efadv" = x"1"], [
AC_CHECK_DECL([efadv_create_comp_cntr],
[have_efadv_create_comp_cntr=1],
[have_efadv_create_comp_cntr=0],
[[#include <infiniband/efadv.h>]])
])
AM_CONDITIONAL([HAVE_EFADV_CREATE_COMP_CNTR], [test $have_efadv_create_comp_cntr -eq 1])

dnl EFA GDA support
AC_ARG_ENABLE([efagda],
[AS_HELP_STRING([--enable-efagda],
Expand Down
Loading
Loading