Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1295,6 +1295,9 @@ private void readValues(Variable.Builder v, DataType dtype, Element varElem, Ele
if (v.getRank() > 0) {
v.setDimensionsByName(v.makeDimensionsString());
}
// data will get cached when build is called, but set
// caching to true on the variable now
v.setCaching(true);
} else {
Array data = Array.makeArray(dtype, npts, start, incr);
v.setCachedData(data, true);
Expand Down