diff --git a/tests/benchmark/TBEBench.cpp b/tests/benchmark/TBEBench.cpp index 738a12c2b7..a6b3f08600 100644 --- a/tests/benchmark/TBEBench.cpp +++ b/tests/benchmark/TBEBench.cpp @@ -125,8 +125,7 @@ class TBEBench : public Benchmark { // For 4bit tables the number of bytes should be halved (rounded up). numBytePerRow = (numBytePerRow + 1) / 2; } else if (param.fusedDtype_ == ElemKind::UInt8FusedQTy) { - // For 8bit tables. - numBytePerRow = numBytePerRow; + // For 8bit tables numBytePerRow is already correct } else { // (param.fusedDtype_ == ElemKind::FP16QTy) // For 16bit tables. numBytePerRow = numBytePerRow * 2;