fix(dht): pass communicator to DHT_create

This commit is contained in:
Max Lübke 2025-02-26 13:22:37 +01:00
parent 680069b8ac
commit 751faeabc8

View File

@ -73,7 +73,8 @@ DHT_Wrapper::DHT_Wrapper(MPI_Comm dht_comm, std::uint64_t dht_size,
.key_size = static_cast<int>(key_size),
.data_size = static_cast<int>(data_size),
.bucket_count = static_cast<unsigned int>(buckets_per_process),
.hash_func = &poet::md5_sum};
.hash_func = &poet::md5_sum,
.comm = dht_comm};
dht_object = DHT_create(&dht_init);
#endif