| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010-2013, 2015 Université de Bordeaux
- *
- * 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 <stdio.h>
- #include <stdint.h>
- #include <common/config.h>
- #ifdef STARPU_USE_FXT
- #include "starpu_fxt.h"
- static FILE *out_file;
- static unsigned cluster_cnt;
- void _starpu_fxt_dag_init(char *out_path)
- {
- if (!out_path)
- {
- out_file = NULL;
- return;
- }
- /* create a new file */
- out_file = fopen(out_path, "w+");
- if (!out_file)
- {
- fprintf(stderr,"error while opening %s\n", out_path);
- perror("fopen");
- exit(1);
- }
- cluster_cnt = 0;
- fprintf(out_file, "digraph G {\n");
- fprintf(out_file, "\tcolor=white\n");
- fprintf(out_file, "\trankdir=LR;\n");
- /* Create a new cluster */
- fprintf(out_file, "subgraph cluster_%u {\n", cluster_cnt);
- fprintf(out_file, "\tcolor=black;\n");
- }
- void _starpu_fxt_dag_terminate(void)
- {
- if (!out_file)
- return;
- /* Close the last cluster */
- fprintf(out_file, "}\n");
- /* Close the graph */
- fprintf(out_file, "}\n");
- fclose(out_file);
- }
- void _starpu_fxt_dag_add_tag(uint64_t tag, unsigned long job_id)
- {
- if (out_file)
- fprintf(out_file, "\t \"tag_%llx\"->\"task_%lu\"->\"tag_%llx\" [style=dashed]\n",
- (unsigned long long)tag, (unsigned long)job_id, (unsigned long long) tag);
- }
- void _starpu_fxt_dag_add_tag_deps(uint64_t child, uint64_t father)
- {
- if (out_file)
- fprintf(out_file, "\t \"tag_%llx\"->\"tag_%llx\"\n",
- (unsigned long long)father, (unsigned long long)child);
- }
- void _starpu_fxt_dag_add_task_deps(unsigned long dep_prev, unsigned long dep_succ)
- {
- if (out_file)
- fprintf(out_file, "\t \"task_%lu\"->\"task_%lu\"\n", dep_prev, dep_succ);
- }
- void _starpu_fxt_dag_set_tag_done(uint64_t tag, const char *color)
- {
- if (out_file)
- fprintf(out_file, "\t \"tag_%llx\" [ style=filled, fillcolor=\"%s\"]\n",
- (unsigned long long)tag, color);
- }
- void _starpu_fxt_dag_set_task_done(unsigned long job_id, const char *label, const char *color)
- {
- if (out_file)
- fprintf(out_file, "\t \"task_%lu\" [ style=filled, label=\"%s\", fillcolor=\"%s\"]\n", job_id, label, color);
- }
- void _starpu_fxt_dag_add_sync_point(void)
- {
- if (!out_file)
- return;
- /* Close the previous cluster */
- fprintf(out_file, "}\n");
- cluster_cnt++;
- /* Create a new cluster */
- fprintf(out_file, "subgraph cluster_%u {\n", cluster_cnt);
- fprintf(out_file, "\tcolor=black;\n");
- }
- #endif /* STARPU_USE_FXT */
|