A dimension maximum value schedule is a communication schedule for finding the largest elements of a distributed array along one of its dimensions, yielding a reduced array with rank one less than the source.
A dimension maximum value schedule is described by a collective object with local components of class MaxvalDim. The public interface of the MaxvalDim class is
class DAD ; template<class T> class MaxvalDim { public : MaxvalDim(const DAD* res, const DAD* src, const int dim) ; void execute(T* resDat, T* srcDat) ; private : ... } ;