MCPcopy Create free account
hub / github.com/aff3ct/aff3ct / _load

Method _load

src/Module/Decoder/BCH/Fast/Decoder_BCH_fast.cpp:309–318  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307
308template<typename B, typename R>
309void
310Decoder_BCH_fast<B, R>::_load(const B* Y_N, const size_t /*frame_id*/)
311{
312 // reorder data into mipp registers
313 std::vector<const B*> frames(mipp::N<B>());
314 for (auto f = 0; f < mipp::N<B>(); f++)
315 frames[f] = Y_N + f * this->N;
316
317 tools::Reorderer_static<B, mipp::N<B>()>::apply(frames, (B*)this->Y_N_reorderered.data(), this->N);
318}
319
320template<typename B, typename R>
321int

Callers

nothing calls this directly

Calls 1

applyEnum · 0.85

Tested by

no test coverage detected