Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Remove unused-but-set variables in glow/glow/tests/benchmark/TBEBench.cpp +1 #6181

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 0 additions & 3 deletions tests/benchmark/TBEBench.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ class TBEBench : public Benchmark {
for (size_t layer = 0; layer < param.numTBENodes_; layer++) {

// size_t totalLengthsSum = 0;
size_t totalNumLengths = 0;

// Create placeholders for weights
auto *weights =
Expand Down Expand Up @@ -273,7 +272,6 @@ class TBEBench : public Benchmark {
}
offsetsHandle.raw(j) = lengthsSum;
lengthsSum += nextLength;
totalNumLengths += 1;
}
// totalLengthsSum += lengthsSum;
offsetsHandle.raw(lengthsHandle.size()) = lengthsSum;
Expand Down Expand Up @@ -317,7 +315,6 @@ class TBEBench : public Benchmark {
}
offsetsHandle.raw(j) = lengthsSum;
lengthsSum += nextLength;
totalNumLengths += 1;
}
// totalLengthsSum += lengthsSum;
offsetsHandle.raw(lengthsHandle.size()) = lengthsSum;
Expand Down