Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is faster in C: structs or arrays?

I want to implement (what represents abstractly) a two dimensional 4x4 matrix. All the code I write for matrix multiplication et cetera will be entirely "unrolled" as it were -- that is to say, I will not be using loops to access and write data entries in the matrix.

My question is: In C, would it be faster to use a struct as such:

typedef struct {
    double e0, e1, e2, e3, e4, ..., e15
} My4x4Matrix;

Or would this be faster:

typedef double My4x4Matrix[16];

Given that I will be accessing each matrix element individually as such:

My4x4Matrix a,b,c;
// (Some initialization of a and b.)
...
c.e0=a.e0+b.e0;
c.e1=a.e1+b.e1;
...

Or

My4x4Matrix a,b,c;
// (Some initialization of a and b.)
...
c[0]=a[0]+b[0];
c[1]=a[1]+b[1];
...

Or are they exactly the same speed?

like image 304
Talia Avatar asked Dec 30 '10 05:12

Talia


4 Answers

Any decent compiler will generate the exact same code, byte-for-byte. However, using arrays allows you a lot more flexibility; when accessing the matrix elements, you can choose whether you want to access fixed locations or address positions with variables.

I also highly question your choice to "unwind" (unroll?) all the operations by hand. Any good compiler can fully unroll loops with a constant number of iterations for you, and can perhaps even generate SIMD code and/or optimally schedule the order of instructions. You'll have a hard time doing better by hand, and you'll end up with code that's hideous to read. The fact that you asked this question suggests to me that you're probably not sufficiently experienced to do better than even a naive optimizing compiler.

like image 51
R.. GitHub STOP HELPING ICE Avatar answered Oct 12 '22 14:10

R.. GitHub STOP HELPING ICE


Struct elements (fields) can only be accessed by their names explicitly specified in the program's source, which means that every time you access a field the actual field must be selected and hardcoded at compile time. If you wanted to implement the same thing with arrays, that would mean that you would use explicit constant compile-time array indices (as in your example). In this case the performance of the two will be exactly the same and the code generated will be exactly the same (excluding from consideration "malicious" compilers).

However, note that arrays provide you with an extra degree of freedom: if necessary, you can select array elements by a run-time index. This is something that's not possible with structs. Only you know whether it matters to you.

On the other hand, note also that arrays in C are not copyable, which means that you'll be forced to use memcpy to copy your array-based My4x4Matrix. With struct-based version normal language-level copying will work. With arrays this issue can be worked around by wrapping the actual array in a struct.

like image 26
AnT Avatar answered Oct 12 '22 12:10

AnT


I guess both are the same speed. The difference between a struct and an array is just its meaning (in human terms.) Both will be compiled as memory addresses.

like image 24
kaoD Avatar answered Oct 12 '22 12:10

kaoD


I would say the best way is to create a test to try it yourself. Results may vary based on system environments and compilers.

like image 33
14 revs, 12 users 16% Avatar answered Oct 12 '22 14:10

14 revs, 12 users 16%