Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
9a1413b2
Commit
9a1413b2
authored
15 years ago
by
Chris Broekema
Browse files
Options
Downloads
Patches
Plain Diff
Bug #1011: add alignment to facilitate RTStorage, this is 1 by default,
so the inteface should not change.
parent
73938215
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
RTCP/Interface/include/Interface/CorrelatedData.h
+17
-11
17 additions, 11 deletions
RTCP/Interface/include/Interface/CorrelatedData.h
RTCP/Interface/include/Interface/StreamableData.h
+29
-7
29 additions, 7 deletions
RTCP/Interface/include/Interface/StreamableData.h
with
46 additions
and
18 deletions
RTCP/Interface/include/Interface/CorrelatedData.h
+
17
−
11
View file @
9a1413b2
...
@@ -40,6 +40,7 @@ class CorrelatedData: public StreamableData
...
@@ -40,6 +40,7 @@ class CorrelatedData: public StreamableData
private:
private:
const
unsigned
itsNrBaselines
;
const
unsigned
itsNrBaselines
;
const
unsigned
itsNrChannels
;
const
unsigned
itsNrChannels
;
unsigned
itsAlignment
;
void
checkEndianness
();
void
checkEndianness
();
...
@@ -51,19 +52,19 @@ class CorrelatedData: public StreamableData
...
@@ -51,19 +52,19 @@ class CorrelatedData: public StreamableData
inline
size_t
CorrelatedData
::
visibilitiesSize
()
const
inline
size_t
CorrelatedData
::
visibilitiesSize
()
const
{
{
return
align
(
sizeof
(
fcomplex
)
*
itsNrBaselines
*
itsNrChannels
*
NR_POLARIZATIONS
*
NR_POLARIZATIONS
,
32
);
return
align
(
sizeof
(
fcomplex
)
*
itsNrBaselines
*
itsNrChannels
*
NR_POLARIZATIONS
*
NR_POLARIZATIONS
,
itsAlignment
);
}
}
inline
size_t
CorrelatedData
::
nrValidSamplesSize
()
const
inline
size_t
CorrelatedData
::
nrValidSamplesSize
()
const
{
{
return
align
(
sizeof
(
unsigned
short
)
*
itsNrBaselines
*
itsNrChannels
,
32
);
return
align
(
sizeof
(
unsigned
short
)
*
itsNrBaselines
*
itsNrChannels
,
itsAlignment
);
}
}
inline
size_t
CorrelatedData
::
centroidSize
()
const
inline
size_t
CorrelatedData
::
centroidSize
()
const
{
{
return
align
(
sizeof
(
float
)
*
itsNrBaselines
,
32
);
return
align
(
sizeof
(
float
)
*
itsNrBaselines
,
itsAlignment
);
}
}
...
@@ -77,18 +78,23 @@ inline CorrelatedData::CorrelatedData(const unsigned nrBaselines, const unsigned
...
@@ -77,18 +78,23 @@ inline CorrelatedData::CorrelatedData(const unsigned nrBaselines, const unsigned
:
:
StreamableData
(
true
),
StreamableData
(
true
),
itsNrBaselines
(
nrBaselines
),
itsNrBaselines
(
nrBaselines
),
itsNrChannels
(
nrChannels
)
itsNrChannels
(
nrChannels
),
#ifdef HAVE_BGP
itsAlignment
(
32
)
#else
itsAlignment
(
512
)
#endif
{
{
}
}
inline
void
CorrelatedData
::
allocate
(
Allocator
&
allocator
)
inline
void
CorrelatedData
::
allocate
(
Allocator
&
allocator
)
{
{
visibilities
.
resize
(
boost
::
extents
[
itsNrBaselines
][
itsNrChannels
][
NR_POLARIZATIONS
][
NR_POLARIZATIONS
],
32
,
allocator
);
/// TODO Should this be aligned as well??
nrValidSamples
.
resize
(
boost
::
extents
[
itsNrBaselines
][
itsNrChannels
],
32
,
allocator
);
visibilities
.
resize
(
boost
::
extents
[
itsNrBaselines
][
itsNrChannels
][
NR_POLARIZATIONS
][
NR_POLARIZATIONS
],
itsAlignment
,
allocator
);
centroids
.
resize
(
itsNrBaselines
,
32
,
allocator
);
nrValidSamples
.
resize
(
boost
::
extents
[
itsNrBaselines
][
itsNrChannels
],
itsAlignment
,
allocator
);
centroids
.
resize
(
itsNrBaselines
,
itsAlignment
,
allocator
);
}
}
inline
void
CorrelatedData
::
readData
(
Stream
*
str
)
inline
void
CorrelatedData
::
readData
(
Stream
*
str
)
{
{
str
->
read
(
visibilities
.
origin
(),
visibilities
.
num_elements
()
*
sizeof
(
fcomplex
));
str
->
read
(
visibilities
.
origin
(),
visibilities
.
num_elements
()
*
sizeof
(
fcomplex
));
...
@@ -105,15 +111,15 @@ inline void CorrelatedData::writeData(Stream *str)
...
@@ -105,15 +111,15 @@ inline void CorrelatedData::writeData(Stream *str)
THROW
(
AssertError
,
"not implemented: think about endianness"
);
THROW
(
AssertError
,
"not implemented: think about endianness"
);
#endif
#endif
str
->
write
(
visibilities
.
origin
(),
visibilities
.
num_elements
()
*
sizeof
(
fcomplex
));
str
->
write
(
visibilities
.
origin
(),
align
(
visibilities
.
num_elements
()
*
sizeof
(
fcomplex
)
,
itsAlignment
)
);
str
->
write
(
nrValidSamples
.
origin
(),
nrValidSamples
.
num_elements
()
*
sizeof
(
unsigned
short
));
str
->
write
(
nrValidSamples
.
origin
(),
align
(
nrValidSamples
.
num_elements
()
*
sizeof
(
unsigned
short
)
,
itsAlignment
)
);
//str->write(¢roids[0], centroids.size() * sizeof(float));
//str->write(¢roids[0], centroids.size() * sizeof(float));
}
}
inline
void
CorrelatedData
::
checkEndianness
()
inline
void
CorrelatedData
::
checkEndianness
()
{
{
#if !defined WORDS_BIGENDIAN
#if !defined WORDS_BIGENDIAN
&& !defined WRITE_BIG_ON_LITTLE_ENDIAN
dataConvert
(
LittleEndian
,
visibilities
.
origin
(),
visibilities
.
num_elements
());
dataConvert
(
LittleEndian
,
visibilities
.
origin
(),
visibilities
.
num_elements
());
dataConvert
(
LittleEndian
,
nrValidSamples
.
origin
(),
nrValidSamples
.
num_elements
());
dataConvert
(
LittleEndian
,
nrValidSamples
.
origin
(),
nrValidSamples
.
num_elements
());
// dataConvert(LittleEndian, ¢roids[0], centroids.size());
// dataConvert(LittleEndian, ¢roids[0], centroids.size());
...
...
This diff is collapsed.
Click to expand it.
RTCP/Interface/include/Interface/StreamableData.h
+
29
−
7
View file @
9a1413b2
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
#include
<Interface/MultiDimArray.h>
#include
<Interface/MultiDimArray.h>
#include
<Interface/SparseSet.h>
#include
<Interface/SparseSet.h>
#include
<Interface/Allocator.h>
#include
<Interface/Allocator.h>
#include
<Interface/Align.h>
#include
<Common/DataConvert.h>
#include
<Common/DataConvert.h>
#include
<boost/noncopyable.hpp>
#include
<boost/noncopyable.hpp>
...
@@ -44,7 +45,7 @@ class StreamableData {
...
@@ -44,7 +45,7 @@ class StreamableData {
virtual
void
allocate
(
Allocator
&
allocator
=
heapAllocator
)
=
0
;
virtual
void
allocate
(
Allocator
&
allocator
=
heapAllocator
)
=
0
;
virtual
void
read
(
Stream
*
,
const
bool
withSequenceNumber
);
virtual
void
read
(
Stream
*
,
const
bool
withSequenceNumber
);
virtual
void
write
(
Stream
*
,
const
bool
withSequenceNumber
);
virtual
void
write
(
Stream
*
,
const
bool
withSequenceNumber
,
const
unsigned
align
=
0
);
bool
isIntegratable
()
const
bool
isIntegratable
()
const
{
return
integratable
;
}
{
return
integratable
;
}
...
@@ -71,7 +72,7 @@ template <typename T, unsigned DIM> class SampleData: public StreamableData, boo
...
@@ -71,7 +72,7 @@ template <typename T, unsigned DIM> class SampleData: public StreamableData, boo
virtual
~
SampleData
();
virtual
~
SampleData
();
virtual
size_t
requiredSize
()
const
;
virtual
size_t
requiredSize
()
const
;
virtual
void
allocate
(
Allocator
&
allocator
=
heapAllocator
);
virtual
void
allocate
(
Allocator
&
allocator
=
heapAllocator
);
MultiDimArray
<
T
,
DIM
>
samples
;
MultiDimArray
<
T
,
DIM
>
samples
;
SparseSet
<
unsigned
>
*
flags
;
SparseSet
<
unsigned
>
*
flags
;
...
@@ -103,16 +104,37 @@ inline void StreamableData::read( Stream *str, const bool withSequenceNumber )
...
@@ -103,16 +104,37 @@ inline void StreamableData::read( Stream *str, const bool withSequenceNumber )
readData
(
str
);
readData
(
str
);
}
}
inline
void
StreamableData
::
write
(
Stream
*
str
,
const
bool
withSequenceNumber
)
inline
void
StreamableData
::
write
(
Stream
*
str
,
const
bool
withSequenceNumber
,
const
unsigned
align
)
{
{
if
(
withSequenceNumber
)
{
if
(
withSequenceNumber
)
{
#if !defined WORDS_BIGENDIAN
#if !defined WORDS_BIGENDIAN
uint32_t
sn
=
sequenceNumber
;
if
(
align
>
1
)
{
void
*
sn_buf
;
uint32_t
sn
=
sequenceNumber
;
dataConvert
(
LittleEndian
,
&
sn
,
1
);
posix_memalign
(
&
sn_buf
,
align
,
align
);
str
->
write
(
&
sn
,
sizeof
sn
);
dataConvert
(
LittleEndian
,
&
sn
,
1
);
memcpy
(
sn_buf
,
&
sn
,
sizeof
(
uint32_t
));
str
->
write
(
sn_buf
,
align
);
}
else
{
uint32_t
sn
=
sequenceNumber
;
dataConvert
(
LittleEndian
,
&
sn
,
1
);
str
->
write
(
&
sn
,
sizeof
sn
);
}
#else
#else
str
->
write
(
&
sequenceNumber
,
sizeof
sequenceNumber
);
if
(
align
>
1
)
{
void
*
sn_buf
;
posix_memalign
(
&
sn_buf
,
align
,
align
);
memcpy
(
sn_buf
,
&
sequenceNumber
,
sizeof
(
sequenceNumber
));
str
->
write
(
sn_buf
,
align
);
}
else
{
str
->
write
(
&
sequenceNumber
,
sizeof
sequenceNumber
);
}
#endif
#endif
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment