Skip to content
Snippets Groups Projects

RAP-100 Fix a bug introduced in !809

Merged Mark de Wever requested to merge RAP-100-bug-fix into master
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -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