| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2013       Joris Pablo * Copyright (C) 2011-2014  Universite de Bordeaux * Copyright (C) 2014       Centre National de la Recherche Scientifique * * 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 <config.h>#include <starpu.h>#include <string.h>#define PROGNAME "starpu_fxt_data_trace"#define MAX_LINE_SIZE 100static void usage(){	fprintf(stderr, "Get statistics about tasks lengths and data size\n\n");	fprintf(stderr, "Usage: %s [ options ] <filename> [<codelet1> <codelet2> .... <codeletn>]\n", PROGNAME);        fprintf(stderr, "\n");        fprintf(stderr, "Options:\n");	fprintf(stderr, "   -h, --help          display this help and exit\n");	fprintf(stderr, "   -v, --version       output version information and exit\n\n");	fprintf(stderr, "    filename           specify the FxT trace input file.\n");	fprintf(stderr, "    codeletX           specify the codelet name to profile (by default, all codelets are profiled)\n");        fprintf(stderr, "Report bugs to <"PACKAGE_BUGREPORT">.");        fprintf(stderr, "\n");}static void parse_args(int argc, char **argv){	int i;	if(argc < 2)	{		fprintf(stderr, "Incorrect usage, aborting\n");                usage();		exit(77);	}	for (i = 1; i < argc; i++)	{		if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0)		{			usage();			exit(EXIT_SUCCESS);		}		if (strcmp(argv[i], "-v") == 0 || strcmp(argv[i], "--version") == 0)		{		        fputs(PROGNAME " (" PACKAGE_NAME ") " PACKAGE_VERSION "\n", stderr);			exit(EXIT_SUCCESS);		}	}}static void write_gp(int argc, char **argv){	FILE *codelet_list = fopen("codelet_list", "r");	if(!codelet_list)	{		perror("Error while opening codelet_list:");		exit(-1);	}	char codelet_name[MAX_LINE_SIZE];	FILE *plt = fopen("data_trace.gp", "w+");	if(!plt){		perror("Error while creating data_trace.gp:");		exit(-1);	}	fprintf(plt, "#!/usr/bin/gnuplot -persist\n\n");	fprintf(plt, "set term postscript eps enhanced color\n");	fprintf(plt, "set output \"data_trace.eps\"\n");	fprintf(plt, "set title \"Data trace\"\n");	fprintf(plt, "set logscale x\n");	fprintf(plt, "set logscale y\n");	fprintf(plt, "set xlabel \"data size (B)\"\n");	fprintf(plt, "set ylabel \"tasks size (ms)\"\n");	fprintf(plt, "plot ");	int c_iter;	char *v_iter;	int begin = 1;	while(fgets(codelet_name, MAX_LINE_SIZE, codelet_list) != NULL)	{		if(argc == 0)		{			if(begin)				begin = 0;			else			fprintf(plt, ", ");		}		int size = strlen(codelet_name);		if(size > 0)			codelet_name[size-1] = '\0';		if(argc != 0)		{			for(c_iter = 0, v_iter = argv[c_iter];			    c_iter < argc;			    c_iter++, v_iter = argv[c_iter])			{				if(!strcmp(v_iter, codelet_name))				{					if(begin)						begin = 0;					else						fprintf(plt, ", ");					fprintf(plt, "\"%s\" using 2:1 with dots lw 1 title \"%s\"", codelet_name, codelet_name);				}			}		}		else		{			fprintf(plt, "\"%s\" using 2:1 with dots lw 1 title \"%s\"", codelet_name, codelet_name);		}	}	fprintf(plt, "\n");	fprintf(stdout, "Gnuplot file <data_trace.gp> has been successfully created.\n");	if(fclose(codelet_list))	{		perror("close failed :");		exit(-1);	}	if(fclose(plt))	{		perror("close failed :");		exit(-1);	}}int main(int argc, char **argv){	parse_args(argc, argv);	starpu_fxt_write_data_trace(argv[1]);	write_gp(argc - 2, argv + 2);	starpu_perfmodel_free_sampling_directories();	return 0;}
 |