Divya
Divya
I tried running the bootstrap example using intel compiler.I got this error.  Could you please help me rectify this error?
I read the different options for choosing the CRC polynomial in AFF3CT documentation. Does the CRC polynomial function support a 64 bit polynomial? When I tried it I got exception...
I tried using TPC for encoding. Here is my code. `#include #include #include #include #include #include #include #include #include #include #include #include` `using namespace std;` `#define` K1 113 #define K2...
I tried using the Decoder_polar_SCL_naive_sys in the bootstrap example.I got an error-'too few arguments for class template'.But I think I have provided the right arguments.Could you please help me if...
Could you please help me on how to use the function Decoder_SCF_naive function?I know it requires the parameters K,N,vector bool of frozen bits,n_flips.I am wondering how to declare and pass...
I am trying to append CRC bits to my input bit sequence.This is my code. ` int Size = 10; aff3ct::module::CRC Cyclic(k,Size); vectorcrc_bits; crc_bits = std::vector(k + Size); Cyclic.build(ref_bits, crc_bits);...
Could you please help me on what should be the input in poly_key parameter of CRC_polynomial function?
Will the polar decoder function work with encoded bits as input to the function?
Can you please help me on how to use polar encoder and decoder with factory classes.