Intel® Moderncode for Parallel Architectures
Support for developing parallel programming applications on Intel® Architecture.

data placement

karimfath
ビギナー
2,368件の閲覧回数

hello

can i mesure the cost when a thread access data in l2 or ram to a do write or read operation.to evaluate difference between the two operation when data is in l2 and data is in ram in centrino duo system

thanks

0 件の賞賛
1 解決策
Dmitry_Vyukov
高評価コントリビューター I
2,368件の閲覧回数
Quoting - karimfath

can i mesure the cost when a thread access data in l2 or ram to a do write or read operation.to evaluate difference between the two operation when data is in l2 and data is in ram in centrino duo system

You must make something like this:


- start 2 threads, bind them to different cores

- create following object:

struct X
{

char pad1 [128];

int data;

char pad2 [128];

};

X* g_x = new X;

- create semaphore for communication between threads

In order to measure cost when data is in L2$ and in foreign L1$:

1. First thread writes to g_x->data, and signals semaphore

2. Second thread wakes up and loads g_x->data

In order to measure cost when data is in RAM, you must flush data from cache with clflush instruction.

元の投稿で解決策を見る

3 返答(返信)
TimP
名誉コントリビューター III
2,368件の閲覧回数
Quoting - karimfath

hello

can i mesure the cost when a thread access data in l2 or ram to a do write or read operation.to evaluate difference between the two operation when data is in l2 and data is in ram in centrino duo system

thanks

Have you considered to what extent PTU will help with your investigation?

http://software.intel.com/en-us/articles/intel-performance-tuning-utility-31-update-3

Dmitry_Vyukov
高評価コントリビューター I
2,369件の閲覧回数
Quoting - karimfath

can i mesure the cost when a thread access data in l2 or ram to a do write or read operation.to evaluate difference between the two operation when data is in l2 and data is in ram in centrino duo system

You must make something like this:


- start 2 threads, bind them to different cores

- create following object:

struct X
{

char pad1 [128];

int data;

char pad2 [128];

};

X* g_x = new X;

- create semaphore for communication between threads

In order to measure cost when data is in L2$ and in foreign L1$:

1. First thread writes to g_x->data, and signals semaphore

2. Second thread wakes up and loads g_x->data

In order to measure cost when data is in RAM, you must flush data from cache with clflush instruction.

DDd1
ビギナー
2,368件の閲覧回数
Quoting - Dmitriy V'jukov

You must make something like this:


- start 2 threads, bind them to different cores

- create following object:

struct X
{

char pad1 [128];

int data;

char pad2 [128];

};

X* g_x = new X;

- create semaphore for communication between threads

In order to measure cost when data is in L2$ and in foreign L1$:

1. First thread writes to g_x->data, and signals semaphore

2. Second thread wakes up and loads g_x->data

In order to measure cost when data is in RAM, you must flush data from cache with clflush instruction.

Nice tip. Does anyone know of a small utility library that packs together small tips like this to do parallel performance measurements, and instrumentation in our own applications? Probably something they have laying around and can be of use to others ;)

返信