init.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2010-2012 University of Bordeaux
  4. * Copyright (C) 2012 CNRS
  5. * Copyright (C) 2012 Vincent Danjean <Vincent.Danjean@ens-lyon.org>
  6. *
  7. * StarPU is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as published by
  9. * the Free Software Foundation; either version 2.1 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * StarPU is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. *
  16. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  17. */
  18. #include <pthread.h>
  19. #include "socl.h"
  20. #include "gc.h"
  21. #include "mem_objects.h"
  22. int _starpu_init_failed;
  23. int _starpu_init = 0;
  24. pthread_mutex_t _socl_mutex = PTHREAD_MUTEX_INITIALIZER;
  25. void socl_init_starpu(void) {
  26. pthread_mutex_lock(&_socl_mutex);
  27. if( ! _starpu_init ){
  28. struct starpu_conf conf;
  29. starpu_conf_init(&conf);
  30. conf.ncuda = 0;
  31. _starpu_init_failed = starpu_init(&conf);
  32. if (_starpu_init_failed != 0)
  33. {
  34. DEBUG_MSG("Error when calling starpu_init: %d\n", _starpu_init_failed);
  35. }
  36. else {
  37. if (starpu_cpu_worker_get_count() == 0)
  38. {
  39. DEBUG_MSG("StarPU did not find any CPU device. SOCL needs at least 1 CPU.\n");
  40. _starpu_init_failed = -ENODEV;
  41. }
  42. if (starpu_opencl_worker_get_count() == 0)
  43. {
  44. DEBUG_MSG("StarPU didn't find any OpenCL device. Try disabling CUDA support in StarPU (export STARPU_NCUDA=0).\n");
  45. _starpu_init_failed = -ENODEV;
  46. }
  47. }
  48. /* Disable dataflow implicit dependencies */
  49. starpu_data_set_default_sequential_consistency_flag(0);
  50. _starpu_init = 1;
  51. }
  52. pthread_mutex_unlock(&_socl_mutex);
  53. }
  54. /**
  55. * Initialize SOCL
  56. */
  57. __attribute__((constructor)) static void socl_init() {
  58. mem_object_init();
  59. gc_start();
  60. }
  61. /**
  62. * Shutdown SOCL
  63. */
  64. __attribute__((destructor)) static void socl_shutdown() {
  65. pthread_mutex_lock(&_socl_mutex);
  66. if( _starpu_init )
  67. starpu_task_wait_for_all();
  68. gc_stop();
  69. if( _starpu_init )
  70. starpu_task_wait_for_all();
  71. int active_entities = gc_active_entity_count();
  72. if (active_entities != 0)
  73. DEBUG_MSG("Unreleased entities: %d\n", active_entities);
  74. if( _starpu_init )
  75. starpu_shutdown();
  76. pthread_mutex_unlock(&_socl_mutex);
  77. }