Commit f346f1b5 authored by David Flynn's avatar David Flynn
Browse files

attr: remove spurious logging of zero_cnt

parent d580dd0c
......@@ -599,7 +599,6 @@ AttributeDecoder::decodeColorsLift(
// decompress
int zero_cnt = decoder.decodeZeroCnt(zeroCntLimit);
std::cout << zero_cnt << '\n';
int quantLayer = 0;
for (size_t predictorIndex = 0; predictorIndex < pointCount;
++predictorIndex) {
......@@ -616,7 +615,6 @@ AttributeDecoder::decodeColorsLift(
} else {
decoder.decode(values);
zero_cnt = decoder.decodeZeroCnt(zeroCntLimit);
std::cout << zero_cnt << '\n';
}
const int64_t quantWeight = weights[predictorIndex];
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment