Luis Altenkort
Luis Altenkort
Maybe there is an even better place for this, which you can find here: https://github.com/LatticeQCD/SIMULATeQCD/community There are multiple things that are still missing there, which we should add.
> It would be useful to add a short test to the CommunicationBase setup. This way with each run we can be sure e.g. cuda-aware mpi and cuda p2p are...
We could also somehow incorporate https://github.com/lukas-mazur/cudaAwareMPITest into the setup
I think someone already tested this some time ago (maybe @dbollweg ?), but I agree. Although I would be surprised if it there is was any difference.
I do that usually like this: ``` from typing import NamedTuple class test(NamedTuple): blub: int bla: float this_test = test(4, 3.2) this_test.blub = 5 # this will fail, because it's...