Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extlib/HighFive
Submodule HighFive updated 126 files
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
Loading