123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2013 Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2012, 2013 Centre National de la Recherche Scientifique
- * Copyright (C) 2011 Télécom-SudParis
- *
- * 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 <starpu.h>
- #include <starpu_profiling.h>
- #include <common/config.h>
- #include <common/utils.h>
- #include <unistd.h>
- #include <sys/stat.h>
- #include <core/perfmodel/perfmodel.h>
- #include <core/jobs.h>
- #include <core/workers.h>
- #include <datawizard/datawizard.h>
- #ifdef STARPU_HAVE_WINDOWS
- #include <windows.h>
- #endif
- /* This flag indicates whether performance models should be calibrated or not.
- * 0: models need not be calibrated
- * 1: models must be calibrated
- * 2: models must be calibrated, existing models are overwritten.
- */
- static unsigned calibrate_flag = 0;
- void _starpu_set_calibrate_flag(unsigned val)
- {
- calibrate_flag = val;
- }
- unsigned _starpu_get_calibrate_flag(void)
- {
- return calibrate_flag;
- }
- enum starpu_perfmodel_archtype starpu_worker_get_perf_archtype(int workerid)
- {
- struct _starpu_machine_config *config = _starpu_get_machine_config();
- /* This workerid may either be a basic worker or a combined worker */
- unsigned nworkers = config->topology.nworkers;
- if (workerid < (int)config->topology.nworkers)
- return config->workers[workerid].perf_arch;
- /* We have a combined worker */
- unsigned ncombinedworkers = config->topology.ncombinedworkers;
- STARPU_ASSERT(workerid < (int)(ncombinedworkers + nworkers));
- return config->combined_workers[workerid - nworkers].perf_arch;
- }
- /*
- * PER ARCH model
- */
- static double per_arch_task_expected_perf(struct starpu_perfmodel *model, enum starpu_perfmodel_archtype arch, struct starpu_task *task, unsigned nimpl)
- {
- double exp = NAN;
- double (*per_arch_cost_function)(struct starpu_task *task, enum starpu_perfmodel_archtype arch, unsigned nimpl);
- double (*per_arch_cost_model)(struct starpu_data_descr *);
- per_arch_cost_function = model->per_arch[arch][nimpl].cost_function;
- per_arch_cost_model = model->per_arch[arch][nimpl].cost_model;
- if (per_arch_cost_function)
- exp = per_arch_cost_function(task, arch, nimpl);
- else if (per_arch_cost_model)
- exp = per_arch_cost_model(task->buffers);
- return exp;
- }
- /*
- * Common model
- */
- double starpu_worker_get_relative_speedup(enum starpu_perfmodel_archtype perf_archtype)
- {
- if (perf_archtype < STARPU_CUDA_DEFAULT)
- {
- return _STARPU_CPU_ALPHA * (perf_archtype + 1);
- }
- else if (perf_archtype < STARPU_OPENCL_DEFAULT)
- {
- return _STARPU_CUDA_ALPHA;
- }
- else if (perf_archtype < STARPU_NARCH_VARIATIONS)
- {
- return _STARPU_OPENCL_ALPHA;
- }
- STARPU_ABORT();
- /* Never reached ! */
- return NAN;
- }
- static double common_task_expected_perf(struct starpu_perfmodel *model, enum starpu_perfmodel_archtype arch, struct starpu_task *task, unsigned nimpl)
- {
- double exp;
- double alpha;
- if (model->cost_function)
- {
- exp = model->cost_function(task, nimpl);
- alpha = starpu_worker_get_relative_speedup(arch);
- STARPU_ASSERT(!_STARPU_IS_ZERO(alpha));
- return (exp/alpha);
- }
- else if (model->cost_model)
- {
- exp = model->cost_model(task->buffers);
- alpha = starpu_worker_get_relative_speedup(arch);
- STARPU_ASSERT(!_STARPU_IS_ZERO(alpha));
- return (exp/alpha);
- }
- return NAN;
- }
- void _starpu_load_perfmodel(struct starpu_perfmodel *model)
- {
- if (!model || model->is_loaded)
- return;
- int load_model = _starpu_register_model(model);
- if (!load_model)
- return;
- switch (model->type)
- {
- case STARPU_PER_ARCH:
- _starpu_load_per_arch_based_model(model);
- break;
- case STARPU_COMMON:
- _starpu_load_common_based_model(model);
- break;
- case STARPU_HISTORY_BASED:
- case STARPU_NL_REGRESSION_BASED:
- _starpu_load_history_based_model(model, 1);
- break;
- case STARPU_REGRESSION_BASED:
- _starpu_load_history_based_model(model, 0);
- break;
- default:
- STARPU_ABORT();
- }
- model->is_loaded = 1;
- }
- static double starpu_model_expected_perf(struct starpu_task *task, struct starpu_perfmodel *model, enum starpu_perfmodel_archtype arch, unsigned nimpl)
- {
- if (model)
- {
- struct _starpu_job *j = _starpu_get_job_associated_to_task(task);
- switch (model->type)
- {
- case STARPU_PER_ARCH:
- return per_arch_task_expected_perf(model, arch, task, nimpl);
- case STARPU_COMMON:
- return common_task_expected_perf(model, arch, task, nimpl);
- case STARPU_HISTORY_BASED:
- return _starpu_history_based_job_expected_perf(model, arch, j, nimpl);
- case STARPU_REGRESSION_BASED:
- return _starpu_regression_based_job_expected_perf(model, arch, j, nimpl);
- case STARPU_NL_REGRESSION_BASED:
- return _starpu_non_linear_regression_based_job_expected_perf(model, arch, j,nimpl);
- default:
- STARPU_ABORT();
- }
- }
- /* no model was found */
- return 0.0;
- }
- double starpu_task_expected_length(struct starpu_task *task, enum starpu_perfmodel_archtype arch, unsigned nimpl)
- {
- return starpu_model_expected_perf(task, task->cl->model, arch, nimpl);
- }
- double starpu_task_expected_power(struct starpu_task *task, enum starpu_perfmodel_archtype arch, unsigned nimpl)
- {
- return starpu_model_expected_perf(task, task->cl->power_model, arch, nimpl);
- }
- double starpu_task_expected_conversion_time(struct starpu_task *task,
- enum starpu_perfmodel_archtype arch,
- unsigned nimpl)
- {
- unsigned i;
- double sum = 0.0;
- enum starpu_node_kind node_kind;
- for (i = 0; i < task->cl->nbuffers; i++)
- {
- starpu_data_handle_t handle;
- struct starpu_task *conversion_task;
- handle = STARPU_TASK_GET_HANDLE(task, i);
- if (!_starpu_data_is_multiformat_handle(handle))
- continue;
- if (arch < STARPU_CUDA_DEFAULT)
- node_kind = STARPU_CPU_RAM;
- else if (arch < STARPU_OPENCL_DEFAULT)
- node_kind = STARPU_CUDA_RAM;
- else
- node_kind = STARPU_OPENCL_RAM;
- if (!_starpu_handle_needs_conversion_task_for_arch(handle, node_kind))
- continue;
- conversion_task = _starpu_create_conversion_task_for_arch(handle, node_kind);
- sum += starpu_task_expected_length(conversion_task, arch, nimpl);
- _starpu_spin_lock(&handle->header_lock);
- handle->refcnt--;
- handle->busy_count--;
- _starpu_spin_unlock(&handle->header_lock);
- starpu_task_clean(conversion_task);
- free(conversion_task);
- }
- return sum;
- }
- /* Predict the transfer time (in µs) to move a handle to a memory node */
- double starpu_data_expected_transfer_time(starpu_data_handle_t handle, unsigned memory_node, enum starpu_data_access_mode mode)
- {
- /* If we don't need to read the content of the handle */
- if (!(mode & STARPU_R))
- return 0.0;
- if (_starpu_is_data_present_or_requested(handle, memory_node))
- return 0.0;
- size_t size = _starpu_data_get_size(handle);
- /* XXX in case we have an abstract piece of data (eg. with the
- * void interface, this does not introduce any overhead, and we
- * don't even want to consider the latency that is not
- * relevant). */
- if (size == 0)
- return 0.0;
- unsigned src_node = _starpu_select_src_node(handle, memory_node);
- return _starpu_predict_transfer_time(src_node, memory_node, size);
- }
- /* Data transfer performance modeling */
- double starpu_task_expected_data_transfer_time(unsigned memory_node, struct starpu_task *task)
- {
- unsigned nbuffers = task->cl->nbuffers;
- unsigned buffer;
- double penalty = 0.0;
- for (buffer = 0; buffer < nbuffers; buffer++)
- {
- starpu_data_handle_t handle = STARPU_TASK_GET_HANDLE(task, buffer);
- enum starpu_data_access_mode mode = STARPU_CODELET_GET_MODE(task->cl, buffer);
- penalty += starpu_data_expected_transfer_time(handle, memory_node, mode);
- }
- return penalty;
- }
- /* Return the expected duration of the entire task bundle in µs */
- double starpu_task_bundle_expected_length(starpu_task_bundle_t bundle, enum starpu_perfmodel_archtype arch, unsigned nimpl)
- {
- double expected_length = 0.0;
- /* We expect the length of the bundle the be the sum of the different tasks length. */
- STARPU_PTHREAD_MUTEX_LOCK(&bundle->mutex);
- struct _starpu_task_bundle_entry *entry;
- entry = bundle->list;
- while (entry)
- {
- if(!entry->task->scheduled)
- {
- double task_length = starpu_task_expected_length(entry->task, arch, nimpl);
- /* In case the task is not calibrated, we consider the task
- * ends immediately. */
- if (task_length > 0.0)
- expected_length += task_length;
- }
- entry = entry->next;
- }
- STARPU_PTHREAD_MUTEX_UNLOCK(&bundle->mutex);
- return expected_length;
- }
- /* Return the expected power consumption of the entire task bundle in J */
- double starpu_task_bundle_expected_power(starpu_task_bundle_t bundle, enum starpu_perfmodel_archtype arch, unsigned nimpl)
- {
- double expected_power = 0.0;
- /* We expect total consumption of the bundle the be the sum of the different tasks consumption. */
- STARPU_PTHREAD_MUTEX_LOCK(&bundle->mutex);
- struct _starpu_task_bundle_entry *entry;
- entry = bundle->list;
- while (entry)
- {
- double task_power = starpu_task_expected_power(entry->task, arch, nimpl);
- /* In case the task is not calibrated, we consider the task
- * ends immediately. */
- if (task_power > 0.0)
- expected_power += task_power;
- entry = entry->next;
- }
- STARPU_PTHREAD_MUTEX_UNLOCK(&bundle->mutex);
- return expected_power;
- }
- /* Return the time (in µs) expected to transfer all data used within the bundle */
- double starpu_task_bundle_expected_data_transfer_time(starpu_task_bundle_t bundle, unsigned memory_node)
- {
- STARPU_PTHREAD_MUTEX_LOCK(&bundle->mutex);
- struct _starpu_handle_list *handles = NULL;
- /* We list all the handle that are accessed within the bundle. */
- /* For each task in the bundle */
- struct _starpu_task_bundle_entry *entry = bundle->list;
- while (entry)
- {
- struct starpu_task *task = entry->task;
- if (task->cl)
- {
- unsigned b;
- for (b = 0; b < task->cl->nbuffers; b++)
- {
- starpu_data_handle_t handle = STARPU_TASK_GET_HANDLE(task, b);
- enum starpu_data_access_mode mode = STARPU_CODELET_GET_MODE(task->cl, b);
- if (!(mode & STARPU_R))
- continue;
- /* Insert the handle in the sorted list in case
- * it's not already in that list. */
- _insertion_handle_sorted(&handles, handle, mode);
- }
- }
- entry = entry->next;
- }
- STARPU_PTHREAD_MUTEX_UNLOCK(&bundle->mutex);
- /* Compute the sum of data transfer time, and destroy the list */
- double total_exp = 0.0;
- while (handles)
- {
- struct _starpu_handle_list *current = handles;
- handles = handles->next;
- double exp;
- exp = starpu_data_expected_transfer_time(current->handle, memory_node, current->mode);
- total_exp += exp;
- free(current);
- }
- return total_exp;
- }
- static int directory_existence_was_tested = 0;
- void _starpu_get_perf_model_dir(char *path, size_t maxlen)
- {
- #ifdef STARPU_PERF_MODEL_DIR
- /* use the directory specified at configure time */
- snprintf(path, maxlen, "%s", STARPU_PERF_MODEL_DIR);
- #else
- snprintf(path, maxlen, "%s/.starpu/sampling/", _starpu_get_home_path());
- #endif
- }
- void _starpu_get_perf_model_dir_codelets(char *path, size_t maxlen)
- {
- _starpu_get_perf_model_dir(path, maxlen);
- strncat(path, "/codelets/", maxlen);
- }
- void _starpu_get_perf_model_dir_bus(char *path, size_t maxlen)
- {
- _starpu_get_perf_model_dir(path, maxlen);
- strncat(path, "/bus/", maxlen);
- }
- void _starpu_get_perf_model_dir_debug(char *path, size_t maxlen)
- {
- _starpu_get_perf_model_dir(path, maxlen);
- strncat(path, "/debug/", maxlen);
- }
- void _starpu_create_sampling_directory_if_needed(void)
- {
- if (!directory_existence_was_tested)
- {
- char perf_model_dir[STARPU_NMAXWORKERS];
- _starpu_get_perf_model_dir(perf_model_dir, STARPU_NMAXWORKERS);
- /* The performance of the codelets are stored in
- * $STARPU_PERF_MODEL_DIR/codelets/ while those of the bus are stored in
- * $STARPU_PERF_MODEL_DIR/bus/ so that we don't have name collisions */
- /* Testing if a directory exists and creating it otherwise
- may not be safe: it is possible that the permission are
- changed in between. Instead, we create it and check if
- it already existed before */
- _starpu_mkpath_and_check(perf_model_dir, S_IRWXU);
- /* Per-task performance models */
- char perf_model_dir_codelets[STARPU_NMAXWORKERS];
- _starpu_get_perf_model_dir_codelets(perf_model_dir_codelets, STARPU_NMAXWORKERS);
- _starpu_mkpath_and_check(perf_model_dir_codelets, S_IRWXU);
- /* Performance of the memory subsystem */
- char perf_model_dir_bus[STARPU_NMAXWORKERS];
- _starpu_get_perf_model_dir_bus(perf_model_dir_bus, STARPU_NMAXWORKERS);
- _starpu_mkpath_and_check(perf_model_dir_bus, S_IRWXU);
- /* Performance debug measurements */
- char perf_model_dir_debug[STARPU_NMAXWORKERS];
- _starpu_get_perf_model_dir_debug(perf_model_dir_debug, STARPU_NMAXWORKERS);
- _starpu_mkpath_and_check(perf_model_dir_debug, S_IRWXU);
- directory_existence_was_tested = 1;
- }
- }
|