Multiprocessing Across Multiple Dataloaders

I have a dataset, which I can weight in different ways.

I want to test performance of model (no training, only testing) on different weighting schemes.

Hence, I want to run different Dataloaders (for different weighting schemes ; done using sampler in Dataloader) in parallel (using multiprocessing).

Is there a working example of such use case.