123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010-2012, 2016 University of Bordeaux
- * Copyright (C) 2012,2014,2016,2017 CNRS
- * Copyright (C) 2012 Vincent Danjean <Vincent.Danjean@ens-lyon.org>
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <stdlib.h>
- #include "../src/core/workers.h"
- #include "socl.h"
- #include "gc.h"
- #include "mem_objects.h"
- int _starpu_init_failed;
- static enum initialization _socl_init = UNINITIALIZED;
- static starpu_pthread_mutex_t _socl_mutex = STARPU_PTHREAD_MUTEX_INITIALIZER;
- static starpu_pthread_cond_t _socl_cond = STARPU_PTHREAD_COND_INITIALIZER;
- static pthread_t _socl_thread_init;
- static struct starpu_conf conf;
- int socl_init_starpu(void) {
- STARPU_PTHREAD_MUTEX_LOCK(&_socl_mutex);
- if (_socl_init == INITIALIZED)
- {
- STARPU_PTHREAD_MUTEX_UNLOCK(&_socl_mutex);
- return 0;
- }
- if (_socl_init == CHANGING)
- {
- /* Avoid recursion when starpu_init calls hwloc initialization which uses its opencl plugin */
- if (pthread_equal(_socl_thread_init, pthread_self()))
- {
- STARPU_PTHREAD_MUTEX_UNLOCK(&_socl_mutex);
- return -1;
- }
- /* Somebody else is initializing already, wait for him */
- while (_socl_init != INITIALIZED)
- STARPU_PTHREAD_COND_WAIT(&_socl_cond, &_socl_mutex);
- STARPU_PTHREAD_MUTEX_UNLOCK(&_socl_mutex);
- return 0;
- }
- _socl_init = CHANGING;
- _socl_thread_init = pthread_self();
- STARPU_PTHREAD_MUTEX_UNLOCK(&_socl_mutex);
- starpu_conf_init(&conf);
- unsetenv("STARPU_NCPU");
- unsetenv("STARPU_NCUDA");
- conf.ncuda = 0;
- conf.ncpus = 0;
- _starpu_init_failed = starpu_init(&conf);
- if (_starpu_init_failed != 0)
- {
- DEBUG_MSG("Error when calling starpu_init: %d\n", _starpu_init_failed);
- }
- else {
- if (starpu_opencl_worker_get_count() == 0)
- {
- DEBUG_MSG("StarPU didn't find any OpenCL device. Try disabling CUDA support in StarPU (export STARPU_NCUDA=0).\n");
- _starpu_init_failed = -ENODEV;
- }
- }
- /* Disable dataflow implicit dependencies */
- starpu_data_set_default_sequential_consistency_flag(0);
- STARPU_PTHREAD_MUTEX_LOCK(&_socl_mutex);
- _socl_init = INITIALIZED;
- STARPU_PTHREAD_COND_BROADCAST(&_socl_cond);
- STARPU_PTHREAD_MUTEX_UNLOCK(&_socl_mutex);
- return 0;
- }
- /**
- * Initialize SOCL
- */
- __attribute__((constructor)) static void socl_init() {
- mem_object_init();
- gc_start();
- }
- void soclShutdown() {
- static int shutdown = 0;
- if (!shutdown) {
- shutdown = 1;
- STARPU_PTHREAD_MUTEX_LOCK(&_socl_mutex);
- if( _socl_init )
- starpu_task_wait_for_all();
- gc_stop();
- if( _socl_init )
- starpu_task_wait_for_all();
- int active_entities = gc_active_entity_count();
- if (active_entities != 0) {
- DEBUG_MSG("Unreleased entities: %d\n", active_entities);
- gc_print_remaining_entities();
- }
- if( _socl_init && _starpu_init_failed != -ENODEV)
- starpu_shutdown();
- STARPU_PTHREAD_MUTEX_UNLOCK(&_socl_mutex);
- if (socl_devices != NULL) {
- free(socl_devices);
- socl_devices = NULL;
- }
- }
- }
- /**
- * Shutdown SOCL
- */
- __attribute__((destructor)) static void socl_shutdown() {
- char * skip_str = getenv("SOCL_SKIP_DESTRUCTOR");
- int skip = (skip_str != NULL ? atoi(skip_str) : 0);
- if (!skip) soclShutdown();
- }
|