| 46 | |
| 47 | template<typename B, typename R> |
| 48 | int |
| 49 | Decoder_NO<B, R>::_decode_siho(const R* Y_K, B* V_K, const size_t /*frame_id*/) |
| 50 | { |
| 51 | // auto t_store = std::chrono::steady_clock::now(); // --------------------------------------------------------- |
| 52 | // STORE |
| 53 | tools::hard_decide_unk(Y_K, V_K, this->K); |
| 54 | // auto d_store = std::chrono::steady_clock::now() - t_store; |
| 55 | |
| 56 | // (*this)[dec::tsk::decode_siho].update_timer(dec::tm::decode_siho::store, d_store); |
| 57 | |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | template<typename B, typename R> |
| 62 | int |
nothing calls this directly
no outgoing calls
no test coverage detected