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
!840
RAP-100
Fix a bug introduced in
!809
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
RAP-100
Fix a bug introduced in
!809
RAP-100-bug-fix
into
master
Overview
0
Commits
1
Pipelines
3
Changes
2
Merged
Mark de Wever
requested to merge
RAP-100-bug-fix
into
master
2 years ago
Overview
0
Commits
1
Pipelines
3
Changes
2
Expand
This bug was only in the full jones solver, the other two solvers are correct.
Closes
RAP-100
0
0
Merge request reports
Compare
master
version 1
a4eae88d
2 years ago
master (base)
and
latest version
latest version
385b803f
1 commit,
2 years ago
version 1
a4eae88d
1 commit,
2 years ago
2 files
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
antennaflagger/Flagger.cc
+
1
−
1
Options
@@ -32,7 +32,7 @@ void ComputeStatsPerBaseline(size_t n_baselines, size_t n_channels,
// input and output. This is also different from the Python reference,
// and is to avoid strided access later on where the stats are used.
size_t
n_in
=
n_baselines
*
n_channels
*
n_correlations
;
[[
maybe_unused
]]
size_t
n_in
=
n_baselines
*
n_channels
*
n_correlations
;
assert
(
data
.
size
()
==
n_in
);
std
::
vector
<
OutType
>
result
(
n_baselines
*
n_correlations
);
Loading