author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
8,490
26.01.2018 20:55:48
-3,600
14889c457369fed65236d3cfac4b24a6d8d1dadf
Add the ML decoder for the RSC DB codes.
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/RSC_DB/Decoder_RSC_DB.cpp", "new_path": "src/Factory/Module/Decoder/RSC_DB/Decoder_RSC_DB.cpp", "diff": "#include \"Module/Decoder/RSC_DB/BCJR/Decoder_RSC_DB_BCJR_DVB_RCS1.hpp\"\n#include \"Module/Decoder/RSC_DB/BCJR/Decoder_RSC_DB_B...
C++
MIT License
aff3ct/aff3ct
Add the ML decoder for the RSC DB codes.
8,490
26.01.2018 21:18:42
-3,600
d658eb0e323a8a30c33348e36cb34003e3673994
Add the ML decoder for the Turbo DB codes.
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_DB/Decoder_turbo_DB.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_DB/Decoder_turbo_DB.cpp", "diff": "#include \"Tools/Exception/exception.hpp\"\n#include \"Module/Decoder/Turbo_DB/Decoder_turbo_DB.hpp\"\n+#include \"Modul...
C++
MIT License
aff3ct/aff3ct
Add the ML decoder for the Turbo DB codes.
8,490
26.01.2018 22:43:12
-3,600
6441cce28c36dc0a878005461e666f17182f3023
Factorize the code of the ML decoder parameters.
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/BCH/Decoder_BCH.cpp", "new_path": "src/Factory/Module/Decoder/BCH/Decoder_BCH.cpp", "diff": "@@ -39,7 +39,7 @@ void Decoder_BCH::parameters\nauto p = this->get_prefix();\n- opt_args[{p+\"-type\", \"D\"}].push_back(\"ALGEBRAIC, ML\");...
C++
MIT License
aff3ct/aff3ct
Factorize the code of the ML decoder parameters.
8,490
28.01.2018 10:07:01
-3,600
f4264824a8bcbe22a5ba1a36e8a9b0a7ff0326d8
Fix various 'is_codeword()' implementations.
[ { "change_type": "MODIFY", "old_path": "src/Module/Encoder/LDPC/From_H/Encoder_LDPC_from_H.cpp", "new_path": "src/Module/Encoder/LDPC/From_H/Encoder_LDPC_from_H.cpp", "diff": "@@ -81,7 +81,7 @@ bool Encoder_LDPC_from_H<B>\nconst auto n_CN = (int)this->H.get_n_cols();\nauto i = 0;\n- while (!syndrome...
C++
MIT License
aff3ct/aff3ct
Fix various 'is_codeword()' implementations.
8,490
29.01.2018 10:00:31
-3,600
c97f8f8ee2753ef3dff0c0c859ce8f1c144cf76a
Fix Puncturer_NO bug.
[ { "change_type": "MODIFY", "old_path": "src/Module/Puncturer/NO/Puncturer_NO.cpp", "new_path": "src/Module/Puncturer/NO/Puncturer_NO.cpp", "diff": "@@ -21,16 +21,16 @@ Puncturer_NO<B,Q>\ntemplate <typename B, typename Q>\nvoid Puncturer_NO<B,Q>\n-::puncture(const B *X_N1, B *X_N2) const\n+::_punctur...
C++
MIT License
aff3ct/aff3ct
Fix Puncturer_NO bug.
8,490
29.01.2018 11:01:15
-3,600
d2cbd1f303a7f115b133f99cceaf06ed47131963
Add the '-g' option to get the source code lines.
[ { "change_type": "MODIFY", "old_path": "ci/test-build-linux-gcc.sh", "new_path": "ci/test-build-linux-gcc.sh", "diff": "@@ -3,6 +3,6 @@ set -x\nmkdir build\ncd build\n-cmake .. -G\"Unix Makefiles\" -DCMAKE_CXX_COMPILER=g++ -DCMAKE_BUILD_TYPE=Release -DENABLE_GSL=ON -DCMAKE_CXX_FLAGS=\"-Wall -funroll...
C++
MIT License
aff3ct/aff3ct
Add the '-g' option to get the source code lines.
8,490
29.01.2018 11:10:19
-3,600
d8923f25c1988cacce82d9f7c66ee9b2fee2bc2d
Fix bugs in turbo code encoders.
[ { "change_type": "MODIFY", "old_path": "src/Module/Encoder/Turbo/Encoder_turbo.cpp", "new_path": "src/Module/Encoder/Turbo/Encoder_turbo.cpp", "diff": "@@ -53,8 +53,15 @@ int Encoder_turbo<B>\ntemplate <typename B>\nvoid Encoder_turbo<B>\n-::encode(const B *U_K, B *X_N)\n+::encode(const B *U_K, B *X...
C++
MIT License
aff3ct/aff3ct
Fix bugs in turbo code encoders.
8,490
29.01.2018 11:36:31
-3,600
04125e4ac0958ec050484aabd5ffdd40349e17c5
Re-implement Turbo encoders frame by frame.
[ { "change_type": "MODIFY", "old_path": "src/Module/Encoder/Turbo/Encoder_turbo.cpp", "new_path": "src/Module/Encoder/Turbo/Encoder_turbo.cpp", "diff": "@@ -53,53 +53,23 @@ int Encoder_turbo<B>\ntemplate <typename B>\nvoid Encoder_turbo<B>\n-::encode(const B *U_K, B *X_N, const int frame_id)\n+::_enc...
C++
MIT License
aff3ct/aff3ct
Re-implement Turbo encoders frame by frame.
8,490
29.01.2018 12:12:40
-3,600
3f4bce09ce1ace86e32bce86f934ac0891a2ede8
Rm the useless '_encode_sys()' method in the RSC DB encoder.
[ { "change_type": "MODIFY", "old_path": "src/Module/Encoder/RSC_DB/Encoder_RSC_DB.cpp", "new_path": "src/Module/Encoder/RSC_DB/Encoder_RSC_DB.cpp", "diff": "@@ -250,25 +250,6 @@ void Encoder_RSC_DB<B>\n}\n}\n-template <typename B>\n-void Encoder_RSC_DB<B>\n-::_encode_sys(const B *U_K, B *par, const i...
C++
MIT License
aff3ct/aff3ct
Rm the useless '_encode_sys()' method in the RSC DB encoder.
8,490
29.01.2018 12:22:57
-3,600
ca214cc46e818c660c6e91b80948f8557d002d63
Allow the ML decoders to operate on inter frames.
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/ML/Decoder_maximum_likelihood.hxx", "new_path": "src/Module/Decoder/ML/Decoder_maximum_likelihood.hxx", "diff": "@@ -41,14 +41,6 @@ Decoder_maximum_likelihood<B,R>\n<< \", 'N' = \" << N << \").\";\nthrow tools::invalid_argument(__FILE__, __L...
C++
MIT License
aff3ct/aff3ct
Allow the ML decoders to operate on inter frames.
8,490
29.01.2018 14:14:39
-3,600
0547b46b3a439f28800f16ab9730f636bf532c80
Fix Turbo and Turbo DB encoders in inter frame.
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Encoder/Turbo/Encoder_turbo.hxx", "new_path": "src/Factory/Module/Encoder/Turbo/Encoder_turbo.hxx", "diff": "@@ -197,11 +197,11 @@ module::Encoder_turbo<B>* Encoder_turbo::parameters<E1,E2>\nif (this->sub1->buffered)\n{\n- if (this->type == ...
C++
MIT License
aff3ct/aff3ct
Fix Turbo and Turbo DB encoders in inter frame.
8,490
29.01.2018 14:43:04
-3,600
07ec126fbaf87c5d776b2f71d621439fe5ed22bc
Improve the 'frame_id' management in the channels.
[ { "change_type": "MODIFY", "old_path": "src/Module/Channel/AWGN/Channel_AWGN_LLR.cpp", "new_path": "src/Module/Channel/AWGN/Channel_AWGN_LLR.cpp", "diff": "@@ -43,6 +43,8 @@ Channel_AWGN_LLR<R>\ntemplate <typename R>\nvoid Channel_AWGN_LLR<R>\n::add_noise(const R *X_N, R *Y_N, const int frame_id)\n+...
C++
MIT License
aff3ct/aff3ct
Improve the 'frame_id' management in the channels.
8,490
29.01.2018 16:28:45
-3,600
493e422ec126386fb347e5f4d3a396dc1bbddd6c
Add a naive implem of a non-working Chase decoder.
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/BCH/Decoder_BCH.cpp", "new_path": "src/Factory/Module/Decoder/BCH/Decoder_BCH.cpp", "diff": "@@ -71,7 +71,7 @@ void Decoder_BCH::parameters\n{\nDecoder::parameters::get_headers(headers, full);\n- if (this->type != \"ML\")\n+ if (this...
C++
MIT License
aff3ct/aff3ct
Add a naive implem of a non-working Chase decoder.
8,490
29.01.2018 16:57:17
-3,600
1d6e26613eec51ec1010658c8e23cdf6d06f5b51
Fix the Chase decoder.
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/ML/Decoder_maximum_likelihood.hxx", "new_path": "src/Module/Decoder/ML/Decoder_maximum_likelihood.hxx", "diff": "@@ -57,7 +57,7 @@ float Decoder_maximum_likelihood<B,R>\nfloat euclidean_dist = 0.f;\nfor (auto n = 0; n < this->N; n++)\n{\n- a...
C++
MIT License
aff3ct/aff3ct
Fix the Chase decoder.
8,490
29.01.2018 17:32:22
-3,600
1a6bed2d1d66d1ebee0f65da632f99e7cbfa9172
Simplify a little bit the Chase decoder.
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/ML/Decoder_chase_naive.cpp", "new_path": "src/Module/Decoder/ML/Decoder_chase_naive.cpp", "diff": "@@ -85,10 +85,6 @@ void Decoder_chase_naive<B,R>\n{\nthis->min_euclidean_dist = std::numeric_limits<float>::max();\n- for (auto n_flips = 0; n...
C++
MIT License
aff3ct/aff3ct
Simplify a little bit the Chase decoder.
8,490
29.01.2018 18:40:14
-3,600
6a2ab8dec0125cb3e96efbf32e6b26bc86cfb757
Add a more generic Chase decoder (but very slow...).
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Decoder.cpp", "new_path": "src/Factory/Module/Decoder/Decoder.cpp", "diff": "#include \"Module/Decoder/ML/Decoder_maximum_likelihood_std.hpp\"\n#include \"Module/Decoder/ML/Decoder_maximum_likelihood_naive.hpp\"\n#include \"Module/De...
C++
MIT License
aff3ct/aff3ct
Add a more generic Chase decoder (but very slow...).
8,490
29.01.2018 19:01:35
-3,600
2adbadad032ec3062069b23bec3f0ff12c6e6717
Improve a little bit the naive Chase decoder.
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/ML/Decoder_chase_naive.cpp", "new_path": "src/Module/Decoder/ML/Decoder_chase_naive.cpp", "diff": "@@ -57,6 +57,24 @@ void Decoder_chase_naive<B,R>\nV_K[k] = this->best_X_N[info_bits_pos[k]];\n}\n+template <typename B, typename R>\n+void Dec...
C++
MIT License
aff3ct/aff3ct
Improve a little bit the naive Chase decoder.
8,490
29.01.2018 22:06:49
-3,600
c07e97392c43ff18dc4fc9113f5cde17c258b9c7
Add the hamming distance in the naive chase decoder.
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/ML/Decoder_chase_naive.cpp", "new_path": "src/Module/Decoder/ML/Decoder_chase_naive.cpp", "diff": "@@ -59,7 +59,7 @@ void Decoder_chase_naive<B,R>\ntemplate <typename B, typename R>\nvoid Decoder_chase_naive<B,R>\n-::_try_sequence(const R *Y...
C++
MIT License
aff3ct/aff3ct
Add the hamming distance in the naive chase decoder.
8,490
29.01.2018 22:07:20
-3,600
6cdd4383bac95bbe25efdaff29738522b12a82e2
Add the hamming distance in the std chase decoder (does not work at this time).
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/ML/Decoder_chase_std.cpp", "new_path": "src/Module/Decoder/ML/Decoder_chase_std.cpp", "diff": "@@ -50,7 +50,7 @@ template <typename B, typename R>\nvoid Decoder_chase_std<B,R>\n::_decode_siho_cw_recursive(const R *Y_N, B *V_N, const uint32_t...
C++
MIT License
aff3ct/aff3ct
Add the hamming distance in the std chase decoder (does not work at this time).
8,490
29.01.2018 22:24:59
-3,600
d3745dd117dc3511b73548a048b713914b15548c
Fix the bug !
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/ML/Decoder_chase_std.cpp", "new_path": "src/Module/Decoder/ML/Decoder_chase_std.cpp", "diff": "@@ -85,10 +85,9 @@ template <typename B, typename R>\nvoid Decoder_chase_std<B,R>\n::_decode_hiho_cw_recursive(const B *Y_N, B *V_N, const uint32_...
C++
MIT License
aff3ct/aff3ct
Fix the bug !
8,483
30.01.2018 10:04:42
-3,600
98c67b8a05a0c131eb54f6738a4fa04ddd3f1b2d
Add factory encoder, decoder codec for TPC
[ { "change_type": "MODIFY", "old_path": "src/Factory/Launcher/Launcher.cpp", "new_path": "src/Factory/Launcher/Launcher.cpp", "diff": "#include \"Launcher/Code/RSC_DB/RSC_DB.hpp\"\n#include \"Launcher/Code/Turbo/Turbo.hpp\"\n#include \"Launcher/Code/Turbo_DB/Turbo_DB.hpp\"\n+#include \"Launcher/Code/...
C++
MIT License
aff3ct/aff3ct
Add factory encoder, decoder codec for TPC
8,490
30.01.2018 16:36:01
-3,600
44657a214075fb83a581d741cce41042f839d1c2
Add the 'is_codeword()', 'is_sys()' and 'get_info_bits_pos()' methods to the BCH encoder.
[ { "change_type": "MODIFY", "old_path": "src/Module/Encoder/BCH/Encoder_BCH.cpp", "new_path": "src/Module/Encoder/BCH/Encoder_BCH.cpp", "diff": "@@ -22,6 +22,8 @@ Encoder_BCH<B>\n<< GF_poly.get_n_rdncy() << \").\";\nthrow tools::invalid_argument(__FILE__, __LINE__, __func__, message.str());\n}\n+\n+ ...
C++
MIT License
aff3ct/aff3ct
Add the 'is_codeword()', 'is_sys()' and 'get_info_bits_pos()' methods to the BCH encoder.
8,483
30.01.2018 16:59:27
-3,600
afcf08997256fe06ff1088200ad94e01a182c44a
Fix decoder TPC
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Turbo_product_code/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "new_path": "src/Module/Decoder/Turbo_product_code/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "diff": "@@ -27,12 +27,13 @@ Decoder_chase_pyndiah<B,R>\nalpha (alpha_ ),\nn_least_reli...
C++
MIT License
aff3ct/aff3ct
Fix decoder TPC
8,483
30.01.2018 17:04:57
-3,600
ebd0b74bb20ae97f437558a13bead27c263db439
Fix Decoder_chase_pyndiah
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Turbo_product_code/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "new_path": "src/Module/Decoder/Turbo_product_code/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "diff": "@@ -261,6 +261,8 @@ void Decoder_chase_pyndiah<B,R>\nif (DB) // if DB is a 1\n...
C++
MIT License
aff3ct/aff3ct
Fix Decoder_chase_pyndiah
8,483
30.01.2018 17:21:09
-3,600
b29ea4909f13e17d453b69a84dd8cf096451f474
Fix parity computation in TPC Encoder
[ { "change_type": "MODIFY", "old_path": "src/Module/Encoder/Turbo_product_code/Encoder_turbo_product_code.cpp", "new_path": "src/Module/Encoder/Turbo_product_code/Encoder_turbo_product_code.cpp", "diff": "#include <sstream>\n#include \"Tools/Exception/exception.hpp\"\n+#include \"Tools/Perf/compute_p...
C++
MIT License
aff3ct/aff3ct
Fix parity computation in TPC Encoder
8,483
31.01.2018 08:39:16
-3,600
bd1e8ad190399ef3a79493ff59ad92db66b73559
Fix chase pyndiah to work with BCH
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Turbo_product_code/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "new_path": "src/Module/Decoder/Turbo_product_code/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "diff": "@@ -75,7 +75,11 @@ void Decoder_chase_pyndiah<B,R>\n// decode each col\nfor (i...
C++
MIT License
aff3ct/aff3ct
Fix chase pyndiah to work with BCH
8,483
31.01.2018 09:13:03
-3,600
7d6582a10306b050e7e8bf631301b9d680d4dc7e
Add the info bits positions as decoder TPC input to return the info bits whatever is there positions
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_product_code/Decoder_turbo_product_code.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_product_code/Decoder_turbo_product_code.cpp", "diff": "@@ -176,8 +176,10 @@ void Decoder_turbo_product_code::parameters\ntemplate <type...
C++
MIT License
aff3ct/aff3ct
Add the info bits positions as decoder TPC input to return the info bits whatever is there positions
8,483
31.01.2018 09:19:52
-3,600
040479fc448753d5201e6520a0b47861f3b0b2c6
Change std::signobit in a simple comparison to cover integral data types
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Turbo_product_code/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "new_path": "src/Module/Decoder/Turbo_product_code/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "diff": "@@ -246,7 +246,7 @@ void Decoder_chase_pyndiah<B,R>\nfor (int i = 0; i < size;...
C++
MIT License
aff3ct/aff3ct
Change std::signobit in a simple comparison to cover integral data types
8,483
31.01.2018 11:50:02
-3,600
603b266b2ef1776e2018d5545def79a80034791f
Set back seed automatically for channel
[ { "change_type": "MODIFY", "old_path": "src/Simulation/BFER/Standard/BFER_std.cpp", "new_path": "src/Simulation/BFER/Standard/BFER_std.cpp", "diff": "@@ -203,7 +203,7 @@ module::Channel<R>* BFER_std<B,R,Q>\nconst auto seed_chn = rd_engine_seed[tid]();\nauto params_chn = this->params_BFER_std.chn->cl...
C++
MIT License
aff3ct/aff3ct
Set back seed automatically for channel
8,483
31.01.2018 15:06:37
-3,600
1e83e9b79459c4aad9a64e7ed107be840db5bb88
Fix decoder TPC by removing metrics in double to select competitors
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "diff": "@@ -17,7 +17,7 @@ Decoder_turbo_product::parameters\nsub(new Decoder_BCH::parameters(prefix+\"-sub\"...
C++
MIT License
aff3ct/aff3ct
Fix decoder TPC by removing metrics in double to select competitors
8,483
31.01.2018 17:19:10
-3,600
6d3bcdf6664d6aec1a041b8fa50085aa514c4a11
Improve some computations
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "new_path": "src/Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "diff": "@@ -275,8 +275,8 @@ void Decoder_chase_pyndiah<B,R>\nif (val < it->metric)\n{ // R[i] is...
C++
MIT License
aff3ct/aff3ct
Improve some computations
8,490
01.02.2018 14:31:00
-3,600
86454e7267f71b74ff47c6f11bc1b5a604402c95
Add a build test for the Intel compiler.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -52,6 +52,13 @@ build-linux-gcc-4.8:\nscript:\n- ./ci/build-linux-gcc-4.8.sh\n+build-linux-icpc:\n+ stage: build\n+ tags:\n+ - linux\n+ script:\n+ - ./ci/build-linux-icpc.sh\n+\nbuild-windows-gcc:\nsta...
C++
MIT License
aff3ct/aff3ct
Add a build test for the Intel compiler.
8,490
01.02.2018 15:37:48
-3,600
b038b917539fc36a3696e396a2789d2586f8629c
Speedup the Polar encoder 'is_codeword()' method.
[ { "change_type": "MODIFY", "old_path": "src/Module/Encoder/Polar/Encoder_polar.cpp", "new_path": "src/Module/Encoder/Polar/Encoder_polar.cpp", "diff": "@@ -76,22 +76,25 @@ void Encoder_polar<B>\n}\n}\n+#include <iostream>\n+\ntemplate <typename B>\nbool Encoder_polar<B>\n::is_codeword(const B *X_N)\...
C++
MIT License
aff3ct/aff3ct
Speedup the Polar encoder 'is_codeword()' method.
8,483
01.02.2018 16:47:53
-3,600
bd307d44ebdbf5c4748c8cf735444c94d1a86ad9
Add n_test_vectors at the argument list of the Chase Pyndiah; Implement a method to generate the least realiable positions bit flipping
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "diff": "@@ -97,6 +97,10 @@ void Decoder_turbo_product::parameters\n{\"strictly_positive_int\",\n\"number of ...
C++
MIT License
aff3ct/aff3ct
Add n_test_vectors at the argument list of the Chase Pyndiah; Implement a method to generate the least realiable positions bit flipping
8,490
01.02.2018 18:50:09
-3,600
bd75fb01126a4876c94622696e5e7550547d0787
First implem of a generic Chase decoder.
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Decoder.cpp", "new_path": "src/Factory/Module/Decoder/Decoder.cpp", "diff": "-#include \"Module/Decoder/ML/Decoder_maximum_likelihood_std.hpp\"\n-#include \"Module/Decoder/ML/Decoder_maximum_likelihood_naive.hpp\"\n-#include \"Module...
C++
MIT License
aff3ct/aff3ct
First implem of a generic Chase decoder.
8,483
02.02.2018 14:23:53
-3,600
2ea803c4ea2ea909aa8ea6bdab9463bd80b2e701
Correct the beta computation and the bit flipping
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "diff": "@@ -103,7 +103,7 @@ void Decoder_turbo_product::parameters\nopt_args[{p+\"-c\"}] =\n{\"positive_int\...
C++
MIT License
aff3ct/aff3ct
Correct the beta computation and the bit flipping
8,490
02.02.2018 15:32:28
-3,600
9d5265ba1b7daf9072e6df5241843a1b96742b1f
Add the hamming distance support in the Chase.
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Generic/Chase/Decoder_chase_naive.cpp", "new_path": "src/Module/Decoder/Generic/Chase/Decoder_chase_naive.cpp", "diff": "@@ -16,10 +16,13 @@ Decoder_chase_naive<B,R>\n::Decoder_chase_naive(const int K, const int N, Encoder<B> &encoder, const...
C++
MIT License
aff3ct/aff3ct
Add the hamming distance support in the Chase.
8,483
02.02.2018 16:05:43
-3,600
170b3958821861907ccd8fe8d517d58f7964ef7f
Add the encoder in the decoder TPC to get the info bit pos and to call is codeword method as genius
[ { "change_type": "MODIFY", "old_path": "src/Factory/Launcher/Launcher.cpp", "new_path": "src/Factory/Launcher/Launcher.cpp", "diff": "@@ -77,7 +77,7 @@ void factory::Launcher::parameters\nreq_args[{p+\"-cde-type\", \"C\"}] =\n{\"string\",\n\"select the code type you want to use.\",\n- \"POLAR, TURBO...
C++
MIT License
aff3ct/aff3ct
Add the encoder in the decoder TPC to get the info bit pos and to call is codeword method as genius
8,483
02.02.2018 16:20:16
-3,600
1d2f5521b8bb40281749f3441c93e239d4e22fbd
Remove syndrome check after the Chase decode; Add comments
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "new_path": "src/Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "diff": "@@ -68,7 +68,7 @@ Decoder_chase_pyndiah<B,R>\nthrow tools::invalid_argument(__FILE__, __...
C++
MIT License
aff3ct/aff3ct
Remove syndrome check after the Chase decode; Add comments
8,490
02.02.2018 23:31:52
-3,600
746b3d7ca919c30a499eff39d846e885ad6172a7
Add the '--sim-debug-hex' option.
[ { "change_type": "MODIFY", "old_path": "src/Factory/Simulation/Simulation.cpp", "new_path": "src/Factory/Simulation/Simulation.cpp", "diff": "@@ -56,6 +56,10 @@ void Simulation::parameters\n{\"\",\n\"enable debug mode: print array values after each step.\"};\n+ opt_args[{p+\"-debug-hex\"}] =\n+ {\"\...
C++
MIT License
aff3ct/aff3ct
Add the '--sim-debug-hex' option.
8,488
02.02.2018 20:23:32
18,000
4414ebda7292848d1bcca7e1fc2719d23fe2d68f
Reset number of values per frame and returned status to decimal format in sim-debug-hex mode.
[ { "change_type": "MODIFY", "old_path": "src/Module/Task.cpp", "new_path": "src/Module/Task.cpp", "diff": "@@ -184,7 +184,7 @@ int Task::exec()\nstd::cout << (s_type == IN ? tools::format(\"const \", sty_type) : \"\")\n<< tools::format(s.get_datatype_string(), sty_type)\n<< \" \" << s.get_name() << \...
C++
MIT License
aff3ct/aff3ct
Reset number of values per frame and returned status to decimal format in sim-debug-hex mode.
8,490
03.02.2018 09:27:18
-3,600
984a7c696b9f81d70e9406e08bfa3dea8bb87584
Fix issues with the new '--sim-debug-hex' option.
[ { "change_type": "MODIFY", "old_path": "src/Module/Task.cpp", "new_path": "src/Module/Task.cpp", "diff": "#include <iostream>\n#include <iomanip>\n+#include <ios>\n#include \"Tools/Display/bash_tools.h\"\n#include \"Tools/Display/Frame_trace/Frame_trace.hpp\"\n@@ -121,21 +122,26 @@ static inline voi...
C++
MIT License
aff3ct/aff3ct
Fix issues with the new '--sim-debug-hex' option.
8,490
03.02.2018 11:28:00
-3,600
71d3f206bf0904ebe6d429d14245679deaf52aff
Fix compilation error on gcc-4.
[ { "change_type": "MODIFY", "old_path": "src/Module/Task.cpp", "new_path": "src/Module/Task.cpp", "diff": "@@ -117,6 +117,18 @@ void Task::set_debug_precision(const uint8_t prec)\nthis->debug_precision = prec;\n}\n+// trick to compile on the GNU compiler version 4 (where 'std::hexfloat' is unavailabl...
C++
MIT License
aff3ct/aff3ct
Fix compilation error on gcc-4.
8,490
03.02.2018 19:13:58
-3,600
e2a0f4774ad78b761ee70a1832fc2c0905539ec1
Use aligned memory for the task buffers.
[ { "change_type": "MODIFY", "old_path": "src/Module/Task.cpp", "new_path": "src/Module/Task.cpp", "diff": "@@ -61,7 +61,7 @@ void Task::set_autoalloc(const bool autoalloc)\nfor (auto *s : sockets)\nif (get_socket_type(*s) == OUT)\n{\n- out_buffers.push_back(std::vector<uint8_t>(s->databytes));\n+ out...
C++
MIT License
aff3ct/aff3ct
Use aligned memory for the task buffers.
8,490
03.02.2018 19:41:55
-3,600
1c739b7a7983c88339f8b2831b5f1c8c7c34b656
Fix a bug in the hexadecimal format, again...
[ { "change_type": "MODIFY", "old_path": "src/Module/Task.cpp", "new_path": "src/Module/Task.cpp", "diff": "@@ -143,7 +143,7 @@ static inline void display_data(const T *data,\nelse std::cout << std::hex;\n}\nelse\n- std::cout << std::fixed << std::setprecision(p);\n+ std::cout << std::fixed << std::se...
C++
MIT License
aff3ct/aff3ct
Fix a bug in the hexadecimal format, again...
8,490
04.02.2018 12:05:14
-3,600
4498f794bfd9af7e021bf4c7fd90de89f0ce38e2
Put a pointer to the puncturer in the mother class.
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Codec/Codec.cpp", "new_path": "src/Factory/Module/Codec/Codec.cpp", "diff": "@@ -44,6 +44,7 @@ std::vector<std::string> Codec::parameters\nauto n = Factory::parameters::get_names();\nif (enc != nullptr) { auto nn = enc->get_names(); for (aut...
C++
MIT License
aff3ct/aff3ct
Put a pointer to the puncturer in the mother class.
8,490
04.02.2018 12:06:07
-3,600
65787544c4b9066a925f37cf7e743719056b0f42
Add two methods in the modem: 'is_filter()' and 'is_demodulator()'.
[ { "change_type": "MODIFY", "old_path": "src/Module/Modem/BPSK/Modem_BPSK.cpp", "new_path": "src/Module/Modem/BPSK/Modem_BPSK.cpp", "diff": "@@ -15,6 +15,9 @@ Modem_BPSK<B,R,Q>\n{\nconst std::string name = \"Modem_BPSK\";\nthis->set_name(name);\n+\n+ if (disable_sig2)\n+ this->set_demodulator(false);...
C++
MIT License
aff3ct/aff3ct
Add two methods in the modem: 'is_filter()' and 'is_demodulator()'.
8,490
04.02.2018 12:07:30
-3,600
0086e9cb7f210be5aa8f06893dcf9f29d220e89e
Automatically disable the useless modules in the simulation chain.
[ { "change_type": "MODIFY", "old_path": "src/Simulation/BFER/Standard/Threads/BFER_std_threads.cpp", "new_path": "src/Simulation/BFER/Standard/Threads/BFER_std_threads.cpp", "diff": "@@ -118,6 +118,13 @@ void BFER_std_threads<B,R,Q>\n}\nelse\n{\n+ if (this->params_BFER_std.crc->type == \"NO\")\n+ crc...
C++
MIT License
aff3ct/aff3ct
Automatically disable the useless modules in the simulation chain.
8,490
04.02.2018 13:08:29
-3,600
63f65965d4b5dbd7e3c166837a60d2a1ead0fef6
Automatically disable the useless modules in the simulation chain (BFER ite).
[ { "change_type": "MODIFY", "old_path": "src/Simulation/BFER/Iterative/Threads/BFER_ite_threads.cpp", "new_path": "src/Simulation/BFER/Iterative/Threads/BFER_ite_threads.cpp", "diff": "@@ -122,6 +122,11 @@ void BFER_ite_threads<B,R,Q>\n}\nelse\n{\n+ if (this->params_BFER_ite.crc->type == \"NO\")\n+ c...
C++
MIT License
aff3ct/aff3ct
Automatically disable the useless modules in the simulation chain (BFER ite).
8,490
04.02.2018 18:42:26
-3,600
e9fee88275af00d7e55ace24389d1dbf7836677e
Fix the 'SIM_THR' terminal indicator with the '--sim-coded' option.
[ { "change_type": "MODIFY", "old_path": "src/Simulation/BFER/BFER.cpp", "new_path": "src/Simulation/BFER/BFER.cpp", "diff": "@@ -75,16 +75,16 @@ BFER<B,R,Q>\n#ifdef ENABLE_MPI\n// build a monitor to compute BER/FER (reduce the other monitors)\n- this->monitor_red = new module::Monitor_BFER_reduction_...
C++
MIT License
aff3ct/aff3ct
Fix the 'SIM_THR' terminal indicator with the '--sim-coded' option.
8,483
05.02.2018 08:52:29
-3,600
2f359bfdf913871704ef0cd1a8ed4d77c6771b17
Remove chrono tests
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "new_path": "src/Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "diff": "#include <sstream>\n#include <algorithm>\n#include <cmath>\n-#include <chrono>\n#include...
C++
MIT License
aff3ct/aff3ct
Remove chrono tests
8,483
05.02.2018 10:59:55
-3,600
1181623fd578f9425e17d320a3ca090097e1c821
Modify TPC and Chase Pyndiah decoder to be completely independant (extrinsic with alpha and channel values are computed in TURBO Product decoder); Make alpha argument a vector with a value for each half iteration
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "diff": "#include \"Tools/Exception/exception.hpp\"\n+#include \"Tools/general_utils.h\"\n#include \"Module/D...
C++
MIT License
aff3ct/aff3ct
Modify TPC and Chase Pyndiah decoder to be completely independant (extrinsic with alpha and channel values are computed in TURBO Product decoder); Make alpha argument a vector with a value for each half iteration
8,483
05.02.2018 11:18:15
-3,600
6a12bd0a39d80f9c44d2248e251f158d4b9713f9
Cosmetics + comments
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "diff": "#include \"Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.hpp\"\n#include \"Module...
C++
MIT License
aff3ct/aff3ct
Cosmetics + comments
8,483
05.02.2018 11:50:09
-3,600
bd8a5b850b99f243de80e314fbbbc495e9c0d1b6
Add a interrupt counter to quit after four SIGINT cought
[ { "change_type": "MODIFY", "old_path": "src/Module/Monitor/Monitor.cpp", "new_path": "src/Module/Monitor/Monitor.cpp", "diff": "bool aff3ct::module::Monitor::interrupt = false;\nbool aff3ct::module::Monitor::first_interrupt = true;\n+int aff3ct::module::Monitor::interrupt_cnt = 0;\nbool aff3ct::modu...
C++
MIT License
aff3ct/aff3ct
Add a interrupt counter to quit after four SIGINT cought
8,483
05.02.2018 11:55:19
-3,600
accf617aacab3256a7487025a4e17e0e417064f8
Move from the .hpp, the Monitor method implementations in the .cpp
[ { "change_type": "MODIFY", "old_path": "src/Module/Monitor/Monitor.cpp", "new_path": "src/Module/Monitor/Monitor.cpp", "diff": "@@ -8,3 +8,109 @@ int aff3ct::module::Monitor::interrupt_cnt = 0;\nbool aff3ct::module::Monitor::over = false;\nstd::chrono::time_point<std::chrono::steady_clock, std::chro...
C++
MIT License
aff3ct/aff3ct
Move from the .hpp, the Monitor method implementations in the .cpp
8,490
05.02.2018 14:47:53
-3,600
8c531214f0a7b2614c6db0351317af94c5525c03
Add a message when the user interrupts the simulation.
[ { "change_type": "MODIFY", "old_path": "src/Module/Monitor/Monitor.cpp", "new_path": "src/Module/Monitor/Monitor.cpp", "diff": "@@ -104,8 +104,13 @@ void Monitor\nif (d_delta_interrupt < std::chrono::milliseconds(2100))\n{\nif (Monitor::interrupt_cnt >= 4)\n+ {\n+ std::cerr << \"\\r# Killed by user ...
C++
MIT License
aff3ct/aff3ct
Add a message when the user interrupts the simulation.
8,488
05.02.2018 10:13:37
18,000
973fc72f4014ff2242ca0ebd89ff5821747c3da4
Refactor export_as_source.
[ { "change_type": "MODIFY", "old_path": "scripts/debug_parser/aff3ct_debug_parser.py", "new_path": "scripts/debug_parser/aff3ct_debug_parser.py", "diff": "@@ -57,20 +57,11 @@ class OutputStructure:\nprint(\"Specified frame index superior to the number of frames. Frame 0 is exported instead.\")\nframe...
C++
MIT License
aff3ct/aff3ct
Refactor export_as_source.
8,488
05.02.2018 12:01:15
18,000
7ab55c049db5a119af4508cb0ce9a32c38a3852b
Either multiple or a single frame(s) can now exported as source. Modified args. Refactor export_as_source
[ { "change_type": "MODIFY", "old_path": "scripts/debug_parser/aff3ct_debug_parser.py", "new_path": "scripts/debug_parser/aff3ct_debug_parser.py", "diff": "@@ -52,8 +52,12 @@ class OutputStructure:\nfout.write(value)\nfout.write(\"\\n\")\n- def export_as_source(self, path, frame_index):\n- if frame_in...
C++
MIT License
aff3ct/aff3ct
Either multiple or a single frame(s) can now exported as source. Modified args. Refactor export_as_source
8,488
05.02.2018 13:03:44
18,000
f366e85a957bd052d8e869ace90bcb9a37e17649
Fix bug in source export.
[ { "change_type": "MODIFY", "old_path": "scripts/debug_parser/aff3ct_debug_parser.py", "new_path": "scripts/debug_parser/aff3ct_debug_parser.py", "diff": "@@ -80,9 +80,10 @@ class OutputStructure:\nif export_all:\nfout.write(\"\\n{\\n\")\nfor inner_frame_index in range(0, len(self.frames)):\n+ if inn...
C++
MIT License
aff3ct/aff3ct
Fix bug in source export.
8,483
06.02.2018 10:59:59
-3,600
31f56fa3511ee403cda674091600c43c3cd6277e
Move argument range sets in their own folder; Add an example set that check nothing (only an example of options)
[ { "change_type": "MODIFY", "old_path": "src/Tools/Arguments/Argument_range/Argument_range.hpp", "new_path": "src/Tools/Arguments/Argument_range/Argument_range.hpp", "diff": "@@ -37,7 +37,7 @@ public:\n#include \"Min.hpp\"\n#include \"Max.hpp\"\n-#include \"Set.hpp\"\n+#include \"Set/Set.hpp\"\n#incl...
C++
MIT License
aff3ct/aff3ct
Move argument range sets in their own folder; Add an example set that check nothing (only an example of options)
8,483
06.02.2018 11:02:29
-3,600
ef74af868e066f78560c7dd121db8cc4ed322450
In polar decoder factory, change dec-implem ranges from Including set into example set
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Decoder.cpp", "new_path": "src/Factory/Module/Decoder/Decoder.cpp", "diff": "@@ -49,12 +49,12 @@ void Decoder::parameters\nopt_args.add(\n{p+\"-type\", \"D\"},\n- tools::Text(tools::Including_set<std::string>(\"ML\", \"CHASE\")),\n+ ...
C++
MIT License
aff3ct/aff3ct
In polar decoder factory, change dec-implem ranges from Including set into example set
8,483
06.02.2018 11:19:18
-3,600
c00630038a2da28199b6d135efcf2c47d2b69e36
Add a change type, change doc and add doc methods in Argument_Info structure; Use change type method to change the type of the dec-implem in deocder polar factory
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Polar/Decoder_polar.cpp", "new_path": "src/Factory/Module/Decoder/Polar/Decoder_polar.cpp", "diff": "@@ -78,12 +78,7 @@ void Decoder_polar::parameters\ntools::add_options(opt_args.at({p+\"-type\", \"D\"}), 0, \"SC\", \"SCL\", \"SCL_M...
C++
MIT License
aff3ct/aff3ct
Add a change type, change doc and add doc methods in Argument_Info structure; Use change type method to change the type of the dec-implem in deocder polar factory
8,490
07.02.2018 11:26:25
-3,600
831c311c062c3ddce7318e68afab6c952e451498
Add the possibility to manage the frozen bits of the polar codec.
[ { "change_type": "MODIFY", "old_path": "src/Module/Codec/Polar/Codec_polar.cpp", "new_path": "src/Module/Codec/Polar/Codec_polar.cpp", "diff": "@@ -150,6 +150,18 @@ Codec_polar<B,Q>\nif (fb_generator != nullptr) { delete fb_generator; fb_generator = nullptr; }\n}\n+template <typename B, typename Q>\...
C++
MIT License
aff3ct/aff3ct
Add the possibility to manage the frozen bits of the polar codec.
8,483
07.02.2018 17:13:55
-3,600
8208956e5e31d1c3e44c8087acb7a15fca2987bc
Cosmetics and fix the short 8/9 dvbs2 matrix values
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/LDPC/Decoder_LDPC.cpp", "new_path": "src/Factory/Module/Decoder/LDPC/Decoder_LDPC.cpp", "diff": "@@ -45,7 +45,7 @@ void Decoder_LDPC::parameters\nauto p = this->get_prefix();\n- req_args[{p+\"-h-path\"}] =\n+ opt_args[{p+\"-h-path\"}...
C++
MIT License
aff3ct/aff3ct
Cosmetics and fix the short 8/9 dvbs2 matrix values
8,483
08.02.2018 09:39:17
-3,600
50c38f5b5698b6a37389097cc80866d916fefa36
Add comments; Compute the reliability only from the converged competitors after hard decoding
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "new_path": "src/Module/Decoder/Turbo_product/Chase_pyndiah/Decoder_chase_pyndiah.cpp", "diff": "@@ -272,6 +272,7 @@ void Decoder_chase_pyndiah<B,R>\n{\nstd::fill(metrics.begin(), metri...
C++
MIT License
aff3ct/aff3ct
Add comments; Compute the reliability only from the converged competitors after hard decoding
8,490
08.02.2018 13:59:51
-3,600
1feed1dafb47a1e4803f152afe95ced406a464eb
Simplify the Monitor_reduction.
[ { "change_type": "MODIFY", "old_path": "src/Module/Monitor/BFER/Monitor_BFER_reduction.cpp", "new_path": "src/Module/Monitor/BFER/Monitor_BFER_reduction.cpp", "diff": "@@ -13,9 +13,10 @@ using namespace aff3ct::module;\ntemplate <typename B>\nMonitor_BFER_reduction<B>\n-::Monitor_BFER_reduction(cons...
C++
MIT License
aff3ct/aff3ct
Simplify the Monitor_reduction.
8,483
08.02.2018 15:05:02
-3,600
79b2bad1e72e0636001036ae9c67975a356f6523
Add an advanced argument type to not display them in the help when using -h, else need to use -H
[ { "change_type": "MODIFY", "old_path": "src/Factory/Launcher/Launcher.cpp", "new_path": "src/Factory/Launcher/Launcher.cpp", "diff": "@@ -103,6 +103,11 @@ void factory::Launcher::parameters\ntools::None(),\n\"print this help.\");\n+ opt_args.add(\n+ {\"Help\", \"H\"},\n+ tools::None(),\n+ \"print th...
C++
MIT License
aff3ct/aff3ct
Add an advanced argument type to not display them in the help when using -h, else need to use -H
8,483
08.02.2018 16:51:54
-3,600
ac1121371f345e4250eab56e107a74bd29b1783f
Add an argument to not display the backtrace or to not apply addr2line function. Use global variable to do so; Rewrite consequently try catch in main, Launcher and simulations classes
[ { "change_type": "MODIFY", "old_path": "src/Factory/Command_parser.cpp", "new_path": "src/Factory/Command_parser.cpp", "diff": "@@ -40,13 +40,12 @@ void Command_parser\n// write the parameters values in \"params\" from \"read_args\"\nFactory::store(params, read_args);\n}\n- catch(const aff3ct::tools...
C++
MIT License
aff3ct/aff3ct
Add an argument to not display the backtrace or to not apply addr2line function. Use global variable to do so; Rewrite consequently try catch in main, Launcher and simulations classes
8,483
08.02.2018 17:05:44
-3,600
3fc6d50fe42fe27649f96a08310b19110e04443f
Add an argument to not display any legend --sim-no-legend, only the simulation results to add them to an existing file
[ { "change_type": "MODIFY", "old_path": "src/Factory/Launcher/Launcher.cpp", "new_path": "src/Factory/Launcher/Launcher.cpp", "diff": "@@ -124,6 +124,13 @@ void factory::Launcher::parameters\ntools::None(),\n\"do not enhance the backtrace when displaying exception.\",\ntrue);\n+\n+ opt_args.add(\n+ {...
C++
MIT License
aff3ct/aff3ct
Add an argument to not display any legend --sim-no-legend, only the simulation results to add them to an existing file
8,490
09.02.2018 16:09:44
-3,600
a40a58dcaec99e1056bca781b1b0668401308a0f
Configure the new SonarQube server.
[ { "change_type": "MODIFY", "old_path": "ci/analysis-sonarqube.sh", "new_path": "ci/analysis-sonarqube.sh", "diff": "@@ -17,10 +17,10 @@ cppcheck --language=c++ --suppress=missingIncludeSystem --force --enable=all --s\n# Create the sonar config file on the fly\nVERSION=$(git tag | tail -n 1 | cut -d ...
C++
MIT License
aff3ct/aff3ct
Configure the new SonarQube server.
8,483
09.02.2018 16:51:41
-3,600
1da5aac4165a4bf9b3d6b8eaf82271c5d3f8d669
Make the Chase Pyndiah works only on the BCH to improve speed; Add 4 parameters (a,b,c,d) to let the user add some weights in the Pyndiah; Add comments
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "diff": "@@ -92,7 +92,8 @@ void Decoder_turbo_product::parameters\nopt_args[{p+\"-alpha\"}] =\n{\"string\",\n...
C++
MIT License
aff3ct/aff3ct
Make the Chase Pyndiah works only on the BCH to improve speed; Add 4 parameters (a,b,c,d) to let the user add some weights in the Pyndiah; Add comments
8,483
09.02.2018 17:33:36
-3,600
c2cf2171d2d69c7584efc4f5d08018a6a3469b69
Change name of the Chase Pyndiah coefficients into --dec-cp-coef; Use directly the coef vector as argument of the Chase Pyndiah class; Add a fifth argument to control the number of least reliable bits used to calculate the beta
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "new_path": "src/Factory/Module/Decoder/Turbo_product/Decoder_turbo_product.cpp", "diff": "@@ -111,9 +111,9 @@ void Decoder_turbo_product::parameters\n{\"\",\n\"extends decoder with a parity ...
C++
MIT License
aff3ct/aff3ct
Change name of the Chase Pyndiah coefficients --dec-abcd into --dec-cp-coef; Use directly the coef vector as argument of the Chase Pyndiah class; Add a fifth argument to control the number of least reliable bits used to calculate the beta
8,483
11.02.2018 14:42:25
-3,600
b54ac6a2c8c724c4b5ca34c8c50e1977c8cdad68
Inverse the exception no addr2line value from false to true by default. Inverse then the argument --except-a2l to enable the conversion when asked only; Complete the auto completion script with new arguments --excep-XXX and -H
[ { "change_type": "MODIFY", "old_path": "scripts/aff3ct_completion.sh", "new_path": "scripts/aff3ct_completion.sh", "diff": "@@ -26,7 +26,7 @@ _aff3ct() {\ndone\n# add base opts\n- opts=\"--sim-cde-type --sim-type -v --version -h --help\"\n+ opts=\"-C --sim-cde-type --sim-type -v --version -h --help ...
C++
MIT License
aff3ct/aff3ct
Inverse the exception no addr2line value from false to true by default. Inverse then the argument --except-a2l to enable the conversion when asked only; Complete the auto completion script with new arguments --excep-XXX and -H
8,490
11.02.2018 15:17:28
-3,600
fd2a2a8145201be498bf72a21a86808670f5aca3
Add a new file to explain how to contribute in AFF3CT.
[ { "change_type": "ADD", "old_path": null, "new_path": "CONTRIBUTING.md", "diff": "+# How to contribute\n+\n+We're really glad you're reading this, because we need volunteer developers to expand this project.\n+\n+Here are some important resources to communicate:\n+\n+ * [The Official website](http:/...
C++
MIT License
aff3ct/aff3ct
Add a new file to explain how to contribute in AFF3CT.
8,490
11.02.2018 15:23:41
-3,600
d96e3892bf32cd85f652a728db55e28e09b899e6
Improve the contributing guide.
[ { "change_type": "MODIFY", "old_path": "CONTRIBUTING.md", "new_path": "CONTRIBUTING.md", "diff": "@@ -11,7 +11,7 @@ Here are some important resources to communicate:\n## Submitting changes\n-Please send a [GitHub Pull Request to AFF3CT](https://github.com/aff3ct/aff3ct/pull/new/master) with a clear ...
C++
MIT License
aff3ct/aff3ct
Improve the contributing guide.
8,490
11.02.2018 18:32:30
-3,600
14a36dc6a9b07aa09827fa4a51dc4475ec793b7a
Update the contrib doc.
[ { "change_type": "MODIFY", "old_path": "CONTRIBUTING.md", "new_path": "CONTRIBUTING.md", "diff": "We're really glad you're reading this, because we need volunteer developers to expand this project.\n-Here are some important resources to communicate:\n+Here are some important resources to communicate...
C++
MIT License
aff3ct/aff3ct
Update the contrib doc.
8,490
12.02.2018 09:49:46
-3,600
163be902f2bd6a0c31b47a19cbc4b4773544b3f9
Add a link to the contributing guidelines in the readme.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -80,3 +80,4 @@ A list of the AFF3CT related web pages:\n- [Official wiki](https://github.com/aff3ct/aff3ct/wiki)\n- [Official website](https://aff3ct.github.io/)\n- [Scientific publications](https://aff3ct.githu...
C++
MIT License
aff3ct/aff3ct
Add a link to the contributing guidelines in the readme.
8,483
12.02.2018 09:50:06
-3,600
377a118b7c8281ac49f0c2dc3f3b14ca66c19ca8
Add least common multiple and greatest common divisor functions; Display the fraction of the code rate and the bit rate; Use the Tools/Math/utils is_power_of_2 function in Factory/Encoder/BCH to check the validity of N instead of rewriting the function
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Codec/Codec.cpp", "new_path": "src/Factory/Module/Codec/Codec.cpp", "diff": "#include <algorithm>\n#include \"Tools/general_utils.h\"\n+#include \"Tools/Math/utils.h\"\n#include \"Codec.hpp\"\n@@ -86,7 +87,6 @@ void Codec::parameters\n::get_...
C++
MIT License
aff3ct/aff3ct
Add least common multiple and greatest common divisor functions; Display the fraction of the code rate and the bit rate; Use the Tools/Math/utils is_power_of_2 function in Factory/Encoder/BCH to check the validity of N instead of rewriting the function
8,490
12.02.2018 11:56:15
-3,600
21ac6b0d577ade3ee0854e04bd22b4f23ecb4cab
Up the sonarqube script.
[ { "change_type": "MODIFY", "old_path": "ci/analysis-sonarqube.sh", "new_path": "ci/analysis-sonarqube.sh", "diff": "@@ -18,7 +18,7 @@ cppcheck --language=c++ --suppress=missingIncludeSystem --force --enable=all --s\n# Create the sonar config file on the fly\nVERSION=$(git tag | tail -n 1 | cut -d $'...
C++
MIT License
aff3ct/aff3ct
Up the sonarqube script.
8,490
12.02.2018 20:51:15
-3,600
5a4f684b0980a941b5a77893cb47ee01571b7640
Improve the exit codes management.
[ { "change_type": "MODIFY", "old_path": "src/Launcher/Launcher.cpp", "new_path": "src/Launcher/Launcher.cpp", "diff": "@@ -118,8 +118,10 @@ void Launcher::print_header()\nthis->stream << \"#\" << std::endl;\n}\n-void Launcher::launch()\n+int Launcher::launch()\n{\n+ int exit_code = EXIT_SUCCESS;\n+\n...
C++
MIT License
aff3ct/aff3ct
Improve the exit codes management.
8,490
12.02.2018 20:52:20
-3,600
3e5c3d2ae2108a572b5e0ff038b3fa750f5db7f4
Use the AFF3CT exit codes + fix a bug when an AFF3CT error occurs.
[ { "change_type": "MODIFY", "old_path": "ci/test-regression.py", "new_path": "ci/test-regression.py", "diff": "@@ -206,19 +206,22 @@ for fn in fileNames:\nprocessAFFECT = subprocess.Popen(argsAFFECT, stdout=subprocess.PIPE,\nstderr=subprocess.PIPE)\n(stdoutAFFECT, stderrAFFECT) = processAFFECT.commun...
C++
MIT License
aff3ct/aff3ct
Use the AFF3CT exit codes + fix a bug when an AFF3CT error occurs.
8,490
13.02.2018 09:23:32
-3,600
7f1fc19b0fe5ede943e8ca839655d608b6ec78f6
Fix error code return in the BFER 'build_communication_chain()' method.
[ { "change_type": "MODIFY", "old_path": "src/Simulation/BFER/BFER.cpp", "new_path": "src/Simulation/BFER/BFER.cpp", "diff": "@@ -310,9 +310,9 @@ void BFER<B,R,Q>\ncatch (std::exception const& e)\n{\nmodule::Monitor::stop();\n+ simu->simu_error = true;\nsimu->mutex_exception.lock();\n-\nif (std::find(...
C++
MIT License
aff3ct/aff3ct
Fix error code return in the BFER 'build_communication_chain()' method.
8,489
14.02.2018 10:26:40
-3,600
d4134c09593ac96341b72784ec56b811b82ac821
Fix bad includes in 'my_project_with_aff3ct'.
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Polar/SCL/Decoder_polar_SCL_MEM_fast_sys.hpp", "new_path": "src/Module/Decoder/Polar/SCL/Decoder_polar_SCL_MEM_fast_sys.hpp", "diff": "#include \"Tools/Algo/Sort/LC_sorter.hpp\"\n#include \"Tools/Code/Polar/decoder_polar_functions.h\"\n#incl...
C++
MIT License
aff3ct/aff3ct
Fix bad includes in 'my_project_with_aff3ct'.
8,490
14.02.2018 21:59:36
-3,600
b12dd4c7c43211591e352586ff8d663da444bbc9
Fix SC compilation.
[ { "change_type": "MODIFY", "old_path": "src/Simulation/BFER/Iterative/SystemC/SC_BFER_ite.cpp", "new_path": "src/Simulation/BFER/Iterative/SystemC/SC_BFER_ite.cpp", "diff": "@@ -133,7 +133,7 @@ void SC_BFER_ite<B,R,Q>\nthis->router = new tools::SC_Router (p, \"Router\" );\n- this->funnel = new tools...
C++
MIT License
aff3ct/aff3ct
Fix SC compilation.
8,490
15.02.2018 09:21:36
-3,600
7fd59224fe854303c11df5ad706d9fc9c90e72e9
A new compilation tests (8-bit, MPI and SystemC) in the CI.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -38,6 +38,27 @@ build-linux-gcc:\nscript:\n- ./ci/build-linux-gcc.sh\n+build-linux-gcc-8-bit:\n+ stage: build\n+ tags:\n+ - linux\n+ script:\n+ - ./ci/build-linux-gcc-8-bit.sh\n+\n+build-linux-gcc-mpi:...
C++
MIT License
aff3ct/aff3ct
A new compilation tests (8-bit, MPI and SystemC) in the CI.
8,490
15.02.2018 10:01:50
-3,600
c241a9070a31a4542261e6b08854d0f0e9ac33db
Fix the SystemC build test script.
[ { "change_type": "MODIFY", "old_path": "ci/build-linux-gcc-systemc.sh", "new_path": "ci/build-linux-gcc-systemc.sh", "diff": "#!/bin/bash\nset -x\n+cp $SYSTEMC_HOME/FindSystemC.cmake cmake/Modules/\n+cp $SYSTEMC_HOME/FindTLM.cmake cmake/Modules/\n+\nmkdir build\ncd build\ncmake .. -G\"Unix Makefiles...
C++
MIT License
aff3ct/aff3ct
Fix the SystemC build test script.
8,490
15.02.2018 10:37:20
-3,600
3adc086c07e73a4f5184707fd98d5746a93cc4c5
Modify the copyright date.
[ { "change_type": "MODIFY", "old_path": "src/main.cpp", "new_path": "src/main.cpp", "diff": "@@ -73,7 +73,7 @@ void print_version()\nstd::cout << \"aff3ct (\" << os << prec << \", \" << compiler << \" \" << compiler_version << \", \"\n<< mipp::InstructionFullType << \") \" << affect_version << std::e...
C++
MIT License
aff3ct/aff3ct
Modify the copyright date.
8,490
15.02.2018 10:37:51
-3,600
c431455dfff0a008567ebc57d054fb2671f7a487
Do not show deprecated warnings.
[ { "change_type": "MODIFY", "old_path": "ci/build-linux-gcc-systemc.sh", "new_path": "ci/build-linux-gcc-systemc.sh", "diff": "@@ -6,7 +6,7 @@ cp $SYSTEMC_HOME/FindTLM.cmake cmake/Modules/\nmkdir build\ncd build\n-cmake .. -G\"Unix Makefiles\" -DCMAKE_CXX_COMPILER=g++ -DCMAKE_BUILD_TYPE=Release -DENA...
C++
MIT License
aff3ct/aff3ct
Do not show deprecated warnings.
8,490
22.02.2018 18:35:50
-3,600
81a2a1bd7fbcf4464b7abde3a6a18efececdba5b
Improve the SC_FAST stores to support AVX512.
[ { "change_type": "MODIFY", "old_path": "lib/MIPP", "new_path": "lib/MIPP", "diff": "-Subproject commit 54cb5c4f7bbb2622d9c8a9b842f668f20e414382\n+Subproject commit 53cb460776b6eb64feaa41f672cc708409989607\n" }, { "change_type": "MODIFY", "old_path": "src/Module/Decoder/Polar/SC/Decoder_p...
C++
MIT License
aff3ct/aff3ct
Improve the SC_FAST stores to support AVX512.
8,490
03.03.2018 12:58:32
-3,600
7d4023991008ee5951a168cc8feed4f3eff33466
Fix minor issues in the doc + add a readme for the doc generation.
[ { "change_type": "ADD", "old_path": null, "new_path": "doc/README.md", "diff": "+# AFF3CT Documentation Generation\n+\n+**AFF3CT** uses [Doxygen](http://www.doxygen.org) to generate automatically the documentation.\n+\n+Doxygen can easily be installed on Ubuntu/Debian systems like this:\n+\n+ $ sudo...
C++
MIT License
aff3ct/aff3ct
Fix minor issues in the doc + add a readme for the doc generation.
8,483
06.03.2018 10:31:02
-3,600
428f3052f9c9fef3c04d27a74666a76f48539de3
Set argument --dec-h-path as optinal
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Decoder/LDPC/Decoder_LDPC.cpp", "new_path": "src/Factory/Module/Decoder/LDPC/Decoder_LDPC.cpp", "diff": "@@ -45,7 +45,7 @@ void Decoder_LDPC::parameters\nauto p = this->get_prefix();\n- req_args.add(\n+ opt_args.add(\n{p+\"-h-path\"},\ntools...
C++
MIT License
aff3ct/aff3ct
Set argument --dec-h-path as optinal
8,483
06.03.2018 11:45:15
-3,600
693248fc3b7d3ad3681901c2b04f9837148345bc
Fix 8 bits compilation in poncturer turbo. Didn't have a link to the aff3ct::module::Puncturer_turbo<> class
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Puncturer/Turbo/Puncturer_turbo.cpp", "new_path": "src/Factory/Module/Puncturer/Turbo/Puncturer_turbo.cpp", "diff": "#include \"Puncturer_turbo.hpp\"\n+#include \"Tools/types.h\"\n+#ifdef MULTI_PREC\n+using PT = aff3ct::module::Puncturer_tur...
C++
MIT License
aff3ct/aff3ct
Fix 8 bits compilation in poncturer turbo. Didn't have a link to the aff3ct::module::Puncturer_turbo<> class
8,483
06.03.2018 12:01:53
-3,600
2b9d190f93c338e6a70b5942ae8f47522fdd9cb3
Fix MPI argument storing
[ { "change_type": "MODIFY", "old_path": "src/Factory/Simulation/Simulation.cpp", "new_path": "src/Factory/Simulation/Simulation.cpp", "diff": "@@ -149,7 +149,7 @@ void Simulation::parameters\nMPI_Comm_size(MPI_COMM_WORLD, &this->mpi_size);\nMPI_Comm_rank(MPI_COMM_WORLD, &this->mpi_rank);\n- if(exist(...
C++
MIT License
aff3ct/aff3ct
Fix MPI argument storing
8,483
08.03.2018 16:59:23
-3,600
74620d28a18062aa2d9aaf6b2558544085206c24
Create Codec HIHO and Codec SIHO_HIHO in Module and Factory; Associate Codec BCH to thoses new Codec HIHO SIHO in factories and modules
[ { "change_type": "MODIFY", "old_path": "src/Factory/Module/Codec/BCH/Codec_BCH.cpp", "new_path": "src/Factory/Module/Codec/BCH/Codec_BCH.cpp", "diff": "@@ -9,7 +9,7 @@ const std::string aff3ct::factory::Codec_BCH_prefix = \"cdc\";\nCodec_BCH::parameters\n::parameters(const std::string &prefix)\n: Co...
C++
MIT License
aff3ct/aff3ct
Create Codec HIHO and Codec SIHO_HIHO in Module and Factory; Associate Codec BCH to thoses new Codec HIHO SIHO in factories and modules
8,483
14.03.2018 08:50:45
-3,600
fb9d8890957da64a2401d79d7cc48b0c2b63f63c
Add the frame_id argument in the BCH decoder end encoder
[ { "change_type": "MODIFY", "old_path": "src/Module/Decoder/BCH/Decoder_BCH.cpp", "new_path": "src/Module/Decoder/BCH/Decoder_BCH.cpp", "diff": "@@ -37,7 +37,7 @@ Decoder_BCH<B, R>\ntemplate <typename B, typename R>\nvoid Decoder_BCH<B, R>\n-::_decode(B *Y_N)\n+::_decode(B *Y_N, const int frame_id)\n...
C++
MIT License
aff3ct/aff3ct
Add the frame_id argument in the BCH decoder end encoder
8,483
14.03.2018 08:51:40
-3,600
37532e1d0db0e4c090732c979fc3931f6dfd5841
Add the decodeur BCH genius and the encoder BCH adaptative
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Module/Decoder/BCH/Genius/Decoder_BCH_genius.cpp", "diff": "+#include <chrono>\n+#include <sstream>\n+\n+#include \"Tools/Perf/hard_decision.h\"\n+#include \"Tools/Exception/exception.hpp\"\n+\n+#include \"Decoder_BCH_genius.hpp\"\n+\n+using...
C++
MIT License
aff3ct/aff3ct
Add the decodeur BCH genius and the encoder BCH adaptative
8,486
11.03.2018 12:00:14
-3,600
8d80a6dd6e630880809f45ca8fbc46dda86e9cd1
Some cosmetics modifications.
[ { "change_type": "MODIFY", "old_path": "src/Module/Modem/User/Modem_user.hxx", "new_path": "src/Module/Modem/User/Modem_user.hxx", "diff": "@@ -144,7 +144,6 @@ void Modem_user<B,R,Q,MAX>\n{\nauto L0 = -std::numeric_limits<Q>::infinity();\nauto L1 = -std::numeric_limits<Q>::infinity();\n-\nauto b = n...
C++
MIT License
aff3ct/aff3ct
Some cosmetics modifications.
8,486
11.03.2018 12:01:59
-3,600
087ac1d1b65ae7bdb1e4ab4678e4c06b7430ee77
Bug correction in QAM demodulate/tdeodulate, addition of QAM tmodulate.
[ { "change_type": "MODIFY", "old_path": "src/Module/Modem/QAM/Modem_QAM.hpp", "new_path": "src/Module/Modem/QAM/Modem_QAM.hpp", "diff": "@@ -38,6 +38,7 @@ public:\n}\nprotected:\n+ void _tmodulate ( const Q *X_N1, R *X_N2, const int frame_id);\nvoid _modulate ( const B *X_N1, R *X_N2, const int frame...
C++
MIT License
aff3ct/aff3ct
Bug correction in QAM demodulate/tdeodulate, addition of QAM tmodulate.
8,486
12.03.2018 10:40:15
-3,600
f548af9b4d6a83a9c3da33b118402ed87ec2c10a
Cosmetics again.
[ { "change_type": "MODIFY", "old_path": "src/Module/Modem/User/Modem_user.hxx", "new_path": "src/Module/Modem/User/Modem_user.hxx", "diff": "@@ -254,6 +254,9 @@ void Modem_user<B,R,Q,MAX>\n}\n}\n+/*\n+ * Demodulator\n+ */\ntemplate <typename B, typename R, typename Q, tools::proto_max<Q> MAX>\nvoid M...
C++
MIT License
aff3ct/aff3ct
Cosmetics again.
8,486
12.03.2018 14:43:50
-3,600
e21405586c9bdcd26cd43bdaf06f6f342ac95006
Modification of the handling of the bits of the las symbol for PAM modulation.
[ { "change_type": "MODIFY", "old_path": "src/Module/Modem/PAM/Modem_PAM.hpp", "new_path": "src/Module/Modem/PAM/Modem_PAM.hpp", "diff": "@@ -37,6 +37,7 @@ public:\n}\nprotected:\n+ void _tmodulate ( const Q *X_N1, R *X_N2, const int frame_id);\nvoid _modulate ( const B *X_N1, R *X_N2, const int frame...
C++
MIT License
aff3ct/aff3ct
Modification of the handling of the bits of the las symbol for PAM modulation.