Computationally efficient three dimensional arrays in C - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T15:37:49Zhttp://stackoverflow.com/feeds/question/76076http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/76076/computationally-efficient-three-dimensional-arrays-in-c6Computationally efficient three dimensional arrays in CCoffee on Mars2008-09-16T19:36:50Z2008-09-17T13:43:34Z
<p>I am trying to solve numerically a set of partial differential equations in three dimensions. In each of the equations the next value of the unknown in a point depends on the current value of each unknown in the closest points.</p>
<p>To write an efficient code I need to keep the points close in the three dimensions close in the (one-dimensional) memory space, so that each value is called from memory just once.</p>
<p>I was thinking of using octtrees, but I was wondering if someone knows a better method.</p>
http://stackoverflow.com/questions/76076/computationally-efficient-three-dimensional-arrays-in-c/76141#761410Answer by dmckee for Computationally efficient three dimensional arrays in Cdmckee2008-09-16T19:43:11Z2008-09-16T19:43:11Z<p>Have you tried looking in <a href="http://www.nr.com/" rel="nofollow">Numerical recipes</a>?</p>
http://stackoverflow.com/questions/76076/computationally-efficient-three-dimensional-arrays-in-c/76185#761855Answer by Adam Rosenfield for Computationally efficient three dimensional arrays in CAdam Rosenfield2008-09-16T19:48:12Z2008-09-16T19:48:12Z<p>Octtrees are the way to go. You subdivide the array into 8 octants:</p>
<pre>
1 2
3 4
---
5 6
7 8
</pre>
<p>And then lay them out in memory in the order 1, 2, 3, 4, 5, 6, 7, 8 as above. You repeat this recursively within each octant until you get down to some base size, probably around 128 bytes or so (this is just a guess -- make sure to profile to determine the optimal cutoff point). This has much, much better cache coherency and locality of reference than the naive layout.</p>
http://stackoverflow.com/questions/76076/computationally-efficient-three-dimensional-arrays-in-c/76767#767672Answer by palm3D for Computationally efficient three dimensional arrays in Cpalm3D2008-09-16T20:38:46Z2008-09-16T20:38:46Z<p>The book <a href="http://rads.stackoverflow.com/amzn/click/0123694469" rel="nofollow">Foundations of Multidimensional and Metric Data Structures</a> can help you decide which data structure is fastest for range queries: octrees, kd-trees, R-trees, ...
It also describes data layouts for keeping points together in memory.</p>
http://stackoverflow.com/questions/76076/computationally-efficient-three-dimensional-arrays-in-c/83362#833622Answer by Nils Pipenbrinck for Computationally efficient three dimensional arrays in CNils Pipenbrinck2008-09-17T13:43:34Z2008-09-17T13:43:34Z<p>One alternative to the tree-method: Use the Morton-Order to encode your data.</p>
<p>In three dimension it goes like this: Take the coordinate components and interleave each bit two zero bits. Here shown in binary: 11111b becomes 1001001001b</p>
<p>A C-function to do this looks like this (shown for clarity and only for 11 bits):</p>
<pre><code>int morton3 (int a)
{
int result = 0;
int i;
for (i=0; i<11; i++)
{
// check if the i'th bit is set.
int bit = a&(1<<i);
if (bit)
{
// if so set the 3*i'th bit in the result:
result |= 1<<(i*3);
}
}
return result;
}
</code></pre>
<p>You can use this function to combine your positions like this:</p>
<pre><code>index = morton3 (position.x) +
morton3 (position.y)*2 +
morton3 (position.z)*4;
</code></pre>
<p>This turns your three dimensional index into a one dimensional one. Best part of it: Values that are close in 3D space are close in 1D space as well. If you access values close to each other frequently you will also get a very nice speed-up because the morton-order encoding is optimal in terms of cache locality.</p>
<p>For morton3 you better not use the code above. Use a small table to look up 4 or 8 bits at a time and combine them together. </p>
<p>Hope it helps,
Nils</p>