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.
 
 
 
 
 
 

55 line
1.2 KiB

  1. /**
  2. * \file v1.hpp
  3. * \brief
  4. *
  5. * \author
  6. * Christos Choutouridis AEM:8997
  7. * <cchoutou@ece.auth.gr>
  8. */
  9. #include "v1.hpp"
  10. /*!
  11. * \fn void init_workers()
  12. *
  13. * Initialize worker settings
  14. */
  15. void init_workers() {
  16. #if defined CILK
  17. size_t cilk_w = __cilkrts_get_nworkers();
  18. if (!session.max_threads)
  19. session.max_threads = (session.slices) ? (session.slices) : cilk_w;
  20. // else if (session.max_threads < cilk_w)
  21. // __cilkrts_set_param("nworkers", "4");
  22. // else ignored by cilk
  23. #elif defined OMP
  24. // omp_set_dynamic(1);
  25. size_t omp_w = (size_t)omp_get_max_threads();
  26. if (!session.max_threads) {
  27. session.max_threads = (session.slices) ? (session.slices) : omp_w;
  28. // omp_set_dynamic(1);
  29. }
  30. else if (session.max_threads < omp_w) {
  31. // omp_set_dynamic(0);
  32. omp_set_num_threads(session.max_threads);
  33. }
  34. // else ignored by omp
  35. #elif defined PTHREADS
  36. size_t pth_w = std::thread::hardware_concurrency();
  37. if (!session.max_threads)
  38. session.max_threads = (session.slices) ? (session.slices) : pth_w;
  39. #else
  40. #endif
  41. if (!session.slices)
  42. session.slices = session.max_threads;
  43. openblas_set_num_threads(1); // Limit OpenBLAS to 1 thread
  44. }