Skip to content
Merged
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
4 changes: 0 additions & 4 deletions benchmark/nixlbench/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,6 @@ if nvshmem_available
]
endif

if not etcd_available
error('No runtime available or not found')
endif

if nvshmem_available
# Use nvcc directly for compilation and linking
nvcc = find_program('nvcc')
Expand Down
2 changes: 2 additions & 0 deletions benchmark/nixlbench/src/worker/worker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ static xferBenchRT *createRT(int *terminate) {
return new xferBenchNullRT();
}

#if HAVE_ETCD
if (XFERBENCH_RT_ETCD == xferBenchConfig::runtime_type) {
int total = 2;
if (XFERBENCH_MODE_SG == xferBenchConfig::mode) {
Expand All @@ -93,6 +94,7 @@ static xferBenchRT *createRT(int *terminate) {
}
return etcd_rt;
}
#endif

std::cerr << "Invalid runtime: " << xferBenchConfig::runtime_type << std::endl;
exit(EXIT_FAILURE);
Expand Down