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