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
09.03.2020 17:57:36
-3,600
89397814daaab1a88723af6765c10c2872a14836
Add synchro parameters and dot export to the pipeline.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Pipeline.hpp", "new_path": "include/Tools/Sequence/Pipeline.hpp", "diff": "@@ -30,17 +30,23 @@ public:\n// Pipeline(const module::Task &first,\n// const std::vector<std::pair<std::vector<const module::Task*>, std::vector<const module::Ta...
C++
MIT License
aff3ct/aff3ct
Add synchro parameters and dot export to the pipeline.
8,490
10.03.2020 09:57:02
-3,600
2719be3d5f7be2f185fae9d2c375314a0335ad64
Create two 'check_errors' tasks: a short and a long one.
[ { "change_type": "MODIFY", "old_path": "include/Module/Monitor/BFER/Monitor_BFER.hpp", "new_path": "include/Module/Monitor/BFER/Monitor_BFER.hpp", "diff": "@@ -27,6 +27,7 @@ class Monitor_BFER : public Monitor\npublic:\ninline Task& operator[](const mnt::tsk t);\ninline Socket& operator[](const mnt:...
C++
MIT License
aff3ct/aff3ct
Create two 'check_errors' tasks: a short and a long one.
8,490
11.03.2020 16:21:35
-3,600
b9b7e0bacfbf250fa33c015067570bbbc5385e5a
Add an unbind method to sockets.
[ { "change_type": "MODIFY", "old_path": "include/Module/Socket.hpp", "new_path": "include/Module/Socket.hpp", "diff": "@@ -75,6 +75,8 @@ public:\ninline void operator()(void* dataptr);\ninline void reset();\n+\n+ inline size_t unbind(Socket& s_out);\n};\n}\n}\n" }, { "change_type": "MODIFY", ...
C++
MIT License
aff3ct/aff3ct
Add an unbind method to sockets.
8,490
11.03.2020 16:22:41
-3,600
c2cb6d2b1c812174896ab0105bc54be79b185b64
Improve the pipeline to manage bind and unbind of adaptors.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Pipeline.hpp", "new_path": "include/Tools/Sequence/Pipeline.hpp", "diff": "* \\file\n* \\brief Class tools::Pipeline.\n*/\n-#ifndef CHAIN_PIPELINE_HPP_\n-#define CHAIN_PIPELINE_HPP_\n+#ifndef PIPELINE_HPP_\n+#define PIPELINE_HPP_\n#inclu...
C++
MIT License
aff3ct/aff3ct
Improve the pipeline to manage bind and unbind of adaptors.
8,490
11.03.2020 16:22:51
-3,600
f2adb68c582ef585bc8147653cf6292a45c527c8
Fix segfault in sequence.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Sequence/Sequence.cpp", "new_path": "src/Tools/Sequence/Sequence.cpp", "diff": "@@ -236,7 +236,7 @@ void Sequence\nfor (auto first : firsts)\n{\nauto contents = last_subseq->get_contents();\n- this->firsts_tasks_id.push_back(contents ? contents->task...
C++
MIT License
aff3ct/aff3ct
Fix segfault in sequence.
8,490
12.03.2020 19:22:16
-3,600
a4a0b285777ec393aca8fe386b9082e123b3fa06
Manage multi conditions in pipeline + add exceptions support in sequence.
[ { "change_type": "MODIFY", "old_path": "include/Module/Probe/Probe.hpp", "new_path": "include/Module/Probe/Probe.hpp", "diff": "@@ -32,8 +32,15 @@ namespace module\n}\n}\n+class AProbe : public Module\n+{\n+protected:\n+ AProbe(const int n_frames = 1);\n+ virtual ~AProbe() = default;\n+};\n+\ntempla...
C++
MIT License
aff3ct/aff3ct
Manage multi conditions in pipeline + add exceptions support in sequence.
8,490
14.03.2020 10:21:31
-3,600
e8c76cb5ae50e9157c77f74e6fb347b3324a2856
Rename 'exceptions' in 'exclusions'.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Sequence.hpp", "new_path": "include/Tools/Sequence/Sequence.hpp", "diff": "@@ -73,7 +73,7 @@ protected:\nbool thread_pinning;\nstd::vector<size_t> puids;\nbool no_copy_mode;\n- const std::vector<const module::Task*> saved_exceptions;\n+ ...
C++
MIT License
aff3ct/aff3ct
Rename 'exceptions' in 'exclusions'.
8,490
14.03.2020 10:21:59
-3,600
2316e187a7b6c600957c48a84f5cd28ebbad0c79
Hack the false negative cppcheck error.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -16,7 +16,7 @@ before_script:\nanalysis-cppcheck:\nstage: analysis\n- allow_failure: true\n+ allow_failure: false\nexcept:\n- schedules\nartifacts:\n" }, { "change_type": "MODIFY", "old_pat...
C++
MIT License
aff3ct/aff3ct
Hack the false negative cppcheck error.
8,490
14.03.2020 10:35:59
-3,600
e3847c23c88aa3265034fdcc3fd25bd68d7e2d43
Dump .dot ref sequence and pipeline when they are not equivalent.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Sequence/Pipeline.cpp", "new_path": "src/Tools/Sequence/Pipeline.cpp", "diff": "@@ -361,6 +361,11 @@ void Pipeline\nif (ref_tasks.size() != cur_tasks.size())\n{\n+ std::ofstream f1(\"dbg_ref_sequence.dot\");\n+ this->original_sequence.export_dot(f1);...
C++
MIT License
aff3ct/aff3ct
Dump .dot ref sequence and pipeline when they are not equivalent.
8,490
15.03.2020 10:53:40
-3,600
8fdeaf9500d3a636c95571b00591c34ffae3eda6
CI: display the false positive error of cppcheck.
[ { "change_type": "MODIFY", "old_path": "ci/analysis-cppcheck.sh", "new_path": "ci/analysis-cppcheck.sh", "diff": "@@ -27,6 +27,11 @@ if [ $COUNT -gt 1 ]; then\necho \"Errors list:\"\ncat cppcheck/cppcheck_error.log\nexit 1;\n+elif [ $COUNT -gt 0 ]; then\n+ echo \"There is one false positive error.\"...
C++
MIT License
aff3ct/aff3ct
CI: display the false positive error of cppcheck.
8,490
15.03.2020 10:54:27
-3,600
e41502aa4c4c24ab816dca33cc1d8f0963e03b44
Rm the 'status' output socket in SystemC/TLM interface.
[ { "change_type": "MODIFY", "old_path": "src/Module/SC_Module.cpp", "new_path": "src/Module/SC_Module.cpp", "diff": "@@ -61,12 +61,15 @@ SC_Module\nbreak;\ncase socket_t::SOUT:\n+ if (name != \"status\")\n+ {\nindirect_sockets_out[i] = id_out;\nindirect_sockets_out_rev.push_back(i);\nsockets_out.push...
C++
MIT License
aff3ct/aff3ct
Rm the 'status' output socket in SystemC/TLM interface.
8,490
15.03.2020 12:01:45
-3,600
a785073beff15a92e76eeb1d77e62abac642866d
Add the possibility to disable headers in dumpers.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Display/Dumper/Dumper.hpp", "new_path": "include/Tools/Display/Dumper/Dumper.hpp", "diff": "@@ -36,6 +36,7 @@ protected:\nstd::vector<bool> registered_data_bin;\nstd::vector<std::vector<unsigned>> registered_data_head;\nstd::vector<unsigned> regi...
C++
MIT License
aff3ct/aff3ct
Add the possibility to disable headers in dumpers.
8,490
16.03.2020 16:36:15
-3,600
b1bc87a9b7db2c4809beeba279c86f70aa668fd6
Put the 'tools::Nodes_parser' structure in public headers.
[ { "change_type": "RENAME", "old_path": "src/Tools/Code/Polar/Nodes_parser.h", "new_path": "include/Tools/Code/Polar/Nodes_parser.hpp", "diff": "+/*!\n+ * \\file\n+ * \\brief Struct tools::Nodes_parser.\n+ */\n#ifndef NODES_PARSER_HPP\n#define NODES_PARSER_HPP\n@@ -44,6 +48,8 @@ public:\n}\n}\n+#ifnd...
C++
MIT License
aff3ct/aff3ct
Put the 'tools::Nodes_parser' structure in public headers.
8,490
17.03.2020 19:12:32
-3,600
b6424f409383ad082a309d39746c8fc06f04824a
Add the reset interface to the reporters.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Display/Reporter/Probe/Reporter_probe.hpp", "new_path": "include/Tools/Display/Reporter/Probe/Reporter_probe.hpp", "diff": "@@ -100,6 +100,8 @@ public:\nvirtual void probe(const std::string &name, const void *data, const int frame_id);\n+ virtual...
C++
MIT License
aff3ct/aff3ct
Add the reset interface to the reporters.
8,490
17.03.2020 19:12:54
-3,600
7bfd86e81844ef379a06d16b4c14a58bb48e45ed
Reset adaptors after an execution.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Sequence/Pipeline.cpp", "new_path": "src/Tools/Sequence/Pipeline.cpp", "diff": "@@ -926,6 +926,14 @@ void Pipeline\nfor (auto &t : threads)\nt.join();\n+\n+ for (auto &padps : this->adaptors)\n+ {\n+ for (auto &adp : padps.first)\n+ adp->reset();\n+ ...
C++
MIT License
aff3ct/aff3ct
Reset adaptors after an execution.
8,490
19.03.2020 11:56:53
-3,600
10924be4401948bd803d6220f11975fcd3fd5dae
Fix the bind position bug in the pipeline.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Sequence/Pipeline.cpp", "new_path": "src/Tools/Sequence/Pipeline.cpp", "diff": "@@ -493,7 +493,7 @@ void Pipeline\nauto unbind_sout_pos = std::distance(sck_out->get_bound_sockets().begin(),\nstd::find(sck_out->get_bound_sockets().begin(),\nsck_out->g...
C++
MIT License
aff3ct/aff3ct
Fix the bind position bug in the pipeline.
8,490
19.03.2020 13:09:45
-3,600
6bfa2517f4b5b1b6fa6c9e5b185d3b8c5740db39
Fix return unbind position in the socket.
[ { "change_type": "MODIFY", "old_path": "include/Module/Socket.hxx", "new_path": "include/Module/Socket.hxx", "diff": "@@ -350,7 +350,7 @@ size_t Socket\nauto it = std::find(s_out.bound_sockets.begin(), s_out.bound_sockets.end(), this);\nif (it != s_out.bound_sockets.end())\n{\n- unbind_pos = (int)st...
C++
MIT License
aff3ct/aff3ct
Fix return unbind position in the socket.
8,490
21.03.2020 13:26:35
-3,600
49318c26ee28f1f52e46546c5cb1582e2af068ca
Improve the reset method of the socket by calling unbind.
[ { "change_type": "MODIFY", "old_path": "include/Module/Socket.hxx", "new_path": "include/Module/Socket.hxx", "diff": "@@ -300,9 +300,10 @@ void Socket\nvoid Socket\n::reset()\n{\n- // this->dataptr = nullptr;\n- this->bound_sockets.clear();\n- this->bound_socket = nullptr;\n+ if (this->bound_socket ...
C++
MIT License
aff3ct/aff3ct
Improve the reset method of the socket by calling unbind.
8,490
20.04.2020 16:19:29
-7,200
0faf620dc850683504400aea2cf1ccef61120f08
Change year from 2019 to 2020.
[ { "change_type": "MODIFY", "old_path": "doc/source/conf.py", "new_path": "doc/source/conf.py", "diff": "@@ -36,7 +36,7 @@ if (read_the_docs_build):\n# -- Project information -----------------------------------------------------\nproject = 'AFF3CT'\n-copyright = '2019, AFF3CT team'\n+copyright = '202...
C++
MIT License
aff3ct/aff3ct
Change year from 2019 to 2020.
8,489
12.06.2020 11:27:41
-7,200
4fdaa13fda1e7909c1fb768f9a4e8323c287eec7
Add new codes rates and code length to DVB RCS2.
[ { "change_type": "MODIFY", "old_path": "src/Module/Puncturer/Turbo_DB/Puncturer_turbo_DB.cpp", "new_path": "src/Module/Puncturer/Turbo_DB/Puncturer_turbo_DB.cpp", "diff": "@@ -20,14 +20,17 @@ Puncturer_turbo_DB<B,Q>\nfloat rate = (float)K / (float)N;\nif (std::round(100.0 * rate) == std::round(100 *...
C++
MIT License
aff3ct/aff3ct
Add new codes rates and code length to DVB RCS2.
8,488
22.09.2020 09:53:40
-7,200
2c749cd40b2a6a8b487b13247eb0e94700612360
Add focal distrib.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -1336,7 +1336,7 @@ deploy-upload-ppa:\nscript:\n- source ./ci/tools/git-branch.sh\n- source ./ci/tools/threads.sh\n- - export DISTRIBS=\"xenial;bionic\"\n+ - export DISTRIBS=\"xenial;bionic;focal\"\n- ...
C++
MIT License
aff3ct/aff3ct
Add focal distrib.
8,488
23.09.2020 09:51:32
-7,200
03ed0a606cc64fe1aa7ba1cfe7de83467ec61752
Doc: note on Ubuntu versions for apt packages.
[ { "change_type": "MODIFY", "old_path": "doc/source/user/installation/installation/installation.rst", "new_path": "doc/source/user/installation/installation/installation.rst", "diff": "@@ -95,6 +95,11 @@ Update package list and install:\n* The package ``libaff3ct-dev`` contains the ``include/`` folde...
C++
MIT License
aff3ct/aff3ct
Doc: note on Ubuntu versions for apt packages.
8,488
23.09.2020 09:54:58
-7,200
cd456238645ecc8a3479efb92e54981fd50aa3a4
Doc: Remove useless blank lines.
[ { "change_type": "MODIFY", "old_path": "doc/source/user/installation/installation/installation.rst", "new_path": "doc/source/user/installation/installation/installation.rst", "diff": "@@ -36,7 +36,6 @@ To install |AFF3CT|, call the `install` target on the current Makefile:\n.. note:: Depending on th...
C++
MIT License
aff3ct/aff3ct
Doc: Remove useless blank lines.
8,490
07.10.2020 16:44:53
-7,200
9a8e7309353d883a7db2e2c01f5a5f6cab9d67f8
CI: fix the coverage script.
[ { "change_type": "MODIFY", "old_path": "ci/test-build-coverage-regression.sh", "new_path": "ci/test-build-coverage-regression.sh", "diff": "@@ -58,6 +58,8 @@ cd ${WD}\nmkdir code_coverage_files || true\nlcov --capture --directory $build_root/CMakeFiles/aff3ct-obj.dir/src --output-file code_coverage_...
C++
MIT License
aff3ct/aff3ct
CI: fix the coverage script.
8,490
07.10.2020 18:20:01
-7,200
7cf4180f847d4fd912aeb8f7b5c6243318d4cf68
CI: use new `needs` keyword to replace the pipeline by a DAG.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -113,7 +113,11 @@ build-linux-gcc-nointr:\nGIT_SUBMODULE_STRATEGY: recursive\nexcept:\n- schedules\n- dependencies: []\n+ needs:\n+ - job: analysis-cppcheck\n+ artifacts: false\n+ - job: analysis-heade...
C++
MIT License
aff3ct/aff3ct
CI: use new `needs` keyword to replace the pipeline by a DAG.
8,490
08.10.2020 10:25:41
-7,200
2e70239c69b64fa8e3b1846dfc601696ed8bd685
CI: fix static compilation on Ubuntu >= 18.04.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -131,7 +131,7 @@ build-linux-gcc-nointr:\n- export CC=\"gcc\"\n- export CXX=\"g++\"\n- export CFLAGS=\"-Wall -funroll-loops -DMIPP_NO_INTRINSICS\"\n- - export LFLAGS=\"-static -static-libgcc -static-li...
C++
MIT License
aff3ct/aff3ct
CI: fix static compilation on Ubuntu >= 18.04.
8,490
08.10.2020 14:50:27
-7,200
ab1a97eb870b99335f35da1e153f1f373b320e28
CI: simplify regression tests for short and long runs.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -141,8 +141,6 @@ build-linux-gcc-x64-sse4.2:\nstage: build\nvariables:\nGIT_SUBMODULE_STRATEGY: recursive\n- except:\n- - schedules\nneeds:\n- job: analysis-cppcheck\nartifacts: false\n@@ -174,6 +172,8...
C++
MIT License
aff3ct/aff3ct
CI: simplify regression tests for short and long runs.
8,490
08.10.2020 20:22:06
-7,200
2edcafc0fc5f85e5c01a9601dd61c7932ae35b87
CI: try to fix long regression tests.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -17,8 +17,6 @@ before_script:\nanalysis-cppcheck:\nstage: analysis\nallow_failure: false\n- except:\n- - schedules\nartifacts:\nname: analysis-cppcheck-logs\nwhen: always\n@@ -59,8 +57,6 @@ analysis-cl...
C++
MIT License
aff3ct/aff3ct
CI: try to fix long regression tests.
8,490
23.10.2020 13:28:05
-7,200
7cee7d9b38e3e135c239769e0a664e34390f55f4
Check the `info_bits_pos` vector in the LDPC decoders.
[ { "change_type": "MODIFY", "old_path": "include/Module/Decoder/LDPC/BP/Flooding/Decoder_LDPC_BP_flooding.hxx", "new_path": "include/Module/Decoder/LDPC/BP/Flooding/Decoder_LDPC_BP_flooding.hxx", "diff": "#include <sstream>\n#include <string>\n+#include \"Tools/general_utils.h\"\n#include \"Tools/Exc...
C++
MIT License
aff3ct/aff3ct
Check the `info_bits_pos` vector in the LDPC decoders.
8,490
28.10.2020 17:22:59
-3,600
3c0b716e26eaa763918d08bf16c835981aa02dd4
Add a new `set_n_frames` method in the `Module` class.
[ { "change_type": "MODIFY", "old_path": "include/Module/Decoder/Decoder_HIHO.hpp", "new_path": "include/Module/Decoder/Decoder_HIHO.hpp", "diff": "@@ -71,6 +71,8 @@ public:\nvirtual int decode_hiho_cw(const B *Y_N, B *V_N, const int frame_id = -1);\n+ virtual void set_n_frames(const int n_frames);\n+...
C++
MIT License
aff3ct/aff3ct
Add a new `set_n_frames` method in the `Module` class.
8,490
01.11.2020 19:36:36
-3,600
028ec06941fbd1af8384c1bc1c1e8412e27682fe
Fix 'module::set_n_frames()' for 'module::Subsequence'.
[ { "change_type": "MODIFY", "old_path": "src/Module/Subsequence/Subsequence.cpp", "new_path": "src/Module/Subsequence/Subsequence.cpp", "diff": "@@ -174,11 +174,33 @@ void Subsequence\nconst auto old_n_frames = this->get_n_frames();\nif (old_n_frames != n_frames)\n{\n+ auto &p = *this->tasks[0];\n+ a...
C++
MIT License
aff3ct/aff3ct
Fix 'module::set_n_frames()' for 'module::Subsequence'.
8,490
02.11.2020 10:47:24
-3,600
236e4590d7cb68d5c295133f3a6c3a097a243132
Add 'set_n_frames()' for 'tools::Pipeline'.
[ { "change_type": "MODIFY", "old_path": "include/Module/Socket.hxx", "new_path": "include/Module/Socket.hxx", "diff": "@@ -381,16 +381,43 @@ void Socket\n{\nif (bound_sockets.size() != 0 || bound_socket != nullptr)\n{\n+ std::stringstream bound_sockets_str;\n+ if (bound_sockets.size() != 0)\n+ {\n+ b...
C++
MIT License
aff3ct/aff3ct
Add 'set_n_frames()' for 'tools::Pipeline'.
8,490
02.11.2020 14:27:33
-3,600
84aff546974a39ecef6c56e7f59cbeb156fd11d6
Add 'set_name' and 'set_datatype' to the 'module::Socket'.
[ { "change_type": "MODIFY", "old_path": "include/Module/Socket.hpp", "new_path": "include/Module/Socket.hpp", "diff": "@@ -26,8 +26,8 @@ class Socket : public tools::Interface_reset\nprotected:\nTask &task;\n- const std::string name;\n- const std::type_index datatype;\n+ std::string name;\n+ std::typ...
C++
MIT License
aff3ct/aff3ct
Add 'set_name' and 'set_datatype' to the 'module::Socket'.
8,490
09.11.2020 17:36:13
-3,600
77f7f3ea1dc8490be029877d98245b0d38441715
Fix BER/FER performance regression.
[ { "change_type": "MODIFY", "old_path": "src/Module/Channel/Rayleigh/Channel_Rayleigh_LLR.cpp", "new_path": "src/Module/Channel/Rayleigh/Channel_Rayleigh_LLR.cpp", "diff": "@@ -167,7 +167,8 @@ void Channel_Rayleigh_LLR<R>\n}\nelse // n_frames_per_wave = 1\n{\n- gaussian_generator->generate(this->gain...
C++
MIT License
aff3ct/aff3ct
Fix BER/FER performance regression.
8,490
11.11.2020 10:05:38
-3,600
ec2f6ad76b665774d8e1c40c782cab89e7f44ad9
Fix subsequence.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Sequence.hpp", "new_path": "include/Tools/Sequence/Sequence.hpp", "diff": "@@ -139,7 +139,7 @@ public:\nvoid exec(std::function<bool(const std::vector<const std::vector<int>*>&)> stop_condition);\nvoid exec(std::function<bool( )> stop_co...
C++
MIT License
aff3ct/aff3ct
Fix subsequence.
8,490
12.11.2020 10:35:31
-3,600
70dcf5f889046e1e3bee89f1bd8cd7d9e7cac16d
Fix 'tools::Pipeline' with no copy adaptors.
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -11,6 +11,7 @@ src_files.txt\n.fuse_*\n.idea/\n.vs\n+.vscode\nCMakeSettings.json\n.scannerwork/\n" }, { "change_type": "MODIFY", "old_path": "include/Module/Adaptor/Adaptor_1_to_n.hxx", "new_pa...
C++
MIT License
aff3ct/aff3ct
Fix 'tools::Pipeline' with no copy adaptors.
8,490
13.11.2020 17:05:17
-3,600
a82bf8279062b347168117dade121e6af222d148
Fix 'module::Probe 'set_n_frames' method.
[ { "change_type": "MODIFY", "old_path": "include/Module/Probe/Probe.hxx", "new_path": "include/Module/Probe/Probe.hxx", "diff": "@@ -30,6 +30,7 @@ Probe<T>\nconst std::string name = \"Probe<\" + col_name + \">\";\nthis->set_name(name);\nthis->set_short_name(name);\n+ AProbe::set_n_frames(n_frames);\n...
C++
MIT License
aff3ct/aff3ct
Fix 'module::Probe 'set_n_frames' method.
8,490
13.11.2020 17:05:57
-3,600
7f449d76d602dc42f03b733108ae2c17b7c7be3e
Fix 'module::Adaptor' return status in 'tools::Pipeline'.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Sequence/Pipeline.cpp", "new_path": "src/Tools/Sequence/Pipeline.cpp", "diff": "@@ -759,7 +759,7 @@ void Pipeline\nauto ss = this->stages[sta]->sequences[t]->get_contents();\nassert(ss != nullptr);\nss->tasks .insert(ss->tasks.begin(), task_pull);\n-...
C++
MIT License
aff3ct/aff3ct
Fix 'module::Adaptor' return status in 'tools::Pipeline'.
8,490
13.11.2020 17:06:31
-3,600
125bf79dcc06f445a4f46fcd7fdc0de1a135c7bd
Initialize the 'statuses' to 'nullptr' in 'tools::Sequence'.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Sequence/Sequence.cpp", "new_path": "src/Tools/Sequence/Sequence.cpp", "diff": "@@ -441,7 +441,7 @@ void Sequence\n{\ndo\n{\n- // std::fill(statuses.begin(), statuses.end(), module::status_t::SKIPPED);\n+ std::fill(statuses.begin(), statuses.end(), n...
C++
MIT License
aff3ct/aff3ct
Initialize the 'statuses' to 'nullptr' in 'tools::Sequence'.
8,490
14.11.2020 09:47:33
-3,600
e442a8a965ccc2462a7f066ac997faddb5d48946
Fix wrong 'dataptr' write in the 'module::Task' 'status'.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Pipeline.hpp", "new_path": "include/Tools/Sequence/Pipeline.hpp", "diff": "@@ -110,10 +110,10 @@ public:\nvirtual ~Pipeline() = default;\n- void exec(const std::vector<std::function<bool(const std::vector<const std::vector<int>*>&)>> &st...
C++
MIT License
aff3ct/aff3ct
Fix wrong 'dataptr' write in the 'module::Task' 'status'.
8,490
15.11.2020 19:55:44
-3,600
e6ecd372bae32a25e8f2eebda7429d48e7f2efa1
Fix wrong memory access in the decoders.
[ { "change_type": "MODIFY", "old_path": "include/Module/Decoder/Decoder.hpp", "new_path": "include/Module/Decoder/Decoder.hpp", "diff": "@@ -70,10 +70,10 @@ public:\nvirtual void set_seed(const int seed);\n+ virtual void set_n_frames(const size_t n_frames);\n+\nprotected:\nvirtual void _reset(const s...
C++
MIT License
aff3ct/aff3ct
Fix wrong memory access in the decoders.
8,490
16.11.2020 09:11:36
-3,600
6698c59367752ec550b2a302741df3b209cdb5bb
Simplify and fix decoder calls when no 'CWD' vector.
[ { "change_type": "MODIFY", "old_path": "include/Module/Decoder/Decoder.hpp", "new_path": "include/Module/Decoder/Decoder.hpp", "diff": "@@ -74,8 +74,14 @@ public:\nprotected:\nvirtual void _reset(const size_t frame_id);\n+\n+ inline int compute_status(const std::vector<int>& status, const int frame_...
C++
MIT License
aff3ct/aff3ct
Simplify and fix decoder calls when no 'CWD' vector.
8,490
16.11.2020 10:04:45
-3,600
e8091201e3672091847288f301c8b7771d5315ca
Add a 'set_fast' method on the 'module::Module' class to set all tasks.
[ { "change_type": "MODIFY", "old_path": "include/Module/Module.hpp", "new_path": "include/Module/Module.hpp", "diff": "@@ -91,6 +91,8 @@ public:\ninline Task& operator[](const size_t id);\n+ void set_fast(const bool fast);\n+\nprotected:\nvirtual void deep_copy(const Module &m);\n" }, { "chan...
C++
MIT License
aff3ct/aff3ct
Add a 'set_fast' method on the 'module::Module' class to set all tasks.
8,490
16.11.2020 14:57:14
-3,600
026be93e3d7fe42c9bd7b2dd8125b4c4f7e65098
Fix wrong prototypes.
[ { "change_type": "MODIFY", "old_path": "include/Module/Channel/Channel.hpp", "new_path": "include/Module/Channel/Channel.hpp", "diff": "@@ -106,7 +106,7 @@ public:\nvoid add_noise_wg(const std::vector<R,A>& X_N, std::vector<R,A>& H_N, std::vector<R,A>& Y_N,\nconst int frame_id = -1, const bool manag...
C++
MIT License
aff3ct/aff3ct
Fix wrong prototypes.
8,490
17.11.2020 08:50:00
-3,600
263a85e70e47ba5f0d0df6c4c3f329b3cfe3cfbc
Rm useless enum. val.
[ { "change_type": "MODIFY", "old_path": "include/Module/Task.hpp", "new_path": "include/Module/Task.hpp", "diff": "@@ -28,8 +28,7 @@ class Socket;\nenum status_t : int { SUCCESS = 0,\nFAILURE = 1,\nFAILURE_STOP = -1,\n- UNKNOWN = -2,\n- SKIPPED = std::numeric_limits<int>::min() };\n+ UNKNOWN = -2 };\...
C++
MIT License
aff3ct/aff3ct
Rm useless enum. val.
8,490
17.11.2020 08:50:42
-3,600
d16c14959ce16a82b8050bee3af5bddfb7c3c87c
Doc: fix "readthedocs.org" compilation error.
[ { "change_type": "MODIFY", "old_path": "doc/source/conf.py", "new_path": "doc/source/conf.py", "diff": "@@ -40,6 +40,7 @@ copyright = '2020, AFF3CT team'\nauthor = 'AFF3CT team'\n# get the AFF3CT version from Git\n+subprocess.call('git fetch --all --tags', shell=True)\nlabel = subprocess.check_outpu...
C++
MIT License
aff3ct/aff3ct
Doc: fix "readthedocs.org" compilation error.
8,490
17.11.2020 09:48:08
-3,600
c071b1d1cd8b1b850374836a4380b94d0a7b0e07
Doc: fix "readthedocs.org" compilation error (again -.-).
[ { "change_type": "MODIFY", "old_path": "doc/source/conf.py", "new_path": "doc/source/conf.py", "diff": "@@ -40,7 +40,7 @@ copyright = '2020, AFF3CT team'\nauthor = 'AFF3CT team'\n# get the AFF3CT version from Git\n-subprocess.call('git fetch --all --tags', shell=True)\n+subprocess.call('git fetch or...
C++
MIT License
aff3ct/aff3ct
Doc: fix "readthedocs.org" compilation error (again -.-).
8,490
17.11.2020 10:05:20
-3,600
5d5b756743d96bfda1c01fe5f8067cf683d1d312
Doc: fix "readthedocs.org" compilation error (again -.- and last?).
[ { "change_type": "MODIFY", "old_path": "doc/source/conf.py", "new_path": "doc/source/conf.py", "diff": "@@ -40,7 +40,8 @@ copyright = '2020, AFF3CT team'\nauthor = 'AFF3CT team'\n# get the AFF3CT version from Git\n-subprocess.call('git fetch origin', shell=True)\n+if (read_the_docs_build):\n+ subpro...
C++
MIT License
aff3ct/aff3ct
Doc: fix "readthedocs.org" compilation error (again -.- and last?).
8,490
18.11.2020 15:22:23
-3,600
8bc75dc5a99acf61136b6f2abe45a7e9afd2d0a5
Add a new interface: "tools::Interface_get_set_n_frames".
[ { "change_type": "MODIFY", "old_path": "include/Module/Module.hpp", "new_path": "include/Module/Module.hpp", "diff": "#include <string>\n#include \"Tools/Interface/Interface_clone.hpp\"\n+#include \"Tools/Interface/Interface_get_set_n_frames.hpp\"\n#include \"Module/Task.hpp\"\n#include \"Module/Soc...
C++
MIT License
aff3ct/aff3ct
Add a new interface: "tools::Interface_get_set_n_frames".
8,486
20.11.2020 01:14:05
-3,600
33f4a6b9a3a90b79c7406c51d9b1d71b677811de
Add default template value for typename R.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Constellation/Constellation.hpp", "new_path": "include/Tools/Constellation/Constellation.hpp", "diff": "@@ -19,7 +19,7 @@ namespace tools\n* \\brief describe a constellation\n* \\param Symbol_type is the symbol type as a real or a complex\n*/\n-t...
C++
MIT License
aff3ct/aff3ct
Add default template value for typename R.
8,486
20.11.2020 15:36:48
-3,600
edb6c19562db58e2bde2231175c745bc83ac65e6
Add a variable name in 'Attributes& operator+=' declarations.
[ { "change_type": "MODIFY", "old_path": "include/Module/Monitor/BFER/Monitor_BFER.hpp", "new_path": "include/Module/Monitor/BFER/Monitor_BFER.hpp", "diff": "@@ -38,7 +38,7 @@ protected:\nAttributes();\nvoid reset();\n- Attributes& operator+=(const Attributes&);\n+ Attributes& operator+=(const Attribu...
C++
MIT License
aff3ct/aff3ct
Add a variable name in 'Attributes& operator+=' declarations.
8,486
20.11.2020 16:11:52
-3,600
b40c35643d7c4fb5f174ec74614699f49758d7bd
Change default of 'poly' in RSC encoders and 'standard' in RSC_DB encoder.
[ { "change_type": "MODIFY", "old_path": "include/Module/Encoder/RSC/Encoder_RSC_generic_json_sys.hpp", "new_path": "include/Module/Encoder/RSC/Encoder_RSC_generic_json_sys.hpp", "diff": "@@ -25,7 +25,7 @@ private:\npublic:\nEncoder_RSC_generic_json_sys(const int& K, const int& N,\n- const bool buffer...
C++
MIT License
aff3ct/aff3ct
Change default of 'poly' in RSC encoders and 'standard' in RSC_DB encoder.
8,490
28.11.2020 14:04:16
-3,600
dc30617b9917815a583244e1ff9dfb59ff1836e0
Add 'tools::Interface_is_done' and manage it in 'tools::Sequence'.
[ { "change_type": "MODIFY", "old_path": "include/Module/Monitor/Monitor.hpp", "new_path": "include/Module/Monitor/Monitor.hpp", "diff": "#include <cstddef>\n#include \"Tools/Interface/Interface_reset.hpp\"\n+#include \"Tools/Interface/Interface_is_done.hpp\"\n#include \"Module/Module.hpp\"\nnamespace...
C++
MIT License
aff3ct/aff3ct
Add 'tools::Interface_is_done' and manage it in 'tools::Sequence'.
8,486
02.12.2020 23:49:31
-3,600
0a3af3a84e0b22097684f68d9205dbfce1aca965
Remove reference for trellis attribute of Decoder_RSC_BCJR.
[ { "change_type": "MODIFY", "old_path": "include/Module/Decoder/RSC/BCJR/Decoder_RSC_BCJR.hpp", "new_path": "include/Module/Decoder/RSC/BCJR/Decoder_RSC_BCJR.hpp", "diff": "@@ -22,7 +22,7 @@ protected:\nconst int n_ff;\nconst bool buffered_encoding;\n- const std::vector<std::vector<int>> &trellis;\n+...
C++
MIT License
aff3ct/aff3ct
Remove reference for trellis attribute of Decoder_RSC_BCJR.
8,486
04.12.2020 00:54:02
-3,600
8a11f4275ad80ea82032b2f68e05544f605b6ce1
Fix notify_frozenbits_update declarations.
[ { "change_type": "MODIFY", "old_path": "include/Module/Decoder/Polar/ASCL/Decoder_polar_ASCL_MEM_fast_CA_sys.hpp", "new_path": "include/Module/Decoder/Polar/ASCL/Decoder_polar_ASCL_MEM_fast_CA_sys.hpp", "diff": "@@ -47,7 +47,7 @@ public:\nvirtual Decoder_polar_ASCL_MEM_fast_CA_sys<B,R,API_polar>* cl...
C++
MIT License
aff3ct/aff3ct
Fix notify_frozenbits_update declarations.
8,486
04.12.2020 17:10:35
-3,600
c90ae5355c38323b5d4d3289a6e43b62a3a519f1
Update sequence for notifying clones.
[ { "change_type": "MODIFY", "old_path": "src/Simulation/Sequence/BFER/Iterative/Simulation_sequence_BFER_ite.cpp", "new_path": "src/Simulation/Sequence/BFER/Iterative/Simulation_sequence_BFER_ite.cpp", "diff": "@@ -664,8 +664,13 @@ void Simulation_sequence_BFER_ite<B,R,Q>\nm->set_seed(prng());\nauto ...
C++
MIT License
aff3ct/aff3ct
Update sequence for notifying clones.
8,492
03.09.2019 18:05:06
-7,200
ebad9f0e227375220bc137d2336ebda3f21dc028
remove throw clause on function declaration
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -629,7 +629,8 @@ def process_ast(ast_filename):\nmethod_suffix = m.group(2)\nelse:\n# special case for '= default' (no trailing ';' in Clang AST print)\n- m = re.match...
C++
MIT License
aff3ct/aff3ct
remove throw clause on function declaration
8,485
04.09.2019 17:18:05
-7,200
8353cd45353c484f6560f78d85ea0f1e4477cc41
extract templates from method declarations
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -168,10 +168,117 @@ def split_args(arg_str):\nreturn args\n+# process one template arg, mainly to extract its default value if it has one\n+def process_template_arg(te...
C++
MIT License
aff3ct/aff3ct
extract templates from method declarations
8,485
13.09.2019 17:21:20
-7,200
8d5b2af368363e45e881cc0060caa11b74ebb010
keep class template informations
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -186,7 +186,7 @@ def process_template_arg(template_arg_signature, template_arg_rank):\ntemplate_arg_entry['template_arg_default'] = template_arg_default\nreturn templa...
C++
MIT License
aff3ct/aff3ct
keep class template informations
8,492
17.09.2019 11:33:51
-7,200
07229cf3f836065599c9ee5a87f4952b7003ae5c
handle default arg values in task detection
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -813,16 +813,23 @@ def find_task_method(class_entry, module_task_entry):\n# lookup all methods\nfor method, method_entry in class_entry['class_all_methods_index'].item...
C++
MIT License
aff3ct/aff3ct
handle default arg values in task detection
8,492
18.09.2019 14:47:16
-7,200
9a2510aafde9409c7601b46e05f72add69b0a598
skip arguments with default values in socket generation
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -10,6 +10,8 @@ import sys\n# enable additional output and dump internal_db\ndebug_mode = False\n+setting_keep_task_method = True\n+\n# process one method argument\ndef...
C++
MIT License
aff3ct/aff3ct
skip arguments with default values in socket generation
8,485
11.10.2019 11:02:56
-7,200
26dc003a8405ce83a3fd3a78a4cbaf8ccef3f536
detect virtual class inheritence
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -608,7 +608,7 @@ def process_ast(ast_filename):\n# ignore 'enum classes' for now\nif not filter_out and (scope == 'namespace' or scope == '<toplevel>') and not line.st...
C++
MIT License
aff3ct/aff3ct
detect virtual class inheritence
8,485
11.10.2019 15:45:24
-7,200
0d3421fb4bc3f6226c328e6799313477aa9a6308
add aff3ct::tools lookup
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -595,7 +595,10 @@ def process_ast(ast_filename):\n# - currently supported:\n# - alt3r::module namespace\n# - aff3ct::module namespace\n- if filter_out and (name_path_s...
C++
MIT License
aff3ct/aff3ct
add aff3ct::tools lookup
8,490
15.10.2019 16:50:26
-7,200
ce377c745f565b9509cdebc1f6418d1944937ac1
Add missing 'cli' include dir.
[ { "change_type": "MODIFY", "old_path": "abi/01_aff3ct_dump_clang_ast.sh", "new_path": "abi/01_aff3ct_dump_clang_ast.sh", "diff": "#!/bin/bash\nrootdir='..'\n-cmd=$(clang++ -### -c -I${rootdir}/src -I${rootdir}/lib/MIPP/src -I${rootdir}/lib/rang/include -I${rootdir}/lib/date/include/date -std=gnu++11...
C++
MIT License
aff3ct/aff3ct
Add missing 'cli' include dir.
8,485
15.10.2019 17:48:18
-7,200
25690e85c7c78537725a2e02bafe1d82dd387fd0
add support for parsing tools subdir AST elements
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -12,6 +12,7 @@ debug_mode = False\nsetting_keep_task_method = True\n+reserved_keywords = [ 'class', 'enum', 'exception', 'for', 'if', 'public', 'protected', 'private',...
C++
MIT License
aff3ct/aff3ct
add support for parsing tools subdir AST elements
8,485
15.10.2019 17:54:59
-7,200
ec6a8d9b0dfebc3baf983e18f0160882389924c5
add command line debug flag
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -1082,10 +1082,13 @@ ast_filename = 'aff3ct_ast.txt'\nargparser = argparse.ArgumentParser(description='Build json database from Clang AST, and optional additional sour...
C++
MIT License
aff3ct/aff3ct
add command line debug flag
8,485
16.10.2019 14:25:14
-7,200
901055355820846651540aee45a80d2d405dc36b
add some more c++ keywords, sort db_summary methods
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -12,7 +12,17 @@ debug_mode = False\nsetting_keep_task_method = True\n-reserved_keywords = [ 'class', 'enum', 'exception', 'for', 'if', 'public', 'protected', 'private'...
C++
MIT License
aff3ct/aff3ct
add some more c++ keywords, sort db_summary methods
8,485
16.10.2019 14:31:30
-7,200
0b3f9e8b0157a4621a8fd56deb36c719a4dd546c
sort json keys
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -825,7 +825,7 @@ def process_ast(ast_filename):\ninternal_db_filename = 'internal_db.json'\nwith open(internal_db_filename, 'w') as foutput:\nprint(\"[debug mode] dump...
C++
MIT License
aff3ct/aff3ct
sort json keys
8,485
31.10.2019 13:28:58
-3,600
97b0f7b87b46be7ae0bc94aa4b27455d7ee103b4
extract structs as classes, add a class_kind field to distinguish between classes and structs
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -468,9 +468,10 @@ def add_method(class_entry, method, method_is_inline, method_suffix, method_temp\n# add a new class to the db\n# - name_path_str is the full qualifie...
C++
MIT License
aff3ct/aff3ct
extract structs as classes, add a class_kind field to distinguish between classes and structs
8,492
15.11.2019 15:49:53
-3,600
3ec3e9e87ab3da26e9de994542904b8311fb6a92
fix processing of tasks with duplicate names
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -858,6 +858,8 @@ def find_task_method(class_entry, module_task_entry):\n# lookup all methods\nfor method, method_entry in class_entry['class_all_methods_index'].items(...
C++
MIT License
aff3ct/aff3ct
fix processing of tasks with duplicate names
8,492
29.11.2019 14:30:35
-3,600
79f5e947ffbc23ef9db3792fd84023df7fc18845
check all homonym methods when looking for tasks
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -855,6 +855,7 @@ def find_task_method(class_entry, module_task_entry):\nmodule_task_name = module_task_entry['task_name']\nmodule_task_sockets = module_task_entry['soc...
C++
MIT License
aff3ct/aff3ct
check all homonym methods when looking for tasks
8,492
10.12.2019 13:47:24
-3,600
3ea5a4c0a3bbe568a3c4ef58a6d1f18de5baaf8e
allow tasks with non-void return types, add debug messages about task detection process
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -902,12 +902,20 @@ def find_task_method(class_entry, module_task_entry):\ntask_methods = []\n# lookup all methods\nfor method, method_entry in class_entry['class_all_m...
C++
MIT License
aff3ct/aff3ct
allow tasks with non-void return types, add debug messages about task detection process
8,492
11.12.2019 14:52:14
-3,600
8ac155c52fec814be8e01d65d6abf84a8d1e221c
add realtype attribute for args and output when enum type
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -866,6 +866,28 @@ def process_ast(ast_filename):\n# only consider class members, and only public ones\nif debug_mode:\nprint(line)\n+\n+ enum_classes = dict()\n+ for c...
C++
MIT License
aff3ct/aff3ct
add realtype attribute for args and output when enum type
8,485
11.12.2019 15:56:34
-3,600
25c1aa79cd7e2575afb4e7e035aa40681bc51397
enhance debug output
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -925,11 +925,11 @@ def find_task_method(class_entry, module_task_entry):\n# lookup all methods\nfor method, method_entry in class_entry['class_all_methods_index'].item...
C++
MIT License
aff3ct/aff3ct
enhance debug output
8,485
18.12.2019 16:00:00
-3,600
9bbdb30fef45a6a56401f657dd216349e04301c1
support lists of inherited classes
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -475,7 +475,7 @@ def add_class(db, name_path_str, class_short_name, class_inheritence, class_temp\nclass_entry['class_name'] = name_path_str\nclass_entry['class_short_...
C++
MIT License
aff3ct/aff3ct
support lists of inherited classes
8,485
09.01.2020 11:07:59
-3,600
f3278427956189ad9bb0238f5e55fe6d92c1a31a
fix splitting the inheritence string when some parent classes are multi-parameter templates
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -475,7 +475,7 @@ def add_class(db, name_path_str, class_short_name, class_inheritence, class_temp\nclass_entry['class_name'] = name_path_str\nclass_entry['class_short_...
C++
MIT License
aff3ct/aff3ct
fix splitting the inheritence string when some parent classes are multi-parameter templates
8,492
29.11.2019 14:35:32
-3,600
48800684590e1ddce7d5b7199757a4f849603b0c
update aff3ct.hpp path
[ { "change_type": "MODIFY", "old_path": "abi/01_aff3ct_dump_clang_ast.sh", "new_path": "abi/01_aff3ct_dump_clang_ast.sh", "diff": "#!/bin/bash\nrootdir='..'\n-cmd=$(clang++ -### -c -I${rootdir}/src -I${rootdir}/lib/MIPP/src -I${rootdir}/lib/cli/src -I${rootdir}/lib/rang/include -I${rootdir}/lib/date/...
C++
MIT License
aff3ct/aff3ct
update aff3ct.hpp path
8,486
20.11.2020 15:37:37
-3,600
deff352b77c843dd73bec4e4dba55696b385546c
Include protected members in the JSON file.
[ { "change_type": "MODIFY", "old_path": "abi/02_aff3ct_read_clang_ast.py", "new_path": "abi/02_aff3ct_read_clang_ast.py", "diff": "@@ -301,7 +301,7 @@ def split_templates(declaration_str):\n# detect a class method and record corresponding entry\n# - method_is_inline indicate whether the method is def...
C++
MIT License
aff3ct/aff3ct
Include protected members in the JSON file.
8,490
21.01.2021 11:02:31
-3,600
7669e3d6400b958c8c31a8204a992aef1b7e4e9e
Add a readme for the ABI scripts.
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -26,5 +26,8 @@ code_coverage_report/\ndoc/build/\ndoc/source/api/\ndoc/output/\n+scripts/abi/aff3ct_ast.txt\n+scripts/abi/db.json\n+scripts/abi/db_summary.txt\n__pycache__/\n" }, { "change_type": "MODI...
C++
MIT License
aff3ct/aff3ct
Add a readme for the ABI scripts.
8,490
21.01.2021 13:05:10
-3,600
1a2fd0a0e52831faab6429ac41586e712fb51fb7
CI: disable Windows 32-bit build for SSE4.2.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -363,13 +363,13 @@ build-windows-gcc-x86-sse4.2:\n- gcc\n- cmake\n- x86\n- - 32-bit\n+ - 64-bit\nartifacts:\nname: build-windows-gcc-x86-sse4.2\npaths:\n- build_windows_gcc_x86_sse4.2\nscript:\n- - set...
C++
MIT License
aff3ct/aff3ct
CI: disable Windows 32-bit build for SSE4.2.
8,490
21.01.2021 14:36:27
-3,600
7113bf890ec6711529ec14a13df11bc05fbc455d
Doc: fix the refs to the `-F` parameter.
[ { "change_type": "MODIFY", "old_path": "doc/source/user/simulation/parameters/codec/bch/encoder.rst", "new_path": "doc/source/user/simulation/parameters/codec/bch/encoder.rst", "diff": "@@ -83,7 +83,7 @@ Description of the allowed values:\n.. |dec-simd_descr_inter| replace:: Select the inter-frame s...
C++
MIT License
aff3ct/aff3ct
Doc: fix the refs to the `-F` parameter.
8,486
17.11.2020 10:25:07
-3,600
27188fc61c30f09df569515b93d1fd3a3ae882a3
Add new Module () and [] operators.
[ { "change_type": "MODIFY", "old_path": "include/Module/Module.hpp", "new_path": "include/Module/Module.hpp", "diff": "@@ -82,9 +82,10 @@ public:\nvoid remove_custom_name();\ninline Task& operator[](const size_t id );\n+ inline Socket& operator[](const std::string &tsk_sck );\n+ inline Task& operator...
C++
MIT License
aff3ct/aff3ct
Add new Module () and [] operators.
8,490
24.01.2021 10:39:24
-3,600
14cf9060d59f176e6b1f21d8dfd6eafb43dab3c9
Update the current year: 2020 -> 2021.
[ { "change_type": "MODIFY", "old_path": "LICENSE", "new_path": "LICENSE", "diff": "MIT License\n-Copyright (c) 2017-2019 aff3ct\n+Copyright (c) 2017-2021 aff3ct\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"So...
C++
MIT License
aff3ct/aff3ct
Update the current year: 2020 -> 2021.
8,490
24.01.2021 11:39:19
-3,600
b3470f07e8e57aeeb47e42a10ae39addeaa131ab
Fix Galois field related segfault.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Math/Galois.cpp", "new_path": "src/Tools/Math/Galois.cpp", "diff": "@@ -40,6 +40,14 @@ Galois<I>\nthrow invalid_argument(__FILE__, __LINE__, __func__, message.str());\n}\n+ if ((size_t)m > sizeof(I) * 8)\n+ {\n+ std::stringstream message;\n+ message ...
C++
MIT License
aff3ct/aff3ct
Fix Galois field related segfault.
8,486
30.01.2021 23:38:39
-3,600
d2b1cec23def9d09aa2aa4d5e4c4e07fc07488f2
Add assert_frozen_bits to Interface_get_set_frozen_bits for checking frozen bits validity.
[ { "change_type": "MODIFY", "old_path": "include/Module/Decoder/Polar/SC/Decoder_polar_SC_fast_sys.hxx", "new_path": "include/Module/Decoder/Polar/SC/Decoder_polar_SC_fast_sys.hxx", "diff": "@@ -228,6 +228,7 @@ template <typename B, typename R, class API_polar>\nvoid Decoder_polar_SC_fast_sys<B,R,API...
C++
MIT License
aff3ct/aff3ct
Add assert_frozen_bits to Interface_get_set_frozen_bits for checking frozen bits validity.
8,486
31.01.2021 16:47:18
-3,600
3dd91ca432c26695b502a1e66084efe2c200ea86
Create a new tool fb_assert for replacing assert_frozen_bits.
[ { "change_type": "MODIFY", "old_path": "include/Module/Decoder/Polar/SC/Decoder_polar_SC_fast_sys.hxx", "new_path": "include/Module/Decoder/Polar/SC/Decoder_polar_SC_fast_sys.hxx", "diff": "#include \"Tools/Code/Polar/Patterns/Pattern_polar_spc.hpp\"\n#include \"Tools/Code/Polar/Patterns/Pattern_pol...
C++
MIT License
aff3ct/aff3ct
Create a new tool fb_assert for replacing assert_frozen_bits.
8,490
29.01.2021 18:16:42
-3,600
b394a7eb39827d306cd976b07ab0c967e8522856
Doc: improve the README to compile Doxygen separately from Sphinx.
[ { "change_type": "MODIFY", "old_path": "doc/README.md", "new_path": "doc/README.md", "diff": "@@ -25,3 +25,19 @@ make latexpdf\nThe last command will create a new folder: `build/html`.\nIn the `html` folder you just have to open the `index.html` file to read the generated documentation.\n+\n+# Gener...
C++
MIT License
aff3ct/aff3ct
Doc: improve the README to compile Doxygen separately from Sphinx.
8,490
08.02.2021 21:55:47
-3,600
a0be52fc50affeb88dd9c9d5ce96ec64c65947f4
Add a new `tools::Interface_get_trellis` class for RSC encoders.
[ { "change_type": "MODIFY", "old_path": "include/Module/Encoder/RSC/Encoder_RSC_sys.hpp", "new_path": "include/Module/Encoder/RSC/Encoder_RSC_sys.hpp", "diff": "#include <vector>\n#include \"Module/Encoder/Encoder.hpp\"\n+#include \"Tools/Interface/Interface_get_trellis.hpp\"\nnamespace aff3ct\n{\nna...
C++
MIT License
aff3ct/aff3ct
Add a new `tools::Interface_get_trellis` class for RSC encoders.
8,490
23.02.2021 09:37:33
-3,600
7cb7f6713ec83843e5e242c9924653fcc943aaea
Add a new method in 'tools::Sequence' to get the cloned modules.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Sequence.hpp", "new_path": "include/Tools/Sequence/Sequence.hpp", "diff": "@@ -148,6 +148,9 @@ public:\ntemplate <class C = module::Module>\nstd::vector<C*> get_modules(const bool subsequence_modules = true) const;\n+ template <class C =...
C++
MIT License
aff3ct/aff3ct
Add a new method in 'tools::Sequence' to get the cloned modules.
8,490
23.02.2021 10:47:24
-3,600
2d488b77faeb026b65a656f296afdc3438503af1
Fix the `tools::Sequence::get_cloned_modules()` implementation.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Sequence.hxx", "new_path": "include/Tools/Sequence/Sequence.hxx", "diff": "@@ -55,26 +55,32 @@ template <class C>\nstd::vector<C*> Sequence\n::get_cloned_modules(const C &module_ref) const\n{\n- std::vector<C*> cloned_modules(this->all_m...
C++
MIT License
aff3ct/aff3ct
Fix the `tools::Sequence::get_cloned_modules()` implementation.
8,490
23.02.2021 12:45:44
-3,600
30b63065043382960f4f652ccfc334b0bbc2cc20
CI: temporally disable the Intel compiler build test.
[ { "change_type": "MODIFY", "old_path": ".gitlab-ci.yml", "new_path": ".gitlab-ci.yml", "diff": "@@ -313,37 +313,37 @@ build-linux-gcc-4.8:\n- source ./ci/tools/threads.sh\n- ./ci/build-linux-macos.sh\n-build-linux-icpc:\n- stage: build\n- variables:\n- GIT_SUBMODULE_STRATEGY: recursive\n- except:\n-...
C++
MIT License
aff3ct/aff3ct
CI: temporally disable the Intel compiler build test.
8,490
08.03.2021 22:18:18
-3,600
555c2397d9d2368bc6966a7bb5d38b09d651d7cd
Add auto stop mechanism to `tools::Sequence` and `tools::Pipeline`.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Pipeline.hpp", "new_path": "include/Tools/Sequence/Pipeline.hpp", "diff": "@@ -39,6 +39,7 @@ protected:\nstd::vector<std::vector<size_t>> saved_lasts_tasks_id;\nbool bound_adaptors;\n+ bool auto_stop;\npublic:\n// Pipeline(const module::...
C++
MIT License
aff3ct/aff3ct
Add auto stop mechanism to `tools::Sequence` and `tools::Pipeline`.
8,490
11.03.2021 14:35:27
-3,600
0d087a8aea21f77e42a5f8bd19f7c5cfd241a8e2
Fix the missing initialization of the `auto_stop` boolean.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Sequence/Sequence.cpp", "new_path": "src/Tools/Sequence/Sequence.cpp", "diff": "@@ -124,7 +124,8 @@ Sequence\nthread_pinning(thread_pinning),\npuids(puids),\nno_copy_mode(true),\n- saved_exclusions(exclusions_convert_to_const(exclusions))\n+ saved_ex...
C++
MIT License
aff3ct/aff3ct
Fix the missing initialization of the `auto_stop` boolean.
8,490
14.03.2021 19:01:44
-3,600
743e003aa9c40ef1758bb5aa9b9fcae64182178c
Create "module::Switch" and "module::Multiplexer" + code factorization.
[ { "change_type": "MODIFY", "old_path": "include/Module/Adaptor/Adaptor.hpp", "new_path": "include/Module/Adaptor/Adaptor.hpp", "diff": "@@ -28,10 +28,10 @@ namespace module\nnamespace sck\n{\n- enum class push_1 : size_t { in1, in2, in3, in4, status };\n- enum class pull_n : size_t { out1, out2, out...
C++
MIT License
aff3ct/aff3ct
Create "module::Switch" and "module::Multiplexer" + code factorization.
8,490
05.04.2021 11:15:41
-7,200
27ca6ddf90bdbb9645f389f007d3a37cd6ffc0c1
Add 0 copy mode in 'module::Switcher' when executing 'tools::Sequence'.
[ { "change_type": "MODIFY", "old_path": "include/Module/Switcher/Switcher.hpp", "new_path": "include/Module/Switcher/Switcher.hpp", "diff": "#include \"Module/Task.hpp\"\n#include \"Module/Socket.hpp\"\n#include \"Module/Module.hpp\"\n+#include \"Tools/Sequence/Sequence.hpp\"\nnamespace aff3ct\n{\n@@...
C++
MIT License
aff3ct/aff3ct
Add 0 copy mode in 'module::Switcher' when executing 'tools::Sequence'.
8,490
05.04.2021 11:58:59
-7,200
92b89b7f12e9a628a6157f7df2f350e2dd764d10
Optimize the commute task "on the fly" binding.
[ { "change_type": "MODIFY", "old_path": "src/Tools/Sequence/Sequence.cpp", "new_path": "src/Tools/Sequence/Sequence.cpp", "diff": "@@ -1479,6 +1479,7 @@ void Sequence\nfor (size_t s = 0; s < select_task->sockets.size() -1; s++)\n{\n+ // there should be only one output socket at this time\nif (select_...
C++
MIT License
aff3ct/aff3ct
Optimize the commute task "on the fly" binding.
8,490
09.04.2021 17:21:13
-7,200
f70d42e21fffcc86512fd81e73f1e0b02262ad31
Improve 'tools::Sequence'.
[ { "change_type": "MODIFY", "old_path": "include/Tools/Sequence/Sequence.hxx", "new_path": "include/Tools/Sequence/Sequence.hxx", "diff": "@@ -120,13 +120,16 @@ inline void Sequence\nauto node_contents = node->get_c();\nif (node->get_fathers ().size() == 1 &&\n- node->get_children().size() <= 1 &&\n+...
C++
MIT License
aff3ct/aff3ct
Improve 'tools::Sequence'.
8,490
15.04.2021 11:39:09
-7,200
50106bc0155a3de34f8032b11382efa3c5788be6
Rm useless files.
[ { "change_type": "DELETE", "old_path": "Simulation_BFER_ite.cpp", "new_path": null, "diff": "-#include <functional>\n-#include <algorithm>\n-#include <iostream>\n-#include <vector>\n-#include <random>\n-#include <string>\n-\n-#include \"Tools/Algo/Predicate_ite.hpp\"\n-#include \"Tools/Sequence/Sequ...
C++
MIT License
aff3ct/aff3ct
Rm useless files.
8,490
28.04.2021 17:56:23
-7,200
b5c0f79c9a3a6e55718f92821289a9d8287d0154
Reset the path in 'module::Switcher' for each wave in 'tools::Sequence'.
[ { "change_type": "MODIFY", "old_path": "include/Module/Switcher/Switcher.hpp", "new_path": "include/Module/Switcher/Switcher.hpp", "diff": "#include \"Module/Socket.hpp\"\n#include \"Module/Module.hpp\"\n#include \"Tools/Sequence/Sequence.hpp\"\n+#include \"Tools/Interface/Interface_reset.hpp\"\nnam...
C++
MIT License
aff3ct/aff3ct
Reset the path in 'module::Switcher' for each wave in 'tools::Sequence'.
8,490
20.05.2021 15:01:15
-7,200
ea10ed0b6e72af7baded3128e007732667cd8d98
Fix MSVC compilation error (again...).
[ { "change_type": "MODIFY", "old_path": "include/Module/Binaryop/Binaryop.hxx", "new_path": "include/Module/Binaryop/Binaryop.hxx", "diff": "@@ -24,17 +24,6 @@ Binaryop<TI,TO,BOP>\n::Binaryop(const size_t n_elmts)\n: Module(), n_elmts(n_elmts)\n{\n- std::string op = \"ukn\";\n- if ((uintptr_t)BOP == ...
C++
MIT License
aff3ct/aff3ct
Fix MSVC compilation error (again...).