Skip to content

Commit

Permalink
Fix separate in Perf
Browse files Browse the repository at this point in the history
Fix separate in PerfCompare

Signed-off-by: LongyuZhang <longyu.zhang@ibm.com>
  • Loading branch information
LongyuZhang committed Oct 29, 2024
1 parent 219b749 commit ac42d80
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export default class PerffarmRunJSON {

// Find the indexes of the variant seperators
for (let j = 0; j < this.parsedCSV.length; j++) {
// Each variant is seperated by a 1 element array
// Each variant is separated by a 1 element array
if (this.parsedCSV[j].length === 1) {
variantIndex.push(j);

// The excel file is seperated into two portions, the upper showing the detailed
// The excel file is separated into two portions, the upper showing the detailed
// benchmark results (which is needed) and the bottom showing a comparison if any.
// The seperation point is either:
// The separation point is either:
// two back to back arrays with length 1 OR
// an array of length 1 followed by an array of length 2
if (
Expand Down

0 comments on commit ac42d80

Please sign in to comment.