Skip to content

Commit

Permalink
Modernizations for [email protected].
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Nov 11, 2024
1 parent 31c9690 commit c4edb2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/report_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ DataFrame<T> ReportReader<T>::Population::get(
const auto min = std::get<0>(node_ranges[first_index]);
const auto max = std::get<1>(node_ranges[last_index]);

dataset.select({timer_index, min}, {1, max - min}).read(buffer);
dataset.select({timer_index, min}, {1, max - min}).squeezeMemSpace({0}).read(buffer);

// Copy the values for each of the GIDs assigned into this block
const auto buffer_start = buffer.begin();
Expand Down

0 comments on commit c4edb2d

Please sign in to comment.