Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
13answers
5k views

How does one write code that best utilizes the CPU cache to improve performance?

This could sound a subjective question, but what i am looking for is specific instances which you would have encountered related to this. How to make a code, cache effective-cache friendly? (More ...
21
votes
9answers
4k views

C++ cache aware programming

is there a way in C++ to determine the CPU's cache size? i have an algorithm that processes a lot of data and i'd like to break this data down into chunks such that they fit into the cache. Is this ...
19
votes
5answers
5k views

L1 memory cache on Intel x86 processors

I am trying to profile and optimize algorithms and I would like to understand the specific impact of the caches on various processors. For recent Intel x86 processors (e.g. Q9300), it is very hard to ...
13
votes
9answers
4k views

Can I force cache coherency on a multicore x86 CPU?

The other week, I wrote a little thread class and a one-way message pipe to allow communication between threads (two pipes per thread, obviously, for bidirectional communication). Everything worked ...
12
votes
5answers
4k views

CPU cache flush

I am interested in forcing a CPU cache flush in Windows (for benchmarking reasons, I want to emulate starting with no data in cpu cache), preferably a basic C implementation or win32 call. Is there a ...
9
votes
3answers
302 views

Is there a way to check whether the processor cache has been flushed recently?

On i386 linux. Preferably in c/(c/posix std libs)/proc if possible. If not is there any piece of assembly or third party library that can do this? Edit: I'm trying to develop test whether a kernel ...
9
votes
4answers
435 views

Does the Java Memory Model (JSR-133) imply that entering a monitor flushes the CPU data cache(s)?

There is something that bugs me with the Java memory model (if i even understand everything correctly). If there are two threads A and B, there are no guarantees that B will ever see a value written ...
7
votes
1answer
196 views

Performance when Generating CPU Cache Misses

I am trying to learn about CPU cache performance in the world of .NET. Specifically I am working through Igor Ostovsky's article about Processor Cache Effects. I have gone through the first three ...
6
votes
1answer
442 views

Is it possible to read CPU cache hit/miss rate in Android?

Is it possible to read CPU cache hit/miss rate in Android?
6
votes
2answers
500 views

Invalidating the CPU's cache

When my program performs a load operation with acquire semantics/store operation with release semantics or perhaps a full-fence, it invalidates the CPU's cache. My question is this: which part of the ...
6
votes
4answers
919 views

read CPU cache contents

Is there any way to read the CPU cache contents? Architecture is for ARM. I m invalidating a range of addresses and then want to make sure whether it is invalidated or not. Although I can do read and ...
5
votes
2answers
1k views

Cache bandwidth per tick for modern CPUs

What is a speed of cache accessing for modern CPUs? How many bytes can be read or written from memory every processor clock tick by Intel P4, Core2, Corei7, AMD? Please, answer with both theoretical ...
4
votes
4answers
877 views

Understanding CPU cache and cache line

I am trying to understand how CPU cache is operating. Lets say we have this configuration (as an example). Cache size 1024 bytes Cache line 32 bytes 1024/32 = 32 cache lines all together. Singel ...
4
votes
2answers
408 views

Are CPU registers and CPU cache different?

Are CPU registers and CPU cache different?
3
votes
1answer
69 views

Are two consequent CPU stores on x86 flushed to the cache keeping the order?

Assume there are two threads running on x86 CPU0 and CPU1 respectively. Thread running on CPU0 executes the following commands: A=1 B=1 Cache line containing A initially owned by CPU1 and that ...
3
votes
1answer
177 views

Allocate static memory in CPU cache in c/c++ : is it possible?

Is it possible to explicitly create static objects in the CPU cache, sort of to make sure those objects always stay in the cache so no performance hit is ever taken from reaching all the way into RAM ...
3
votes
2answers
235 views

CPU caches aware C++ / C programming [closed]

I was going through Scott Meyer's podcast on CPU CACHES AND WHY YOU CARE It seems this will make code run faster, is there any open source where such coding is done for reference. Or anybody has ...
3
votes
2answers
542 views

Definition/meaning of Aliasing? (CPU cache architectures)

I'm a little confused by the meaning of "Aliasing" between CPU-cache and Physical address. First I found It's definition on Wikipedia : However, VIVT suffers from aliasing problems, where several ...
3
votes
1answer
217 views

cache-related performance optimization techniques?

there're a lot of buzz about cache-related performance issues. I have several questions about them: Probably most popular issues are cache locality, and false cache sharing. Any others? any good ...
3
votes
1answer
509 views

memory mapped i/o operation (in intel processor) using in/out instruction…still be cached?

Will a memory mapped i/o operation (in intel processor) still be cached if the address range of the mapped i/o is being typed as write back (WB) even if I use the in/out instruction? EDIT: This ...
3
votes
5answers
1k views

Design code to fit in CPU Cache?

When writing simulations my buddy says he likes to try to write the program small enough to fit into cache. Does this have any real meaning? I understand that cache is faster than RAM and the main ...
3
votes
4answers
549 views

Cache memories in Multicore CPUs

I have few questions regarding Cache memories used in Multicore CPUs or Multipprocessors systems. (Although not directly related to programming, it has many repurcussions while one writes software for ...
2
votes
4answers
185 views

leave it on stack or put in on heap?

It happens that function uses local buffer to prepare some block of data of limited size and pass it to the other function, just like this: void foo() { char buffer[MAX_SIZE]; size_t size = ...
2
votes
1answer
75 views

CPU affinity in virtualised environments

Is taskset for CPU affinity applicable when trying to use L2 cache efficiently on a multi core processor in a virtualised environment like Amazon EC2?
2
votes
4answers
243 views

Machine code alignment

I am trying to understand the principles of machine code alignment. I have an assembler implementation which can generate machine code in run-time. I use 16-bytes alignment on every branch ...
2
votes
1answer
66 views

Cachegrind under Xen

I have an application written in C++ that someone else has written in a way that's supposed to maximally take advantage of cpu caches. This application runs on a guest Ubuntu OS that is using ...
1
vote
2answers
24 views

Book or graphic video that explains things like stack, calling conventions, registers, cpu stuff

Is there a one-book for it all .. the sad part is I can hold a superficial conversation about all these things. I've gone to Uni, and got A's in all these subjects, yet I frigging don't understand how ...
1
vote
1answer
136 views

How to calculate the size in bits of tag, index field for a CPU cache?

I'm writing a CPU cache emulator that will take the size of the cache in bytes, the length of each cache line in bytes, and the number of sets/groups in the cache. I have most of it written, but what ...
1
vote
1answer
61 views

Cache flush on CyclicBarrier or CountDownLatch like when using synchronized keyword

Is there some way how to ensure that java flushes the cache of writes that have been done before the CyclicBarrier or CountDownLatch allows us to continue (as the synchronized keyword does) without ...
1
vote
0answers
54 views

Can Intel processors delay TLB invalidations?

This in reference to InteI's Software Developer’s Manual (Order Number: 325384-039US May 2011), the section 4.10.4.4 "Delayed Invalidation" describes a potential delay in invalidation of TLB entries ...
1
vote
0answers
90 views

cache coherence protocol AMD Opteron chips (MOESI?)

If I may start with an example. Say we have a system of 4 sockets, where each socket has 4 cores and each socket has 2GB RAM ccNUMA (cache coherent non-uniform memory access) type of memory. Let's ...
1
vote
2answers
81 views

How small should be an algorithm to be stored in cache? (Need a clue)

I'm doing a chess moves generator, I have the opportunity to replace 'while/for loops' with many 'if statements' and I was wondering if adding those ~3000 lines would improve performance as in theory ...
1
vote
3answers
73 views

Can caches have limitations when dealing with devices?

In my computer architecture class, the prof posed the following question to us: "Caches can have serious limitations when dealing with devices. Why is this?" I have no idea why there are ...
1
vote
2answers
96 views

How does lookup the L1 and L2 cache?

Recently I was reading some material on cpu cache. I am wondering how does the cpu lookup the L1 and L2 cache and in what format is the data in the cpu cache stored? I think a linear scan of the ...
1
vote
2answers
297 views

Does this code fill the CPU cache?

I have two ways to program the same functionality. Method 1: doTheWork(int action) { for(int i = 0 i < 1000000000; ++i) { doAction(action); } } Method 2: doTheWork(int ...
1
vote
2answers
820 views

CPU Registers and Cache Coherence

What's the relation between CPU registers and CPU cache when it comes to cache coherence protocols such as MESI? If a certain value is stored in the CPU's cache, and is also stored in a register, then ...
1
vote
13answers
957 views

Is it possible to lock some data in CPU cache?

I have a problem.... I'm writing a data into array in the while-loop. And the point is that I'm doing it really frequently. It seems to be that this writing is now a bottle-neck in the code. So as i ...
0
votes
2answers
67 views

mmap shared buffer read problems

I have a kernel module that allocates a large buffer of memory, this buffer is then mmap-ed into userspace. The module recieves some data from hardware, and then puts the new data into the buffer with ...
0
votes
2answers
52 views

What is the best way to detect CPU cache misses when running an algorithm?

We have an algorithm which is performing poorly and we believe it's because of CPU cache misses. Nevertheless, we can't prove it because we don't have any way of detecting them. Is there any way to ...
0
votes
0answers
59 views

how to use armcc/armasm/armlink to read CPU cache hit/miss rate in Android@ARM

This is a followup this question . The sample code on here shows how to read performance counter by software. The sample code is build by armcc/armasm/armlink. I can't figure it out how this ...
0
votes
1answer
52 views

Benchmarking functions multiple times - All calls after first are instruction cached?

I'm writing a small benchmarking library in C which is used to benchmark single functions. The way it works is that you supply the benchmarking function with a pointer to a void function without ...
0
votes
0answers
121 views

How to find Cache miss on solaris 10 intel based m/c?

The cpustat and the cputrack command are use to find performance counters. The event counters supposedly are different for different m/c. For Ultra-spark m/c the counter can be viewed with the ...
0
votes
2answers
55 views

Will a larger binary with parts of code that are not executed at the time, affect use of level 2 CPU memory?

It appears that CPUs run significantly faster if their L2 is not filled. Will a programmer be better off to code something that will eventually be smaller in binary, even if parts of that code are not ...
0
votes
3answers
157 views

flush Core Duo cache before reboot?

suppose I'm writing to a RAM location on a Core Duo system through L1/L2 cache. Suppose I am going to write to a persistent location in RAM and panic Linux kernel soon after that. The location is ...
0
votes
1answer
592 views

How to clear CPU L1 and L2 cache

I'm running a benchmark on xeon server , and i repeat the executions 2-3 times. I'd like to erase the cache contents in L1 and L2 while repeating the runs. Can you suggest any methods for doing so ?
0
votes
2answers
92 views

How do you profile a .net application taking into account the effect of the CPU cache?

All the .net profilers I know don’t take into the account the effect of the CPU cache. Given that reading a field from the CPU cache can be 100 faster than reading it from main memory, it can be a ...