Software Open Access
<?xml version='1.0' encoding='UTF-8'?> <record xmlns="http://www.loc.gov/MARC21/slim"> <leader>00000nmm##2200000uu#4500</leader> <controlfield tag="005">20220804014920.0</controlfield> <datafield tag="500" ind1=" " ind2=" "> <subfield code="a">If you use this package in published research, please cite it as follows.</subfield> </datafield> <controlfield tag="001">6959270</controlfield> <datafield tag="856" ind1="4" ind2=" "> <subfield code="s">60179</subfield> <subfield code="z">md5:de781fc0b935d9cd4983718a307ff4a6</subfield> <subfield code="u">https://zenodo.org/record/6959270/files/bshoshany/thread-pool-v3.3.0.zip</subfield> </datafield> <datafield tag="542" ind1=" " ind2=" "> <subfield code="l">open</subfield> </datafield> <datafield tag="260" ind1=" " ind2=" "> <subfield code="c">2021-05-03</subfield> </datafield> <datafield tag="909" ind1="C" ind2="O"> <subfield code="p">software</subfield> <subfield code="o">oai:zenodo.org:6959270</subfield> </datafield> <datafield tag="100" ind1=" " ind2=" "> <subfield code="0">(orcid)0000-0003-2222-127X</subfield> <subfield code="a">Shoshany, Barak</subfield> </datafield> <datafield tag="245" ind1=" " ind2=" "> <subfield code="a">A C++17 Thread Pool for High-Performance Scientific Computing</subfield> </datafield> <datafield tag="540" ind1=" " ind2=" "> <subfield code="u">https://opensource.org/licenses/MIT</subfield> <subfield code="a">MIT License</subfield> </datafield> <datafield tag="650" ind1="1" ind2="7"> <subfield code="a">cc-by</subfield> <subfield code="2">opendefinition.org</subfield> </datafield> <datafield tag="520" ind1=" " ind2=" "> <subfield code="a">v3.3.0 (2022-08-03) <ul> <li><code>BS_thread_pool.hpp</code>:<ul> <li>The public member variable <code>paused</code> of <code>BS::thread_pool</code> has been made private for future-proofing (in case future versions implement a more involved pausing mechanism) and better encapsulation. It is now accessible only via the <code>pause()</code>, <code>unpause()</code>, and <code>is_paused()</code> member functions. In other words:<ul> <li>Replace <code>pool.paused = true</code> with <code>pool.pause()</code>.</li> <li>Replace <code>pool.paused = false</code> with <code>pool.unpause()</code>.</li> <li>Replace <code>if (pool.paused)</code> (or similar) with <code>if (pool.is_paused())</code>.</li> </ul> </li> <li>The public member variable <code>f</code> of <code>BS::multi_future</code> has been renamed to <code>futures</code> for clarity, and has been made private for encapsulation and simplification purposes. Instead of operating on the vector <code>futures</code> itself, you can now use the <code>[]</code> operator of the <code>BS::multi_future</code> to access the future at a specific index directly, or the <code>push_back()</code> member function to append a new future to the list. The <code>size()</code> member function tells you how many futures are currently stored in the object.</li> <li>The explicit casts of <code>std::endl</code> and <code>std::flush</code>, added in v3.2.0 to enable flushing a <code>BS::synced_stream</code>, caused ODR (One Definition Rule) violations if <code>BS_thread_pool.hpp</code> was included in two different translation units, since they were mistakenly not defined as <code>inline</code>. To fix this, I decided to make them static members of <code>BS::synced_stream</code> instead of global variables, which also makes the code better organized in my opinion. These objects can now be accessed as <code>BS::synced_stream::endl</code> and <code>BS::synced_stream::flush</code>. I also added an example for how to use them in <code>README.md</code>. See <a href="https://github.com/bshoshany/thread-pool/issues/64">#64</a>.</li> </ul> </li> <li><code>BS_thread_pool_light.hpp</code>:<ul> <li>This package started out as a very lightweight thread pool, but over time has expanded to include many additional features, and at the time of writing it has a total of 340 lines of code, including all the helper classes. Therefore, I have decided to bundle a light version of the thread pool in a separate and stand-alone header file, <code>BS_thread_pool_light.hpp</code>, with only 170 lines of code (half the size of the full package). This file does not contain any of the helper classes, only a new <code>BS::thread_pool_light</code> class, which is a minimal thread pool with only the 5 most basic member functions:<ul> <li><code>get_thread_count()</code></li> <li><code>push_loop()</code></li> <li><code>push_task()</code></li> <li><code>submit()</code></li> <li><code>wait_for_tasks()</code></li> </ul> </li> <li>A separate test program <code>BS_thread_pool_light_test.cpp</code> tests only the features of the lightweight <code>BS::thread_pool_light</code> class. In the spirit of minimalism, it does not generate a log file and does not do any benchmarks.</li> <li>To be perfectly clear, each header file is 100% stand-alone. If you wish to use the full package, you only need <code>BS_thread_pool.hpp</code>, and if you wish to use the light version, you only need <code>BS_thread_pool_light.hpp</code>. Only a single header file needs to be included in your project.</li> </ul> </li> </ul></subfield> </datafield> <datafield tag="773" ind1=" " ind2=" "> <subfield code="n">url</subfield> <subfield code="i">isSupplementTo</subfield> <subfield code="a">https://github.com/bshoshany/thread-pool/tree/v3.3.0</subfield> </datafield> <datafield tag="773" ind1=" " ind2=" "> <subfield code="n">doi</subfield> <subfield code="i">isVersionOf</subfield> <subfield code="a">10.5281/zenodo.4742687</subfield> </datafield> <datafield tag="024" ind1=" " ind2=" "> <subfield code="a">10.5281/zenodo.6959270</subfield> <subfield code="2">doi</subfield> </datafield> <datafield tag="980" ind1=" " ind2=" "> <subfield code="a">software</subfield> </datafield> </record>
All versions | This version | |
---|---|---|
Views | 736 | 160 |
Downloads | 23 | 2 |
Data volume | 621.5 kB | 120.4 kB |
Unique views | 678 | 152 |
Unique downloads | 13 | 2 |