Home | History | Annotate | Download | only in parallel

Lines Matching refs:rank

26  *  @brief Functions to find elements of a certain global rank in
105 * @brief Splits several sorted sequences at a certain global rank,
113 * @param rank The global rank to partition at.
124 RankType rank,
154 if (rank == N)
164 _GLIBCXX_PARALLEL_ASSERT(rank >= 0);
165 _GLIBCXX_PARALLEL_ASSERT(rank < N);
210 difference_type localrank = rank / l;
262 difference_type skew = rank / (n + 1) - leftsize;
361 * @brief Selects the element at a certain global rank from several
368 * @param rank The global rank to partition at.
369 * @param offset The rank of the selected element in the global
377 multiseq_selection(RanSeqs begin_seqs, RanSeqs end_seqs, RankType rank,
399 if (m == 0 || N == 0 || rank < 0 || rank >= N)
401 // Result undefined when there is no data or rank is outside bounds.
451 difference_type localrank = rank / l;
493 difference_type skew = rank / (n + 1) - leftsize;