Skip to content

Commit

Permalink
Merge branch 'master' into fix/mem_leak
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnycase committed Dec 13, 2023
2 parents 902985c + c4f7b5f commit c71f9f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public PytestCalibrationDatasetProvider(IReadOnlyList<Var> vars, string dataset)
}

// group by the samples
_sampleSets = sampleItems.GroupBy(item => item.Number).Select(g => g.OrderBy(item => item.InputIndex).ToArray()).ToArray();
_sampleSets = sampleItems.GroupBy(item => item.Number).OrderBy(x => x.Key).Select(g => g.OrderBy(item => item.InputIndex).ToArray()).ToArray();

Count = _sampleSets.Length;
Samples = _sampleSets.Select(samples =>
Expand Down

0 comments on commit c71f9f1

Please sign in to comment.