AUTH's THMMY "Parallel and distributed systems" course assignments.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
756 B

  1. /*!
  2. * \file
  3. * \brief Distributed sort implementation
  4. *
  5. * \author
  6. * Christos Choutouridis AEM:8997
  7. * <cchoutou@ece.auth.gr>
  8. */
  9. #include "utils.hpp"
  10. #include "distsort.hpp"
  11. //! Statistic variables for exchange optimization
  12. distStat_t localStat, remoteStat;
  13. //! Performance timers for each one of the "costly" functions
  14. Timing TfullSort, Texchange, Tminmax, TelbowSort;
  15. bool isActive(mpi_id_t node, size_t nodes) {
  16. if (!((nodes > 0) &&
  17. (nodes <= std::numeric_limits<mpi_id_t>::max()) ))
  18. throw std::runtime_error("(isActive) Non-acceptable value of MPI Nodes\n");
  19. // ^ Assert that mpi_id_t can hold nodes, and thus we can cast without data loss!
  20. return (node >= 0) && (node < static_cast<mpi_id_t>(nodes));
  21. }