X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttv%2Flttv%2Fsync%2Fevent_analysis_eval.h;h=d6d39c2f0664214380bcfb886869218a008ed1c7;hb=ab6edc6a1a55aefe52cfd9e610b5f21ee2029544;hp=b02c77212e42b0436d0f49b1beae6ab9c8c8776c;hpb=e96ed88f09628976d17fa4820b1d6deaf6cedf4a;p=lttv.git diff --git a/lttv/lttv/sync/event_analysis_eval.h b/lttv/lttv/sync/event_analysis_eval.h index b02c7721..d6d39c2f 100644 --- a/lttv/lttv/sync/event_analysis_eval.h +++ b/lttv/lttv/sync/event_analysis_eval.h @@ -1,24 +1,27 @@ /* This file is part of the Linux Trace Toolkit viewer - * Copyright (C) 2009 Benjamin Poirier + * Copyright (C) 2009, 2010 Benjamin Poirier * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License Version 2 as - * published by the Free Software Foundation; + * This program 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. * - * This program 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 General Public License for more details. + * This program 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 for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, - * MA 02111-1307, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program. If not, see . */ #ifndef EVENT_ANALYSIS_EVAL_H #define EVENT_ANALYSIS_EVAL_H +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include "data_structures.h" @@ -39,8 +42,14 @@ typedef struct typedef struct { - double broadcastDiffSum; unsigned int broadcastNb; + double broadcastStdevSum; + + unsigned int broadcastPairNb; + double broadcastRangeMin; + double broadcastRangeMax; + double broadcastSum; + double broadcastSumSquares; // MessageStats messageStats[traceNb][traceNb] MessageStats** messageStats; @@ -51,7 +60,6 @@ typedef struct GHashTable* exchangeRtt; } AnalysisStatsEval; - #define BIN_NB 1001 struct Bins { @@ -66,7 +74,6 @@ struct Bins uint32_t bin[BIN_NB]; }; - typedef struct { /* File pointers to files where "trip times" (message latency) histogram @@ -86,7 +93,29 @@ typedef struct FILE* hrttPoints; struct Bins hrttBins; -} AnalysisGraphEval; +} AnalysisHistogramEval; + +typedef struct +{ + // These are the cpu times of the first and last interactions (message or + // broadcast) between two traces. The times are from the trace with the + // lowest traceNum. + uint64_t min, max; +} Bounds; + +typedef struct +{ + /* AnalysisHistogramEval* graphs[RttKey]; + * For this table, saddr and daddr are swapped as necessary such that + * saddr < daddr */ + GHashTable* histograms; + + /* Bounds bounds[traceNum][traceNum] + * + * Only the lower triangular part of the matrix is allocated, that is + * bounds[i][j] where i > j */ + Bounds** bounds; +} AnalysisGraphsEval; typedef struct { @@ -94,10 +123,9 @@ typedef struct GHashTable* rttInfo; AnalysisStatsEval* stats; - /* AnalysisGraphsEval* graphs[RttKey]; - * For this table, saddr and daddr are swapped as necessary such that - * saddr < daddr */ - GHashTable* graphs; + AnalysisGraphsEval* graphs; } AnalysisDataEval; +void registerAnalysisEval(); + #endif