Skip to content

Commit 01dc67a

Browse files
author
Benoit Pradelle
committedFeb 6, 2013
Original commit
0 parents  commit 01dc67a

28 files changed

+4803
-0
lines changed
 

‎COPYRIGHT

+621
Large diffs are not rendered by default.

‎ConfInterval.c

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
/*
2+
* ftalat - Frequency Transition Latency Estimator
3+
* Copyright (C) 2013 Universite de Versailles
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
*/
18+
19+
#include <stdio.h>
20+
#include <stdlib.h>
21+
#include <math.h>
22+
#include <assert.h>
23+
24+
/* Compute the average sample execution time */
25+
double average(unsigned int n, unsigned long *times)
26+
{
27+
unsigned int i = 0;
28+
double averageTime = 0;
29+
30+
for ( i = 0 ; i < n ; i++ )
31+
{
32+
averageTime += times[i];;
33+
}
34+
35+
averageTime /= n;
36+
37+
return averageTime;
38+
}
39+
40+
/* Compute the sample standard deviation */
41+
double sd(unsigned int n, double average, unsigned long *times)
42+
{
43+
unsigned int i = 0;
44+
double variance = 0, sum;
45+
46+
for ( i = 0 ; i < n ; i++ )
47+
{
48+
sum = times[i] - average;
49+
variance += sum * sum;
50+
}
51+
52+
variance = variance / (n-1) ;
53+
/* sample standard deviation is equal the square root of the variance */
54+
variance = sqrt(variance);
55+
return variance;
56+
}
57+
58+
void confidenceInterval(unsigned int n,
59+
double average,
60+
double sd,
61+
unsigned long *lowBoundTime,
62+
unsigned long *highBoundTime
63+
)
64+
{
65+
// Zp for 99.9% confidence
66+
//float z_value = 3.291;
67+
// Zp for 99% confidence
68+
float z_value = 2.346;
69+
// Zp for 97.5% confidence
70+
//float z_value = 2.257;
71+
// A Zp value for 95% confidence level
72+
//float z_value = 1.960;
73+
// at 90% confidence
74+
// float z_value = 1.645;
75+
// at 85% confidence
76+
// float z_value = 1.440;
77+
// at 80% confidence
78+
// float z_value = 1.282;
79+
// at 50%
80+
//float z_value = 0.674;
81+
82+
double standardError = 0.0;
83+
84+
standardError = (z_value * sd) / sqrt(n);
85+
86+
//printf("stderr = %f\n", standardError);
87+
88+
*lowBoundTime = (unsigned long int) floor(average - standardError);
89+
*highBoundTime = (unsigned long int) ceil(average + standardError);
90+
}
91+
92+
int comparer(const void* a, const void* b)
93+
{
94+
unsigned int uiA = *((unsigned int*)a);
95+
unsigned int uiB = *((unsigned int*)b);
96+
97+
if ( uiA < uiB )
98+
{
99+
return -1;
100+
}
101+
else if ( uiA == uiB )
102+
{
103+
return 0;
104+
}
105+
// else
106+
return 1;
107+
}
108+
109+
void interQuartileRange(unsigned int n,
110+
unsigned long *times,
111+
unsigned long *lowBoundTime,
112+
unsigned long *highBoundTime
113+
)
114+
{
115+
unsigned int minIndex, maxIndex;
116+
117+
qsort(times,n,sizeof(unsigned long),comparer);
118+
119+
minIndex = (unsigned int) ceil(n / 4); // First quartile index
120+
maxIndex = (unsigned int) floor(3 * n / 4); // Third quartile index
121+
122+
*lowBoundTime = times[minIndex] ;
123+
*highBoundTime = times[maxIndex] ;
124+
125+
assert(*lowBoundTime <= *highBoundTime);
126+
}
127+

‎ConfInterval.h

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/*
2+
* ftalat - Frequency Transition Latency Estimator
3+
* Copyright (C) 2013 Universite de Versailles
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
*/
18+
19+
#ifndef CONFINTERVAL_H
20+
#define CONFINTERVAL_H
21+
22+
double average(unsigned int n, unsigned long *times);
23+
double sd(unsigned int n, double average, unsigned long *times);
24+
void confidenceInterval(unsigned int n,
25+
double average,
26+
double sd,
27+
unsigned long *lowBoundTime,
28+
unsigned long *highBoundTime
29+
);
30+
void interQuartileRange(unsigned int n,
31+
unsigned long *times,
32+
unsigned long *lowBoundTime,
33+
unsigned long *highBoundTime
34+
);
35+
#endif
36+

‎CoreRelation.c

+159
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
/*
2+
* ftalat - Frequency Transition Latency Estimator
3+
* Copyright (C) 2013 Universite de Versailles
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
*/
18+
19+
#include "CoreRelation.h"
20+
21+
#include <stdio.h>
22+
#include <stdlib.h>
23+
#include <assert.h>
24+
25+
#include "FreqGetter.h"
26+
#include "FreqSetter.h"
27+
#include "utils.h"
28+
29+
/**
30+
* \struct CoreRelations
31+
* \brief Internal struct to keep the information about cores relations
32+
* The structs contains all the core linked to one.
33+
*/
34+
typedef struct CoreRelations
35+
{
36+
unsigned int nbRelations; /*!< number of elements in coreIDs */
37+
unsigned int* coreIDs; /*!< IDs related to the current core */
38+
}CoreRelations;
39+
40+
CoreRelations* pRelationsTable = NULL;
41+
42+
void initCoreRelations()
43+
{
44+
assert(pRelationsTable == NULL);
45+
46+
unsigned int nbCore = getCoreNumber();
47+
unsigned int i = 0;
48+
49+
// Allocate memory for the table
50+
pRelationsTable = (CoreRelations*) calloc(nbCore, sizeof(CoreRelations));
51+
if ( pRelationsTable == NULL )
52+
{
53+
fprintf(stderr,"Error to allocate memory for relation table\n");
54+
return;
55+
}
56+
57+
for ( i = 0 ; i < nbCore ; i++ )
58+
{
59+
FILE* pRelationFile = openCPUFreqFile(i,"related_cpus","r");
60+
if ( pRelationFile )
61+
{
62+
size_t tabSize = nbCore+1;
63+
64+
pRelationsTable[i].coreIDs = (unsigned int*) malloc(sizeof(unsigned int) * tabSize); // let's say 25 is enough for an init size
65+
if ( pRelationsTable[i].coreIDs != NULL )
66+
{
67+
unsigned int coreID = 0;
68+
size_t counter = 0;
69+
while(fscanf(pRelationFile,"%u",&coreID) == 1 )
70+
{
71+
pRelationsTable[i].coreIDs[counter] = coreID;
72+
counter++;
73+
if ( counter >= tabSize ) // Not enough space remaining
74+
{
75+
// Double size
76+
tabSize *= 2;
77+
unsigned int* newFreqsTab = realloc(pRelationsTable[i].coreIDs,tabSize*sizeof(unsigned int));
78+
if ( newFreqsTab != NULL )
79+
{
80+
pRelationsTable[i].coreIDs = newFreqsTab;
81+
}
82+
else
83+
{
84+
fprintf(stderr,"Fail to allocate more memory for relations table\n");
85+
break;
86+
}
87+
}
88+
}
89+
90+
pRelationsTable[i].nbRelations = counter;
91+
}
92+
else
93+
{
94+
fprintf(stderr,"Fail to allocated memory for line of core relation table\n");
95+
}
96+
97+
fclose(pRelationFile);
98+
}
99+
}
100+
}
101+
102+
void freeCoreRelations()
103+
{
104+
unsigned int nbCore = getCoreNumber();
105+
unsigned int i = 0;
106+
107+
if ( pRelationsTable )
108+
{
109+
for ( i= 0 ; i < nbCore ; i++ )
110+
{
111+
free(pRelationsTable[i].coreIDs);
112+
}
113+
}
114+
115+
free(pRelationsTable);
116+
}
117+
118+
unsigned int getHeadCore(unsigned int coreID)
119+
{
120+
assert(coreID < getCoreNumber());
121+
122+
if ( pRelationsTable[coreID].coreIDs )
123+
{
124+
return pRelationsTable[coreID].coreIDs[0]; // I think the first is always master
125+
}
126+
127+
return 0;
128+
}
129+
130+
void setFreqForAllRelatedCore(unsigned int coreID, unsigned int freq)
131+
{
132+
assert(coreID < getCoreNumber());
133+
134+
if ( pRelationsTable[coreID].coreIDs )
135+
{
136+
unsigned int i = 0;
137+
for ( i = 0 ; i < pRelationsTable[coreID].nbRelations ; i++ )
138+
{
139+
setFreq(pRelationsTable[coreID].coreIDs[i],freq);
140+
}
141+
}
142+
}
143+
144+
void displayCoreRelations(unsigned int coreID)
145+
{
146+
assert(coreID < getCoreNumber());
147+
148+
unsigned int i = 0;
149+
150+
if ( pRelationsTable[coreID].coreIDs )
151+
{
152+
fprintf(stdout,"Relations for core %u : ",coreID);
153+
for ( i = 0 ; i < pRelationsTable[coreID].nbRelations ; i++ )
154+
{
155+
fprintf(stdout,"%u ",pRelationsTable[coreID].coreIDs[i]);
156+
}
157+
fprintf(stdout,"\n");
158+
}
159+
}

‎CoreRelation.h

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*
2+
* ftalat - Frequency Transition Latency Estimator
3+
* Copyright (C) 2013 Universite de Versailles
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
*/
18+
19+
#ifndef CORERELATION_H
20+
#define CORERELATION_H
21+
22+
/**
23+
* Read the cpufreq files to find the relations between cores
24+
*/
25+
void initCoreRelations();
26+
27+
/**
28+
* Free the memmory used for core relations
29+
*/
30+
void freeCoreRelations();
31+
32+
/**
33+
* Get the head (or directing) core for \a coreID
34+
* \param coreID the core id
35+
* \return the coreID directing \a coreID
36+
*/
37+
unsigned int getHeadCore(unsigned int coreID);
38+
39+
/**
40+
* Change the frequency for all cores of the chip (determined by the relations
41+
* net)
42+
* \param coreID the id of the core to change
43+
* \param freq the new freq to set
44+
*/
45+
void setFreqForAllRelatedCore(unsigned int coreID, unsigned int freq);
46+
47+
/**
48+
* Debug function to display the cores linked to the identified by \a coredID
49+
*/
50+
void displayCoreRelations(unsigned int coreID);
51+
52+
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.