tengo la siguiente tarea de demostrar la falsa compartición y escribió un programa simple:Falso compartir y pthreads
#include <sys/times.h>
#include <time.h>
#include <stdio.h>
#include <pthread.h>
long long int tmsBegin1,tmsEnd1,tmsBegin2,tmsEnd2,tmsBegin3,tmsEnd3;
int array[100];
void *heavy_loop(void *param) {
int index = *((int*)param);
int i;
for (i = 0; i < 100000000; i++)
array[index]+=3;
}
int main(int argc, char *argv[]) {
int first_elem = 0;
int bad_elem = 1;
int good_elem = 32;
long long time1;
long long time2;
long long time3;
pthread_t thread_1;
pthread_t thread_2;
tmsBegin3 = clock();
heavy_loop((void*)&first_elem);
heavy_loop((void*)&bad_elem);
tmsEnd3 = clock();
tmsBegin1 = clock();
pthread_create(&thread_1, NULL, heavy_loop, (void*)&first_elem);
pthread_create(&thread_2, NULL, heavy_loop, (void*)&bad_elem);
pthread_join(thread_1, NULL);
pthread_join(thread_2, NULL);
tmsEnd1 = clock();
tmsBegin2 = clock();
pthread_create(&thread_1, NULL, heavy_loop, (void*)&first_elem);
pthread_create(&thread_2, NULL, heavy_loop, (void*)&good_elem);
pthread_join(thread_1, NULL);
pthread_join(thread_2, NULL);
tmsEnd2 = clock();
printf("%d %d %d\n", array[first_elem],array[bad_elem],array[good_elem]);
time1 = (tmsEnd1-tmsBegin1)*1000/CLOCKS_PER_SEC;
time2 = (tmsEnd2-tmsBegin2)*1000/CLOCKS_PER_SEC;
time3 = (tmsEnd3-tmsBegin3)*1000/CLOCKS_PER_SEC;
printf("%lld ms\n", time1);
printf("%lld ms\n", time2);
printf("%lld ms\n", time3);
return 0;
}
que estaba muy sorprendido cuando vi los resultados (I ejecutarlo en mi procesador i5-430M).
- Con el intercambio falso, fue 1020 ms.
- Sin compartir falsamente, fue 710 ms, solo 30% más rápido en lugar de 300% (se escribió en algunos sitios que sería más rápido que 300-400%).
- Sin usar pthreads, era 580 ms.
Por favor muéstrame mi error o explica por qué sucede.
Creo array [0] y la matriz [1] debe estar en una línea de caché. Están muy cerca, ¿no? –
@AlexeyMatveev: 31 y 32 están muy cerca, también. Pero supones que pertenecen a diferentes líneas de caché. La verdad es que pueden estar o no en la misma línea de caché. ¿Qué sucede si 1 a 5 (y todo lo anterior a 1, eso se ajusta) va a una línea de caché y 6 a 37 pasa a otra? –
@ Vlad-Lazarenko, lo entiendo, probé esto con otros números, también. –