Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marin-ma committed Jun 12, 2024
1 parent 08f8642 commit 45ac87f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/velox/benchmarks/GenericBenchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ void runShuffle(
cleanupShuffleOutput(dataFile, localDirs, isFromEnv);
}

void finshBenchmarkMetrics(
void updateBenchmarkMetrics(
::benchmark::State& state,
const int64_t& elapsedTime,
const int64_t& readInputTime,
Expand Down Expand Up @@ -327,7 +327,7 @@ auto BM_Generic = [](::benchmark::State& state,
}
}

finshBenchmarkMetrics(state, elapsedTime, readInputTime, writerMetrics);
updateBenchmarkMetrics(state, elapsedTime, readInputTime, writerMetrics);
};

auto BM_ShuffleWrite =
Expand All @@ -353,7 +353,7 @@ auto BM_ShuffleWrite =
}
}

finshBenchmarkMetrics(state, elapsedTime, readInputTime, writerMetrics);
updateBenchmarkMetrics(state, elapsedTime, readInputTime, writerMetrics);
};

int main(int argc, char** argv) {
Expand Down

0 comments on commit 45ac87f

Please sign in to comment.