| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2011-2013,2015-2017 CNRS
- * Copyright (C) 2012,2014 Université de Bordeaux
- * Copyright (C) 2012 Inria
- * Copyright (C) 2011 William Braik, Yann Courtois, Jean-Marie Couteyen, Anthony Roy
- *
- * 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_top.h>
- #include <top/starpu_top_message_queue.h>
- #include <top/starpu_top_connection.h>
- #include <top/starpu_top_core.h>
- #include <core/task.h>
- #include <stdio.h>
- #include <string.h>
- #include <common/timing.h>
- /********************************************
- **************TASK RELATED FUNCTIONS********
- *******************************************/
- void _starpu_top_task_started(struct starpu_task *task,
- int devid,
- const struct timespec *ts)
- {
- unsigned long long taskid = _starpu_get_job_associated_to_task(task)->job_id;
- STARPU_ASSERT(_starpu_top_status_get());
- char *str;
- _STARPU_MALLOC(str, sizeof(char)*64);
- snprintf(str, 64,
- "START;%llu;%d;%llu\n",
- taskid,
- devid,
- _starpu_top_timing_timespec_to_ms(ts));
- _starpu_top_message_add(_starpu_top_mt, str);
- }
- void _starpu_top_task_ended(struct starpu_task *task,
- int devid,
- const struct timespec *ts)
- {
- unsigned long long taskid = _starpu_get_job_associated_to_task(task)->job_id;
- (void) devid; //unused
- STARPU_ASSERT(_starpu_top_status_get());
- char *str;
- _STARPU_MALLOC(str, sizeof(char)*64);
- snprintf(str, 64,
- "END;%llu;%llu\n",
- taskid,
- _starpu_top_timing_timespec_to_ms(ts));
- _starpu_top_message_add(_starpu_top_mt, str);
- }
- void __starpu_top_task_prevision_timespec(struct starpu_task *task,
- int devid,
- const struct timespec* start,
- const struct timespec* end)
- {
- starpu_top_task_prevision(task,
- devid,
- _starpu_top_timing_timespec_to_ms(start),
- _starpu_top_timing_timespec_to_ms(end));
- }
- void starpu_top_task_prevision(struct starpu_task *task,
- int devid,
- unsigned long long start,
- unsigned long long end)
- {
- if (!_starpu_top_status_get())
- return;
- unsigned long long taskid = _starpu_get_job_associated_to_task(task)->job_id;
- STARPU_ASSERT(_starpu_top_status_get());
- struct timespec now;
- _starpu_clock_gettime(&now);
- char *str;
- _STARPU_MALLOC(str, sizeof(char)*200);
- snprintf(str, 200,
- "PREV;%llu;%d;%llu;%llu;%llu\n",
- taskid,
- devid,
- _starpu_top_timing_timespec_to_ms(&now),
- start,
- end);
- _starpu_top_message_add(_starpu_top_mt, str);
- }
|