Briefly

I was working on a program that involved OpenCL interop, it required specific memory layout. The problem though didn't concern OpenCL, it was more like a theoretical problem that thrown me back to student desk in university. At first it seemed to be simple enough for me to solve it in 15 minutes though I've spent several hours hanging around, trying this and that, and still I had no luck. I just can't solve it, it feels strange to encounter something like that after 9 years of commercial development for .NET Framework and C#...

Problem description

I have a following array structure

var d = new float[C][F][VariableAmount][VariableAmount][R][R];

var d = new float[C][F][VariableAmount, VariableAmount][R, R]; // This layout would be the same as above, but I'm using the above version instead.

// Each element of float[C][][][][][] has identical dimensions

VariableAmount may contain different values with respect to C and F in other words:

var d = new float[C][][][][][]      // DataBlock (contains C elements)
{
    new float[F][][][][]              // Element0 (F denotes `Fields count`)
    {
        new float[Y1]                   // Field0 (it has Y1 rows)
        {
            new float[X1] { ... },        // row0 has X1 cols
            new float[X2] { ... },        // row1 has X2 cols
            ...                           // row #Y1 has some other amount of cols
        }
        new float[Y2]                   // Field1 (it has Y2 rows)
        {
            new float[X3] { ... },        // row0 has X3 cols
            new float[X4] { ... },        // row1 has X4 cols
            ...                           // row #Y2 has some other amount of cols
        },
        ...                             // Field #F etc...
    },
    new float[F][][][][]            // Element1
    {
        new float[Y1]                   // Field0
        {
            new float[X1] { ... },
            new float[X2] { ... },
            ...
        }
        new float[Y2]                   // Field1
        {
            new float[X3] { ... },
            new float[X4] { ... },
            ...
        },
        ...                             // Field #F
    },
    ...
}

Memory access optimizations of OpenCL require these arrays to be re-layed-out like that:

var relayedout = float[F][VariableAmount][VariableAmount][C][R][R];

and flattened to a huge 256-512 mb buffer array

var flattened = float[TotalAmountOfElements(relayedout)];

The problem is that I'm processing huge amounts of data. I'm sending back and fourth around 3-5 gigabytes of data per second, so I can't afford creating a helper buffer relayedout, this operation will eat huge amount of memory and CPU cycles quite rapidly. I need to convert d structure on the fly into flattened

link|improve this question

2  
If this forms your bottleneck, then I would suggest working with the flattened data structure everywhere, rather than converting. – Oli Charlesworth Dec 21 '11 at 0:58
No it's not a bottleneck, additional buffer eats memory – Lu4 Dec 21 '11 at 1:00
@Lu4: So your only concern is memory, not cycles? – Oli Charlesworth Dec 21 '11 at 1:01
This would be a lot less offensive to look at if it used an example of a jagged array with 2 dimensions. Off to go find another pair of goggles now. – Hans Passant Dec 21 '11 at 1:03
Well, there are general restrictions on memory consumption and performance – Lu4 Dec 21 '11 at 1:04
show 2 more comments
feedback

closed as not a real question by casperOne Apr 29 at 15:05

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.