Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DP3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
ResearchAndDevelopment
DP3
Merge requests
!1385
AST-1637
Support model data in BdaBuffer
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
AST-1637
Support model data in BdaBuffer
ast-1637-bda-model-data
into
master
Overview
8
Commits
11
Pipelines
9
Changes
1
Merged
Maik Nijhuis
requested to merge
ast-1637-bda-model-data
into
master
2 months ago
Overview
8
Commits
11
Pipelines
9
Changes
1
Expand
0
0
Merge request reports
Viewing commit
3a770e0f
Show latest version
1 file
+
1
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Verified
3a770e0f
Move comment
· 3a770e0f
Maik Nijhuis
authored
2 months ago
base/BdaBuffer.cc
+
1
−
2
Options
@@ -58,8 +58,7 @@ BdaBuffer::BdaBuffer(const BdaBuffer& other, const Fields& fields)
// The assertions below check that aocommon::UVector still has this behavior.
if
(
fields
.
data
)
{
data_
=
other
.
data_
;
// Copy all data buffers.
// Add main data buffer if absent.
data_
[
""
];
data_
[
""
];
// Add main data buffer if absent.
// Resize all data buffers.
for
(
auto
it
=
data_
.
begin
();
it
!=
data_
.
end
();
++
it
)
{
it
->
second
.
resize
(
original_capacity_
);
Loading