Skip to content
Snippets Groups Projects
Commit 6bcdffc9 authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362: fixed dimension ordering in post-transpose beamformed data

parent e1e23b59
No related branches found
No related tags found
No related merge requests found
...@@ -619,8 +619,8 @@ void BeamFormer::preTransposeBeams( const BeamFormedData *in, PreTransposeBeamFo ...@@ -619,8 +619,8 @@ void BeamFormer::preTransposeBeams( const BeamFormedData *in, PreTransposeBeamFo
void BeamFormer::postTransposeBeams( const TransposedBeamFormedData *in, FinalBeamFormedData *out, unsigned sb ) void BeamFormer::postTransposeBeams( const TransposedBeamFormedData *in, FinalBeamFormedData *out, unsigned sb )
{ {
ASSERT( in->samples.shape()[0] > sb ); ASSERT( in->samples.shape()[0] > sb );
ASSERT( in->samples.shape()[1] == itsNrChannels ); ASSERT( in->samples.shape()[1] >= itsNrSamplesPerIntegration / itsIntegrationSteps );
ASSERT( in->samples.shape()[2] >= itsNrSamplesPerIntegration / itsIntegrationSteps ); ASSERT( in->samples.shape()[2] == itsNrChannels );
ASSERT( out->samples.shape()[0] >= itsNrSamplesPerIntegration / itsIntegrationSteps ); ASSERT( out->samples.shape()[0] >= itsNrSamplesPerIntegration / itsIntegrationSteps );
ASSERT( out->samples.shape()[1] > sb ); ASSERT( out->samples.shape()[1] > sb );
...@@ -632,23 +632,23 @@ void BeamFormer::postTransposeBeams( const TransposedBeamFormedData *in, FinalBe ...@@ -632,23 +632,23 @@ void BeamFormer::postTransposeBeams( const TransposedBeamFormedData *in, FinalBe
/* reference implementation */ /* reference implementation */
for (unsigned c = 0; c < itsNrChannels; c++) { for (unsigned c = 0; c < itsNrChannels; c++) {
for (unsigned t = 0; t < itsNrSamplesPerIntegration / itsIntegrationSteps; t++) { for (unsigned t = 0; t < itsNrSamplesPerIntegration / itsIntegrationSteps; t++) {
out->samples[t][sb][c] = in->samples[sb][c][t]; out->samples[t][sb][c] = in->samples[sb][t][c];
} }
} }
#else #else
/* in_stride == 1 */ unsigned allChannelSize = itsNrChannels * sizeof in->samples[0][0][0];
unsigned out_stride = &out->samples[1][0][0] - &out->samples[0][0][0];
for (unsigned c = 0; c < itsNrChannels; c++) { const fcomplex *inb = &in->samples[sb][0][0];
const fcomplex *inb = &in->samples[sb][c][0]; unsigned in_stride = &in->samples[sb][1][0] - &in->samples[sb][0][0];
fcomplex *outb = &out->samples[0][sb][c];
for (unsigned t = 0; t < itsNrSamplesPerIntegration / itsIntegrationSteps; t++) { fcomplex *outb = &out->samples[0][sb][0];
*outb = *inb; unsigned out_stride = &out->samples[1][sb][0] - &out->samples[0][sb][0];
inb++; for (unsigned t = 0; t < itsNrSamplesPerIntegration / itsIntegrationSteps; t++) {
outb += out_stride; memcpy( outb, inb, allChannelSize );
}
inb += in_stride;
outb += out_stride;
} }
#endif #endif
} }
......
...@@ -87,7 +87,7 @@ inline PreTransposeBeamFormedData::PreTransposeBeamFormedData(unsigned nrBeams, ...@@ -87,7 +87,7 @@ inline PreTransposeBeamFormedData::PreTransposeBeamFormedData(unsigned nrBeams,
inline TransposedBeamFormedData::TransposedBeamFormedData(unsigned nrSubbands, unsigned nrChannels, unsigned nrSamplesPerIntegration) inline TransposedBeamFormedData::TransposedBeamFormedData(unsigned nrSubbands, unsigned nrChannels, unsigned nrSamplesPerIntegration)
: :
SuperType(false,boost::extents[nrSubbands][nrChannels][nrSamplesPerIntegration | 2], nrSubbands) SuperType(false,boost::extents[nrSubbands][nrSamplesPerIntegration | 2][nrChannels], nrSubbands)
{ {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment