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

Commit 5e913bd

Browse files
r-barnesfacebook-github-bot
authored andcommitted
Enable -Wself-assign in glean/PACKAGE
Reviewed By: palmje Differential Revision: D53353704 fbshipit-source-id: 698b3bc2a872076ff6fe9daa762cfeaddb8e6165
1 parent ac07d16 commit 5e913bd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/benchmark/TBEBench.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ class TBEBench : public Benchmark {
125125
// For 4bit tables the number of bytes should be halved (rounded up).
126126
numBytePerRow = (numBytePerRow + 1) / 2;
127127
} else if (param.fusedDtype_ == ElemKind::UInt8FusedQTy) {
128-
// For 8bit tables.
129-
numBytePerRow = numBytePerRow;
128+
// For 8bit tables numBytePerRow is already correct
130129
} else { // (param.fusedDtype_ == ElemKind::FP16QTy)
131130
// For 16bit tables.
132131
numBytePerRow = numBytePerRow * 2;

0 commit comments

Comments
 (0)