Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Allen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
LHCb
Allen
Commits
cfe4616d
Commit
cfe4616d
authored
3 years ago
by
Roel Aaij
Committed by
Dorothea Vom Bruch
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix storage of bank sizes from MDF input
parent
382a1018
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!814
Use proper bank size instead of offsets throughout and propagate bank types
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main/src/Transpose.cpp
+10
-6
10 additions, 6 deletions
main/src/Transpose.cpp
with
10 additions
and
6 deletions
main/src/Transpose.cpp
+
10
−
6
View file @
cfe4616d
...
...
@@ -190,8 +190,11 @@ std::tuple<bool, std::array<unsigned int, NBankTypes>> fill_counts(
return
{
false
,
mfp_count
};
}
auto
const
sd_idx
=
to_integral
(
sd_from_raw_bank
(
b
));
++
mfp_count
[
sd_idx
];
auto
const
sd
=
sd_from_raw_bank
(
b
);
if
(
sd
!=
BankTypes
::
Unknown
)
{
auto
const
sd_idx
=
to_integral
(
sd
);
++
mfp_count
[
sd_idx
];
}
// Increment overall bank pointer
bank
+=
b
->
totalSize
();
...
...
@@ -331,8 +334,9 @@ std::tuple<bool, bool, bool> transpose_event(
// The offsets to the sizes for this batch of fragments is
// copied from the current value, then the pointer is moved to
// the point where bank sizes can be stored
auto
const
fragment_sizes_offset
=
slice
.
sizes
[
*
n_banks_offsets
]
+
bank_counter
-
1
;
slice
.
sizes
[
*
n_banks_offsets
+
1
]
=
fragment_sizes_offset
;
auto
const
n_banks
=
bank_count
[
to_integral
(
allen_type
)];
auto
const
fragment_sizes_offset
=
slice
.
sizes
[
*
n_banks_offsets
-
1
];
slice
.
sizes
[
*
n_banks_offsets
]
=
fragment_sizes_offset
+
n_banks
;
fragment_sizes
=
reinterpret_cast
<
unsigned
short
*>
(
slice
.
sizes
.
data
())
+
fragment_sizes_offset
;
// Initialize point to write from offset of previous set
...
...
@@ -342,7 +346,7 @@ std::tuple<bool, bool, bool> transpose_event(
++
(
*
n_banks_offsets
);
// Write the number of banks
banks_write
[
0
]
=
bank_count
[
to_integral
(
allen_type
)]
;
banks_write
[
0
]
=
n_banks
;
// All bank offsets are uit32_t so cast to that type
banks_offsets_write
=
banks_write
+
1
;
...
...
@@ -416,7 +420,7 @@ std::tuple<bool, bool, size_t> transpose_events(
for
(
auto
allen_type
:
bank_types
)
{
auto
const
ia
=
to_integral
(
allen_type
);
auto
&
fragment_sizes_offsets
=
slices
[
ia
][
slice_index
].
sizes
;
fragment_sizes_offsets
[
0
]
=
2
*
n_events
;
fragment_sizes_offsets
[
0
]
=
2
*
(
n_events
+
1
)
;
}
// Loop over events in the prefetch buffer
...
...
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