Computationally efficient three dimensional arrays in C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T15:37:49Z http://stackoverflow.com/feeds/question/76076 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/76076/computationally-efficient-three-dimensional-arrays-in-c 6 Computationally efficient three dimensional arrays in C Coffee on Mars 2008-09-16T19:36:50Z 2008-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#76141 0 Answer by dmckee for Computationally efficient three dimensional arrays in C dmckee 2008-09-16T19:43:11Z 2008-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#76185 5 Answer by Adam Rosenfield for Computationally efficient three dimensional arrays in C Adam Rosenfield 2008-09-16T19:48:12Z 2008-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#76767 2 Answer by palm3D for Computationally efficient three dimensional arrays in C palm3D 2008-09-16T20:38:46Z 2008-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#83362 2 Answer by Nils Pipenbrinck for Computationally efficient three dimensional arrays in C Nils Pipenbrinck 2008-09-17T13:43:34Z 2008-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&lt;11; i++) { // check if the i'th bit is set. int bit = a&amp;(1&lt;&lt;i); if (bit) { // if so set the 3*i'th bit in the result: result |= 1&lt;&lt;(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>