The answer to your question is no.
If you want to understand how to actually select statistics of k-th order (including median, of course), in parallel tuning (distributed tuning, of course, is not completely different), look at this recent article in which I proposed a new algorithm that improves previous modern parallel selection algorithm:
Deterministic parallel selection algorithms on coarse-grained multi-computers
Here we use two weighted 3-medians as reference points and split them around these pentagons using a five-position split. We have also implemented and tested the algorithm using MPI. The results are very good, given that this is a deterministic algorithm using the worst-case O (n) selection algorithm. Using the O (n) QuickSelect randomized algorithm provides an extremely fast parallel algorithm.
source share