From 5ab424e0245f6d5b5d8cbe976b50a579828415d3 Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Tue, 12 Nov 2019 11:32:30 +0100 Subject: [PATCH] output write disable mask in binary form --- ldpc_decoder.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ldpc_decoder.hh b/ldpc_decoder.hh index d66be23..8b3c86b 100644 --- a/ldpc_decoder.hh +++ b/ldpc_decoder.hh @@ -8,6 +8,7 @@ Copyright 2018 Ahmet Inan #define LDPC_DECODER_HH #include +//#include #include "simd.hh" #include "rotate.hh" @@ -231,6 +232,7 @@ public: wdm[W*i+j] = tmp; #if 0 std::cout << deg; + std::cout << '\t' << std::bitset(tmp); for (int d = 0; d < deg; ++d) std::cout << '\t' << (int)lo[d].off << ':' << (int)lo[d].shi; std::cout << std::endl;