Skip to content

Commit 8b481cf

Browse files
YanXiong-Metafacebook-github-bot
authored andcommitted
remove std out in EEG estimator
Summary: ### Summary * Removed `std::cout` statements from `indices_estimator.cpp` to suppress output. Differential Revision: D81830197
1 parent 54e45ec commit 8b481cf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

fbgemm_gpu/src/tbe/eeg/indices_estimator.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,16 +163,12 @@ ZipfParameters IndicesEstimator::zipfParams(
163163

164164
if ((ratio < kHeavyHitterLowerBound_) ||
165165
(ratio > kHeavyHitterUpperBound_)) {
166-
std::cout << "Skipping (s,q) (" << s << ", " << q
167-
<< "): " << " inconsistent with heavy hitters!" << "\n";
168166
continue;
169167
}
170168

171169
double logLikelihood = -zipfTotalFreq * log(normalizeConst) +
172170
s * freqTerm - kQRegularizer_ * q;
173171
if (logLikelihood > maxLogLikelihood) {
174-
std::cout << "Found best Log likelihood so far on (s,q) (" << s << ", "
175-
<< q << "): " << logLikelihood << "\n";
176172
maxLogLikelihood = logLikelihood;
177173
zipfParams.q = q;
178174
zipfParams.s = s;

0 commit comments

Comments
 (0)