iowarp-core 0.6.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2316) hide show
  1. iowarp_core-0.6.2/.clang-format +3 -0
  2. iowarp_core-0.6.2/.clangd +32 -0
  3. iowarp_core-0.6.2/CLAUDE.md +712 -0
  4. iowarp_core-0.6.2/CMakeLists.txt +720 -0
  5. iowarp_core-0.6.2/CMakePresets.json +119 -0
  6. iowarp_core-0.6.2/CPPLINT.cfg +3 -0
  7. iowarp_core-0.6.2/LICENSE +36 -0
  8. iowarp_core-0.6.2/MANIFEST.in +67 -0
  9. iowarp_core-0.6.2/PKG-INFO +726 -0
  10. iowarp_core-0.6.2/QUICKSTART.md +76 -0
  11. iowarp_core-0.6.2/README.md +700 -0
  12. iowarp_core-0.6.2/ai-prompts/phase1-merging.md +45 -0
  13. iowarp_core-0.6.2/ai-prompts/phase2-compiling.md +8 -0
  14. iowarp_core-0.6.2/ai-prompts/phase3-readme.md +4 -0
  15. iowarp_core-0.6.2/ai-prompts/phase4-docs.md +0 -0
  16. iowarp_core-0.6.2/ai-prompts/phase5-distributed.md +10 -0
  17. iowarp_core-0.6.2/ai-prompts/phase6-uv.md +9 -0
  18. iowarp_core-0.6.2/ai-prompts/phase7-cmake.md +33 -0
  19. iowarp_core-0.6.2/cmake/IowarpCoreCommon.cmake +721 -0
  20. iowarp_core-0.6.2/cmake/IowarpCoreConfig.cmake.in +132 -0
  21. iowarp_core-0.6.2/cmake/detect/CMakeLists.txt +156 -0
  22. iowarp_core-0.6.2/context-assimilation-engine/.codespellrc +2 -0
  23. iowarp_core-0.6.2/context-assimilation-engine/CMakeLists.txt +77 -0
  24. iowarp_core-0.6.2/context-assimilation-engine/README.md +125 -0
  25. iowarp_core-0.6.2/context-assimilation-engine/ai-prompts/phase1-runtime.md +14 -0
  26. iowarp_core-0.6.2/context-assimilation-engine/ai-prompts/phase2-file-assim.md +102 -0
  27. iowarp_core-0.6.2/context-assimilation-engine/ai-prompts/phase3-tests.md +52 -0
  28. iowarp_core-0.6.2/context-assimilation-engine/ai-prompts/phase4-hdf5.md +10 -0
  29. iowarp_core-0.6.2/context-assimilation-engine/ai-prompts/phase5-globus.md +9 -0
  30. iowarp_core-0.6.2/context-assimilation-engine/ai-prompts/phase6-launch.md +10 -0
  31. iowarp_core-0.6.2/context-assimilation-engine/chimaera_repo.yaml +8 -0
  32. iowarp_core-0.6.2/context-assimilation-engine/config/README.md +85 -0
  33. iowarp_core-0.6.2/context-assimilation-engine/config/wrp_config_example.yaml +50 -0
  34. iowarp_core-0.6.2/context-assimilation-engine/core/CMakeLists.txt +140 -0
  35. iowarp_core-0.6.2/context-assimilation-engine/core/chimaera_mod.yaml +15 -0
  36. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/autogen/core_methods.h +23 -0
  37. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/constants.h +14 -0
  38. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/core_client.h +120 -0
  39. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/core_runtime.h +68 -0
  40. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/core_tasks.h +106 -0
  41. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/factory/assimilation_ctx.h +54 -0
  42. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/factory/assimilator_factory.h +53 -0
  43. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/factory/base_assimilator.h +26 -0
  44. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/factory/binary_file_assimilator.h +61 -0
  45. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/factory/globus_file_assimilator.h +176 -0
  46. iowarp_core-0.6.2/context-assimilation-engine/core/include/wrp_cae/core/factory/hdf5_file_assimilator.h +117 -0
  47. iowarp_core-0.6.2/context-assimilation-engine/core/src/autogen/core_lib_exec.cc +244 -0
  48. iowarp_core-0.6.2/context-assimilation-engine/core/src/core_client.cc +51 -0
  49. iowarp_core-0.6.2/context-assimilation-engine/core/src/core_runtime.cc +95 -0
  50. iowarp_core-0.6.2/context-assimilation-engine/core/src/factory/assimilator_factory.cc +84 -0
  51. iowarp_core-0.6.2/context-assimilation-engine/core/src/factory/binary_file_assimilator.cc +288 -0
  52. iowarp_core-0.6.2/context-assimilation-engine/core/src/factory/globus_file_assimilator.cc +717 -0
  53. iowarp_core-0.6.2/context-assimilation-engine/core/src/factory/hdf5_file_assimilator.cc +569 -0
  54. iowarp_core-0.6.2/context-assimilation-engine/core/util/wrp_cae_omni.cc +147 -0
  55. iowarp_core-0.6.2/context-assimilation-engine/data/A46_xx.arrow.parquet +0 -0
  56. iowarp_core-0.6.2/context-assimilation-engine/data/A46_xx.csv +3328 -0
  57. iowarp_core-0.6.2/context-assimilation-engine/data/A46_xx.feather +0 -0
  58. iowarp_core-0.6.2/context-assimilation-engine/data/A46_xx.h5 +0 -0
  59. iowarp_core-0.6.2/context-assimilation-engine/data/A46_xx.parquet +0 -0
  60. iowarp_core-0.6.2/context-assimilation-engine/data/A46_xx.zlib.h5 +0 -0
  61. iowarp_core-0.6.2/context-assimilation-engine/data/README.md +5 -0
  62. iowarp_core-0.6.2/context-assimilation-engine/data/afrl_list.md +184 -0
  63. iowarp_core-0.6.2/context-assimilation-engine/data/csv_ingestion_recipe.yaml +17 -0
  64. iowarp_core-0.6.2/context-assimilation-engine/data/datahub.csv +4 -0
  65. iowarp_core-0.6.2/context-assimilation-engine/data/file_assets.csv +2 -0
  66. iowarp_core-0.6.2/context-assimilation-engine/docs/launch.md +200 -0
  67. iowarp_core-0.6.2/context-assimilation-engine/docs/omni.md +383 -0
  68. iowarp_core-0.6.2/context-assimilation-engine/test/CMakeLists.txt +22 -0
  69. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/.env +1 -0
  70. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/README.md +119 -0
  71. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/REST_AUTH_GUIDE.md +118 -0
  72. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/download_test.sh +79 -0
  73. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/get_oauth_token.py +112 -0
  74. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/matsci_globus_omni.yaml +29 -0
  75. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/run_test.sh +121 -0
  76. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/setup_collection_consent.py +43 -0
  77. iowarp_core-0.6.2/context-assimilation-engine/test/integration/globus_matsci/wrp_conf.yaml +24 -0
  78. iowarp_core-0.6.2/context-assimilation-engine/test/unit/CMakeLists.txt +215 -0
  79. iowarp_core-0.6.2/context-assimilation-engine/test/unit/README.md +260 -0
  80. iowarp_core-0.6.2/context-assimilation-engine/test/unit/binary_assim/binary_assim_omni.yaml +9 -0
  81. iowarp_core-0.6.2/context-assimilation-engine/test/unit/binary_assim/test_binary_assim.cc +322 -0
  82. iowarp_core-0.6.2/context-assimilation-engine/test/unit/error_test/test_error_handling.cc +261 -0
  83. iowarp_core-0.6.2/context-assimilation-engine/test/unit/external/CMakeLists.txt +86 -0
  84. iowarp_core-0.6.2/context-assimilation-engine/test/unit/external/external_integration_test.cc +158 -0
  85. iowarp_core-0.6.2/context-assimilation-engine/test/unit/hdf5_assim/hdf5_assim_omni.yaml +56 -0
  86. iowarp_core-0.6.2/context-assimilation-engine/test/unit/hdf5_assim/test_hdf5_assim.cc +326 -0
  87. iowarp_core-0.6.2/context-assimilation-engine/test/unit/range_test/test_range_assim.cc +220 -0
  88. iowarp_core-0.6.2/context-assimilation-engine/test/unit/wrp_config.yaml +70 -0
  89. iowarp_core-0.6.2/context-exploration-engine/.datahubenv +13 -0
  90. iowarp_core-0.6.2/context-exploration-engine/CMakeLists.txt +13 -0
  91. iowarp_core-0.6.2/context-exploration-engine/README.md +175 -0
  92. iowarp_core-0.6.2/context-exploration-engine/api/CMakeLists.txt +154 -0
  93. iowarp_core-0.6.2/context-exploration-engine/api/README.md +349 -0
  94. iowarp_core-0.6.2/context-exploration-engine/api/demo/demo.py +222 -0
  95. iowarp_core-0.6.2/context-exploration-engine/api/demo/docker-compose.yml +42 -0
  96. iowarp_core-0.6.2/context-exploration-engine/api/demo/wrp_conf.yaml +59 -0
  97. iowarp_core-0.6.2/context-exploration-engine/api/include/wrp_cee/api/context_interface.h +108 -0
  98. iowarp_core-0.6.2/context-exploration-engine/api/src/context_interface.cc +312 -0
  99. iowarp_core-0.6.2/context-exploration-engine/api/src/python_bindings.cc +98 -0
  100. iowarp_core-0.6.2/context-exploration-engine/api/test/CMakeLists.txt +87 -0
  101. iowarp_core-0.6.2/context-exploration-engine/api/test/test_context_bundle.cc +261 -0
  102. iowarp_core-0.6.2/context-exploration-engine/api/test/test_context_destroy.cc +113 -0
  103. iowarp_core-0.6.2/context-exploration-engine/api/test/test_context_interface.py +275 -0
  104. iowarp_core-0.6.2/context-exploration-engine/api/test/test_context_query.cc +96 -0
  105. iowarp_core-0.6.2/context-exploration-engine/api/test/wrp_config.yaml +54 -0
  106. iowarp_core-0.6.2/context-exploration-engine/api/wrp_cee_api-config-version.cmake +43 -0
  107. iowarp_core-0.6.2/context-exploration-engine/api/wrp_cee_api-config.cmake +37 -0
  108. iowarp_core-0.6.2/context-exploration-engine/api/wrp_cee_api-config.cmake.in +13 -0
  109. iowarp_core-0.6.2/context-exploration-engine/docs/python_api.md +523 -0
  110. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/COPYING +127 -0
  111. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/HDFCompass.1file.spec +98 -0
  112. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/HDFCompass.1folder.spec +103 -0
  113. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/HDFCompass.desktop +14 -0
  114. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/HDFCompass.icns +0 -0
  115. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/HDFCompass.ico +0 -0
  116. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/HDFCompass.py +38 -0
  117. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/MANIFEST.in +19 -0
  118. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/README.rst +91 -0
  119. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/ADIOS_Copyrights_and_Licenses.txt +34 -0
  120. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/HydroPro_Icons_Terms.txt +33 -0
  121. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/KDE_Oxygen_Icon_Set_Copyright_and_License.txt +169 -0
  122. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/NumPy_Copyright_and_License.txt +32 -0
  123. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/PyDAP_Copyright_and_License.txt +23 -0
  124. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/PyInstaller_Copyrights_and_Licenses.txt +359 -0
  125. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/Python_Copyright_and_License.txt +54 -0
  126. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/cartopy_Copyrights_and_Licenses.txt +51 -0
  127. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/h5py_Copyrights_and_Licenses.txt +239 -0
  128. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/hydroffice_bag_Copyrights_and_Licenses.txt +42 -0
  129. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/matplotlib_Copyright_and_License.txt +52 -0
  130. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/additional_legal/wxWidgets_Copyrights_and_Licenses.txt +667 -0
  131. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/appveyor.yml +66 -0
  132. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/adios/adios_test.bp +0 -0
  133. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/adios/adios_test.bp.dir/adios_test.bp.0 +0 -0
  134. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/asc/sample.asc +12 -0
  135. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/bag/bdb_00.bag +0 -0
  136. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/hdf5/Download/download_data.py +46 -0
  137. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/hdf5/complex.h5 +0 -0
  138. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/hdf5/tall.h5 +0 -0
  139. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/hdf5/tcomplex.h5 +0 -0
  140. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/hdf5/tcomplex_be.h5 +0 -0
  141. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/hdf5/tcompound_complex.h5 +0 -0
  142. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/hdf5/tcompound_complex2.h5 +0 -0
  143. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/data/parquet/sample_float16.parquet +0 -0
  144. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/dmg.png +0 -0
  145. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/conf.py +284 -0
  146. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/data_model.rst +312 -0
  147. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/how_to_contribute.rst +4 -0
  148. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/how_to_freeze.rst +4 -0
  149. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/how_to_install.rst +4 -0
  150. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/how_to_release.rst +26 -0
  151. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/how_to_use.rst +4 -0
  152. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/index.rst +49 -0
  153. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/license.rst +128 -0
  154. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/make.bat +263 -0
  155. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/docs/requirements.rst +4 -0
  156. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/__init__.py +10 -0
  157. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/adios_model/__init__.py +20 -0
  158. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/adios_model/model.py +339 -0
  159. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/adios_model/test.py +26 -0
  160. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/array_model/__init__.py +18 -0
  161. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/array_model/model.py +314 -0
  162. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/array_model/test.py +20 -0
  163. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/asc_model/__init__.py +18 -0
  164. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/asc_model/model.py +198 -0
  165. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/asc_model/test.py +22 -0
  166. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/bag_model/__init__.py +21 -0
  167. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/bag_model/model.py +935 -0
  168. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/bag_model/test.py +23 -0
  169. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/__init__.py +19 -0
  170. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/array_16.png +0 -0
  171. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/array_64.png +0 -0
  172. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/folder_16.png +0 -0
  173. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/folder_64.png +0 -0
  174. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/image_16.png +0 -0
  175. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/image_64.png +0 -0
  176. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/kv_16.png +0 -0
  177. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/kv_64.png +0 -0
  178. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/license.txt +165 -0
  179. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/readme.txt +5 -0
  180. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/text_16.png +0 -0
  181. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/text_64.png +0 -0
  182. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/unknown_16.png +0 -0
  183. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/unknown_64.png +0 -0
  184. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/xml_16.png +0 -0
  185. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/icons/xml_64.png +0 -0
  186. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/model.py +549 -0
  187. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_model/test.py +220 -0
  188. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/__init__.py +18 -0
  189. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/__main__.py +38 -0
  190. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/array/__init__.py +18 -0
  191. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/array/frame.py +930 -0
  192. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/array/plot.py +434 -0
  193. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/container/__init__.py +18 -0
  194. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/container/frame.py +256 -0
  195. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/container/list.py +341 -0
  196. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/events.py +58 -0
  197. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/frame.py +507 -0
  198. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/geo_array/__init__.py +18 -0
  199. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/geo_array/frame.py +416 -0
  200. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/geo_array/plot.py +248 -0
  201. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/geo_surface/__init__.py +18 -0
  202. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/geo_surface/frame.py +416 -0
  203. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/geo_surface/plot.py +282 -0
  204. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/favicon_32.png +0 -0
  205. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/favicon_48.png +0 -0
  206. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/go_back_24.png +0 -0
  207. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/go_back_32.png +0 -0
  208. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/go_next_24.png +0 -0
  209. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/go_next_32.png +0 -0
  210. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/go_top_24.png +0 -0
  211. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/go_top_32.png +0 -0
  212. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/go_up_24.png +0 -0
  213. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/go_up_32.png +0 -0
  214. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/license.txt +165 -0
  215. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/logo.png +0 -0
  216. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/logo.xcf +0 -0
  217. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/readme.txt +8 -0
  218. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/save_24.png +0 -0
  219. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/view_icon_24.png +0 -0
  220. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/view_icon_32.png +0 -0
  221. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/view_list_24.png +0 -0
  222. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/view_list_32.png +0 -0
  223. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/view_tree_32.png +0 -0
  224. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/viz_copy_24.png +0 -0
  225. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/viz_plot_24.png +0 -0
  226. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/viz_plot_32.png +0 -0
  227. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/viz_plot_xy_24.png +0 -0
  228. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/icons/xml_validate_24.png +0 -0
  229. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/image/__init__.py +18 -0
  230. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/image/frame.py +116 -0
  231. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/info.py +136 -0
  232. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/keyvalue/__init__.py +18 -0
  233. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/keyvalue/frame.py +128 -0
  234. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/text/__init__.py +7 -0
  235. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/text/frame.py +191 -0
  236. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/text/text_ctrl.py +260 -0
  237. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/compass_viewer/viewer.py +361 -0
  238. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/csv_model/__init__.py +18 -0
  239. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/csv_model/model.py +359 -0
  240. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/filesystem_model/__init__.py +18 -0
  241. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/filesystem_model/model.py +192 -0
  242. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/filesystem_model/test.py +20 -0
  243. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/hdf5_model/__init__.py +22 -0
  244. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/hdf5_model/model.py +446 -0
  245. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/hdf5_model/test.py +24 -0
  246. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/hdf5rest_model/__init__.py +18 -0
  247. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/hdf5rest_model/hdf5dtype.py +458 -0
  248. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/hdf5rest_model/model.py +476 -0
  249. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/hdf5rest_model/test.py +32 -0
  250. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/opendap_model/__init__.py +18 -0
  251. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/opendap_model/model.py +310 -0
  252. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/opendap_model/test.py +8 -0
  253. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/parquet_model/__init__.py +18 -0
  254. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/parquet_model/model.py +374 -0
  255. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/utils/__init__.py +22 -0
  256. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/hdf_compass/utils/utils.py +58 -0
  257. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/print_version.sh +14 -0
  258. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/requirements.txt +9 -0
  259. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/setup.cfg +10 -0
  260. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/setup.py +129 -0
  261. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/spec.json +11 -0
  262. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/test_hdf5.py +43 -0
  263. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/tests/HDFCompassTestLog.rst +86 -0
  264. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/tests/HDFCompassTestPlan.rst +326 -0
  265. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/tests/sample.asc +12 -0
  266. iowarp_core-0.6.2/context-exploration-engine/hdf-compass/tests/test_wxpython3.py +105 -0
  267. iowarp_core-0.6.2/context-exploration-engine/iowarp-cei-mcp/README.md +240 -0
  268. iowarp_core-0.6.2/context-exploration-engine/iowarp-cei-mcp/requirements.txt +3 -0
  269. iowarp_core-0.6.2/context-exploration-engine/iowarp-cei-mcp/server.py +1297 -0
  270. iowarp_core-0.6.2/context-exploration-engine/iowarp-cei-mcp/test_mcp_tools.py +289 -0
  271. iowarp_core-0.6.2/context-exploration-engine/mcp-hdf-demo/README.md +29 -0
  272. iowarp_core-0.6.2/context-exploration-engine/mcp-hdf-demo/client/client.py +46 -0
  273. iowarp_core-0.6.2/context-exploration-engine/mcp-hdf-demo/client/requirements.txt +1 -0
  274. iowarp_core-0.6.2/context-exploration-engine/mcp-hdf-demo/demo_data.h5 +0 -0
  275. iowarp_core-0.6.2/context-exploration-engine/mcp-hdf-demo/demo_data.hdf +0 -0
  276. iowarp_core-0.6.2/context-exploration-engine/mcp-hdf-demo/server/requirements.txt +3 -0
  277. iowarp_core-0.6.2/context-exploration-engine/mcp-hdf-demo/server/server.py +85 -0
  278. iowarp_core-0.6.2/context-runtime/CMakeLists.txt +165 -0
  279. iowarp_core-0.6.2/context-runtime/README.md +350 -0
  280. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase1-structure.md +211 -0
  281. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase10-fixes.md +7 -0
  282. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase11-monitor.md +9 -0
  283. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase12-continue-tasks.md +32 -0
  284. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase13-cmake.md +42 -0
  285. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase14-blocking.md +5 -0
  286. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase15-monitoring.md +3 -0
  287. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase16-worker.md +1 -0
  288. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase17-create.md +11 -0
  289. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase18-Graphs.md +26 -0
  290. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase19-task-props.md +62 -0
  291. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase2-chimod.md +304 -0
  292. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase20-cpu.md +8 -0
  293. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase3-work-orch.md +39 -0
  294. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase4-admin.md +26 -0
  295. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase5-unit-tests.md +10 -0
  296. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase6-comux.md +27 -0
  297. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase7-route.md +3 -0
  298. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase8-flushing.md +10 -0
  299. iowarp_core-0.6.2/context-runtime/ai-prompts/Part1: BasicTasks/phase9-fire-and-forget.md +7 -0
  300. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase1-modified.md +552 -0
  301. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase1.md +124 -0
  302. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase2.md +232 -0
  303. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase3.5.md +29 -0
  304. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase3.md +148 -0
  305. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase4.md +36 -0
  306. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase5.md +9 -0
  307. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase6.md +93 -0
  308. iowarp_core-0.6.2/context-runtime/ai-prompts/Part2: Networking/phase8.md +15 -0
  309. iowarp_core-0.6.2/context-runtime/ai-prompts/Part4: Documentation/phase1.md +1 -0
  310. iowarp_core-0.6.2/context-runtime/ai-prompts/Part5: Jarvis/phase1-pkgs.md +16 -0
  311. iowarp_core-0.6.2/context-runtime/ai-prompts/Part6: Docker/phase1.md +62 -0
  312. iowarp_core-0.6.2/context-runtime/ai-prompts/Part7: Configuration/phase1-compose.md +136 -0
  313. iowarp_core-0.6.2/context-runtime/ai-prompts/Part8: Benchmark/phase1-docker.md +8 -0
  314. iowarp_core-0.6.2/context-runtime/ai-prompts/chimaera-cmake-redesign.md +676 -0
  315. iowarp_core-0.6.2/context-runtime/ai-prompts/part3: Storage/phase1.md +41 -0
  316. iowarp_core-0.6.2/context-runtime/ai-prompts/part3: Storage/phase2-allocate-free.md +80 -0
  317. iowarp_core-0.6.2/context-runtime/benchmark/CMakeLists.txt +19 -0
  318. iowarp_core-0.6.2/context-runtime/benchmark/wrp_run_thrpt_benchmark.cc +668 -0
  319. iowarp_core-0.6.2/context-runtime/config/chimaera_default.yaml +38 -0
  320. iowarp_core-0.6.2/context-runtime/config/example_hostfile +19 -0
  321. iowarp_core-0.6.2/context-runtime/config/test_hostfile +9 -0
  322. iowarp_core-0.6.2/context-runtime/docs/MOD_NAME/MOD_NAME.md +539 -0
  323. iowarp_core-0.6.2/context-runtime/docs/admin/admin.md +451 -0
  324. iowarp_core-0.6.2/context-runtime/docs/bdev/bdev.md +936 -0
  325. iowarp_core-0.6.2/context-runtime/docs/deployment.md +615 -0
  326. iowarp_core-0.6.2/context-runtime/docs/module_dev_guide.md +4341 -0
  327. iowarp_core-0.6.2/context-runtime/docs/module_test_guide.md +343 -0
  328. iowarp_core-0.6.2/context-runtime/docs/task_flow.md +408 -0
  329. iowarp_core-0.6.2/context-runtime/include/chimaera/admin.h +25 -0
  330. iowarp_core-0.6.2/context-runtime/include/chimaera/chimaera.h +51 -0
  331. iowarp_core-0.6.2/context-runtime/include/chimaera/chimaera_manager.h +103 -0
  332. iowarp_core-0.6.2/context-runtime/include/chimaera/comutex.h +96 -0
  333. iowarp_core-0.6.2/context-runtime/include/chimaera/config_manager.h +254 -0
  334. iowarp_core-0.6.2/context-runtime/include/chimaera/container.h +329 -0
  335. iowarp_core-0.6.2/context-runtime/include/chimaera/corwlock.h +134 -0
  336. iowarp_core-0.6.2/context-runtime/include/chimaera/integer_timer.h +109 -0
  337. iowarp_core-0.6.2/context-runtime/include/chimaera/ipc_manager.h +446 -0
  338. iowarp_core-0.6.2/context-runtime/include/chimaera/module_manager.h +184 -0
  339. iowarp_core-0.6.2/context-runtime/include/chimaera/pool_manager.h +319 -0
  340. iowarp_core-0.6.2/context-runtime/include/chimaera/pool_query.h +222 -0
  341. iowarp_core-0.6.2/context-runtime/include/chimaera/singletons.h +65 -0
  342. iowarp_core-0.6.2/context-runtime/include/chimaera/task.h +597 -0
  343. iowarp_core-0.6.2/context-runtime/include/chimaera/task_archives.h +838 -0
  344. iowarp_core-0.6.2/context-runtime/include/chimaera/task_queue.h +108 -0
  345. iowarp_core-0.6.2/context-runtime/include/chimaera/types.h +339 -0
  346. iowarp_core-0.6.2/context-runtime/include/chimaera/unordered_map_ll.h +354 -0
  347. iowarp_core-0.6.2/context-runtime/include/chimaera/work_orchestrator.h +193 -0
  348. iowarp_core-0.6.2/context-runtime/include/chimaera/worker.h +432 -0
  349. iowarp_core-0.6.2/context-runtime/modules/CMakeLists.txt +18 -0
  350. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/CMakeLists.txt +19 -0
  351. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/chimaera_mod.yaml +20 -0
  352. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/include/chimaera/MOD_NAME/MOD_NAME_client.h +266 -0
  353. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/include/chimaera/MOD_NAME/MOD_NAME_runtime.h +139 -0
  354. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/include/chimaera/MOD_NAME/MOD_NAME_tasks.h +283 -0
  355. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/include/chimaera/MOD_NAME/autogen/MOD_NAME_methods.h +26 -0
  356. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/src/MOD_NAME_client.cc +18 -0
  357. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/src/MOD_NAME_runtime.cc +182 -0
  358. iowarp_core-0.6.2/context-runtime/modules/MOD_NAME/src/autogen/MOD_NAME_lib_exec.cc +370 -0
  359. iowarp_core-0.6.2/context-runtime/modules/README.md +122 -0
  360. iowarp_core-0.6.2/context-runtime/modules/admin/CMakeLists.txt +15 -0
  361. iowarp_core-0.6.2/context-runtime/modules/admin/chimaera_mod.yaml +25 -0
  362. iowarp_core-0.6.2/context-runtime/modules/admin/include/chimaera/admin/admin_client.h +350 -0
  363. iowarp_core-0.6.2/context-runtime/modules/admin/include/chimaera/admin/admin_runtime.h +207 -0
  364. iowarp_core-0.6.2/context-runtime/modules/admin/include/chimaera/admin/admin_tasks.h +548 -0
  365. iowarp_core-0.6.2/context-runtime/modules/admin/include/chimaera/admin/autogen/admin_methods.h +28 -0
  366. iowarp_core-0.6.2/context-runtime/modules/admin/src/admin_client.cc +15 -0
  367. iowarp_core-0.6.2/context-runtime/modules/admin/src/admin_runtime.cc +968 -0
  368. iowarp_core-0.6.2/context-runtime/modules/admin/src/autogen/admin_lib_exec.cc +465 -0
  369. iowarp_core-0.6.2/context-runtime/modules/bdev/CMakeLists.txt +21 -0
  370. iowarp_core-0.6.2/context-runtime/modules/bdev/chimaera_mod.yaml +21 -0
  371. iowarp_core-0.6.2/context-runtime/modules/bdev/include/chimaera/bdev/autogen/bdev_methods.h +27 -0
  372. iowarp_core-0.6.2/context-runtime/modules/bdev/include/chimaera/bdev/bdev_client.h +252 -0
  373. iowarp_core-0.6.2/context-runtime/modules/bdev/include/chimaera/bdev/bdev_runtime.h +339 -0
  374. iowarp_core-0.6.2/context-runtime/modules/bdev/include/chimaera/bdev/bdev_tasks.h +614 -0
  375. iowarp_core-0.6.2/context-runtime/modules/bdev/src/autogen/bdev_lib_exec.cc +414 -0
  376. iowarp_core-0.6.2/context-runtime/modules/bdev/src/bdev_client.cc +18 -0
  377. iowarp_core-0.6.2/context-runtime/modules/bdev/src/bdev_runtime.cc +842 -0
  378. iowarp_core-0.6.2/context-runtime/modules/chimaera_repo.yaml +22 -0
  379. iowarp_core-0.6.2/context-runtime/src/CMakeLists.txt +60 -0
  380. iowarp_core-0.6.2/context-runtime/src/admin.cc +9 -0
  381. iowarp_core-0.6.2/context-runtime/src/chimaera.cc +65 -0
  382. iowarp_core-0.6.2/context-runtime/src/chimaera_manager.cc +294 -0
  383. iowarp_core-0.6.2/context-runtime/src/comutex.cc +42 -0
  384. iowarp_core-0.6.2/context-runtime/src/config_manager.cc +314 -0
  385. iowarp_core-0.6.2/context-runtime/src/corwlock.cc +101 -0
  386. iowarp_core-0.6.2/context-runtime/src/integer_timer.cc +11 -0
  387. iowarp_core-0.6.2/context-runtime/src/ipc_manager.cc +873 -0
  388. iowarp_core-0.6.2/context-runtime/src/module_manager.cc +255 -0
  389. iowarp_core-0.6.2/context-runtime/src/pool_manager.cc +525 -0
  390. iowarp_core-0.6.2/context-runtime/src/pool_query.cc +185 -0
  391. iowarp_core-0.6.2/context-runtime/src/task.cc +151 -0
  392. iowarp_core-0.6.2/context-runtime/src/task_queue.cc +36 -0
  393. iowarp_core-0.6.2/context-runtime/src/types.cc +27 -0
  394. iowarp_core-0.6.2/context-runtime/src/work_orchestrator.cc +505 -0
  395. iowarp_core-0.6.2/context-runtime/src/worker.cc +1299 -0
  396. iowarp_core-0.6.2/context-runtime/test/CMakeLists.txt +7 -0
  397. iowarp_core-0.6.2/context-runtime/test/README.md +242 -0
  398. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/README.md +208 -0
  399. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/__init__.py +7 -0
  400. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/jarvis_wrp_runtime/__init__.py +6 -0
  401. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/jarvis_wrp_runtime/wrp_benchmark/__init__.py +3 -0
  402. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/jarvis_wrp_runtime/wrp_benchmark/pkg.py +178 -0
  403. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/jarvis_wrp_runtime/wrp_distributed/__init__.py +6 -0
  404. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/jarvis_wrp_runtime/wrp_distributed/pkg.py +156 -0
  405. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/jarvis_wrp_runtime/wrp_runtime/__init__.py +6 -0
  406. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/jarvis_wrp_runtime/wrp_runtime/pkg.py +265 -0
  407. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/pipelines/basic_runtime.yaml +33 -0
  408. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/pipelines/benchmark_latency.yaml +42 -0
  409. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/pipelines/benchmark_throughput.yaml +44 -0
  410. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/pipelines/distributed_network_test.yaml +42 -0
  411. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/pipelines/distributed_test_container.yaml +35 -0
  412. iowarp_core-0.6.2/context-runtime/test/jarvis_wrp_runtime/pipelines/distributed_test_local.yaml +20 -0
  413. iowarp_core-0.6.2/context-runtime/test/simple_test.h +206 -0
  414. iowarp_core-0.6.2/context-runtime/test/unit/CMakeLists.txt +1332 -0
  415. iowarp_core-0.6.2/context-runtime/test/unit/distributed/docker-compose.yml +130 -0
  416. iowarp_core-0.6.2/context-runtime/test/unit/distributed/hostfile +4 -0
  417. iowarp_core-0.6.2/context-runtime/test/unit/distributed/run_tests.sh +192 -0
  418. iowarp_core-0.6.2/context-runtime/test/unit/distributed/wrp_conf.yaml +37 -0
  419. iowarp_core-0.6.2/context-runtime/test/unit/external/CMakeLists.txt +34 -0
  420. iowarp_core-0.6.2/context-runtime/test/unit/external/compile_test.sh +59 -0
  421. iowarp_core-0.6.2/context-runtime/test/unit/external/test_external_chimod.cc +41 -0
  422. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/.env.cmake +9 -0
  423. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/CMakeLists.txt +34 -0
  424. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/chimaera_repo.yaml +7 -0
  425. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/compile_test.sh +66 -0
  426. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/CMakeLists.txt +23 -0
  427. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/chimaera_mod.yaml +15 -0
  428. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/include/chimaera/simple_mod/autogen/simple_mod_methods.h +17 -0
  429. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/include/chimaera/simple_mod/simple_mod_client.h +144 -0
  430. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/include/chimaera/simple_mod/simple_mod_runtime.h +120 -0
  431. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/include/chimaera/simple_mod/simple_mod_tasks.h +102 -0
  432. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/include/external_test/simple_mod/autogen/simple_mod_methods.h +17 -0
  433. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/src/autogen/simple_mod_lib_exec.cc +105 -0
  434. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/src/simple_mod_client.cc +15 -0
  435. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/modules/simple_mod/src/simple_mod_runtime.cc +101 -0
  436. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/CMakeLists.txt +23 -0
  437. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/chimaera_mod.yaml +15 -0
  438. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/include/chimaera/simple_mod/autogen/simple_mod_methods.h +17 -0
  439. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/include/chimaera/simple_mod/simple_mod_client.h +144 -0
  440. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/include/chimaera/simple_mod/simple_mod_runtime.h +120 -0
  441. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/include/chimaera/simple_mod/simple_mod_tasks.h +102 -0
  442. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/include/external_test/simple_mod/autogen/simple_mod_methods.h +17 -0
  443. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/src/autogen/simple_mod_lib_exec.cc +105 -0
  444. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/src/simple_mod_client.cc +15 -0
  445. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/simple_mod/src/simple_mod_runtime.cc +101 -0
  446. iowarp_core-0.6.2/context-runtime/test/unit/external-chimod/test_simple_mod.cc +100 -0
  447. iowarp_core-0.6.2/context-runtime/test/unit/test_bdev_chimod.cc +1553 -0
  448. iowarp_core-0.6.2/context-runtime/test/unit/test_boost_fiber.cc +200 -0
  449. iowarp_core-0.6.2/context-runtime/test/unit/test_chimaera_compose.sh +125 -0
  450. iowarp_core-0.6.2/context-runtime/test/unit/test_chimaera_runtime.cc +441 -0
  451. iowarp_core-0.6.2/context-runtime/test/unit/test_chimaera_runtime_simple.cc +147 -0
  452. iowarp_core-0.6.2/context-runtime/test/unit/test_compose.cc +169 -0
  453. iowarp_core-0.6.2/context-runtime/test/unit/test_comutex.cc +984 -0
  454. iowarp_core-0.6.2/context-runtime/test/unit/test_fire_and_forget.cc +732 -0
  455. iowarp_core-0.6.2/context-runtime/test/unit/test_flush_correctness.cc +132 -0
  456. iowarp_core-0.6.2/context-runtime/test/unit/test_ipc_allocate_buffer.cc +301 -0
  457. iowarp_core-0.6.2/context-runtime/test/unit/test_save_load_task.cc +440 -0
  458. iowarp_core-0.6.2/context-runtime/test/unit/test_segfault_debug.cc +223 -0
  459. iowarp_core-0.6.2/context-runtime/test/unit/test_task_archive.cc +767 -0
  460. iowarp_core-0.6.2/context-runtime/test/unit/test_unordered_map_ll.cc +482 -0
  461. iowarp_core-0.6.2/context-runtime/test/unit/test_wait_functionality.cc +389 -0
  462. iowarp_core-0.6.2/context-runtime/test/unit/test_worker_fiber_pattern.cc +190 -0
  463. iowarp_core-0.6.2/context-runtime/util/CMakeLists.txt +48 -0
  464. iowarp_core-0.6.2/context-runtime/util/add_chi_repo_path.py +49 -0
  465. iowarp_core-0.6.2/context-runtime/util/chi_refresh_repo.cc +521 -0
  466. iowarp_core-0.6.2/context-runtime/util/chimaera_compose.cc +65 -0
  467. iowarp_core-0.6.2/context-runtime/util/chimaera_start_runtime.cc +126 -0
  468. iowarp_core-0.6.2/context-runtime/util/chimaera_stop_runtime.cc +108 -0
  469. iowarp_core-0.6.2/context-runtime/util/remove_task_copy_calls.py +106 -0
  470. iowarp_core-0.6.2/context-transfer-engine/CMakeLists.txt +67 -0
  471. iowarp_core-0.6.2/context-transfer-engine/README.md +60 -0
  472. iowarp_core-0.6.2/context-transfer-engine/adapter/CMakeLists.txt +77 -0
  473. iowarp_core-0.6.2/context-transfer-engine/adapter/adapter_constants.h +29 -0
  474. iowarp_core-0.6.2/context-transfer-engine/adapter/adapter_types.h +103 -0
  475. iowarp_core-0.6.2/context-transfer-engine/adapter/cae_config.cc +320 -0
  476. iowarp_core-0.6.2/context-transfer-engine/adapter/cae_config.h +159 -0
  477. iowarp_core-0.6.2/context-transfer-engine/adapter/filesystem/CMakeLists.txt +58 -0
  478. iowarp_core-0.6.2/context-transfer-engine/adapter/filesystem/filesystem.cc +8 -0
  479. iowarp_core-0.6.2/context-transfer-engine/adapter/filesystem/filesystem.h +821 -0
  480. iowarp_core-0.6.2/context-transfer-engine/adapter/filesystem/filesystem_io_client.h +355 -0
  481. iowarp_core-0.6.2/context-transfer-engine/adapter/filesystem/filesystem_mdm.h +212 -0
  482. iowarp_core-0.6.2/context-transfer-engine/adapter/mapper/abstract_mapper.h +87 -0
  483. iowarp_core-0.6.2/context-transfer-engine/adapter/mapper/balanced_mapper.h +49 -0
  484. iowarp_core-0.6.2/context-transfer-engine/adapter/mapper/mapper_factory.h +45 -0
  485. iowarp_core-0.6.2/context-transfer-engine/adapter/mpiio/CMakeLists.txt +54 -0
  486. iowarp_core-0.6.2/context-transfer-engine/adapter/mpiio/mpiio_api.cc +481 -0
  487. iowarp_core-0.6.2/context-transfer-engine/adapter/mpiio/mpiio_api.h +243 -0
  488. iowarp_core-0.6.2/context-transfer-engine/adapter/mpiio/mpiio_fs_api.h +709 -0
  489. iowarp_core-0.6.2/context-transfer-engine/adapter/nvidia_gds/CMakeLists.txt +10 -0
  490. iowarp_core-0.6.2/context-transfer-engine/adapter/nvidia_gds/cufile_api.cc +143 -0
  491. iowarp_core-0.6.2/context-transfer-engine/adapter/nvidia_gds/cufile_api.h +134 -0
  492. iowarp_core-0.6.2/context-transfer-engine/adapter/posix/CMakeLists.txt +52 -0
  493. iowarp_core-0.6.2/context-transfer-engine/adapter/posix/posix_api.cc +561 -0
  494. iowarp_core-0.6.2/context-transfer-engine/adapter/posix/posix_api.h +275 -0
  495. iowarp_core-0.6.2/context-transfer-engine/adapter/posix/posix_fs_api.h +274 -0
  496. iowarp_core-0.6.2/context-transfer-engine/adapter/stdio/CMakeLists.txt +45 -0
  497. iowarp_core-0.6.2/context-transfer-engine/adapter/stdio/stdio_api.cc +459 -0
  498. iowarp_core-0.6.2/context-transfer-engine/adapter/stdio/stdio_api.h +178 -0
  499. iowarp_core-0.6.2/context-transfer-engine/adapter/stdio/stdio_fs_api.h +269 -0
  500. iowarp_core-0.6.2/context-transfer-engine/adapter/vfd/CMakeLists.txt +173 -0
  501. iowarp_core-0.6.2/context-transfer-engine/adapter/vfd/H5FDhermes.cc +524 -0
  502. iowarp_core-0.6.2/context-transfer-engine/adapter/vfd/H5FDhermes.h +60 -0
  503. iowarp_core-0.6.2/context-transfer-engine/adapter/vfd/README.md +101 -0
  504. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase1-basic-io.md +92 -0
  505. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase10-python.md +7 -0
  506. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase11-tag.md +39 -0
  507. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase12-reorganize.md +19 -0
  508. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase13-distributed.md +60 -0
  509. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase13-distributed2.md +21 -0
  510. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase14-targets.md +19 -0
  511. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase15-compose.md +13 -0
  512. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase16-query.md +42 -0
  513. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase2-fixes.md +7 -0
  514. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase3-putblob.md +52 -0
  515. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase4-fixes.md +28 -0
  516. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase5-adapter.md +17 -0
  517. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase6-singleton.md +1 -0
  518. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase7-unit-tests.md +16 -0
  519. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase8-del.md +13 -0
  520. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Core/phase9-stats.md +29 -0
  521. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Docker/phase1-structure.md +10 -0
  522. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/Test/phase1-distributed.md +194 -0
  523. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/benchmark/phase1-simple.md +7 -0
  524. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/benchmark/phase2-container.md +60 -0
  525. iowarp_core-0.6.2/context-transfer-engine/ai-prompts/jarvis/phase1.md +26 -0
  526. iowarp_core-0.6.2/context-transfer-engine/benchmark/CMakeLists.txt +21 -0
  527. iowarp_core-0.6.2/context-transfer-engine/benchmark/cte_config_ram.yaml +39 -0
  528. iowarp_core-0.6.2/context-transfer-engine/benchmark/redis_bench.sh +368 -0
  529. iowarp_core-0.6.2/context-transfer-engine/benchmark/wrp_cte_bench.cc +507 -0
  530. iowarp_core-0.6.2/context-transfer-engine/benchmark/wrp_cte_bench.sh +178 -0
  531. iowarp_core-0.6.2/context-transfer-engine/chimaera_repo.yaml +8 -0
  532. iowarp_core-0.6.2/context-transfer-engine/config/cae_example.yaml +38 -0
  533. iowarp_core-0.6.2/context-transfer-engine/config/cte_config.yaml +39 -0
  534. iowarp_core-0.6.2/context-transfer-engine/config/cte_example.yaml +38 -0
  535. iowarp_core-0.6.2/context-transfer-engine/core/CMakeLists.txt +21 -0
  536. iowarp_core-0.6.2/context-transfer-engine/core/chimaera_mod.yaml +33 -0
  537. iowarp_core-0.6.2/context-transfer-engine/core/include/wrp_cte/core/autogen/core_methods.h +39 -0
  538. iowarp_core-0.6.2/context-transfer-engine/core/include/wrp_cte/core/content_transfer_engine.h +101 -0
  539. iowarp_core-0.6.2/context-transfer-engine/core/include/wrp_cte/core/core_client.h +772 -0
  540. iowarp_core-0.6.2/context-transfer-engine/core/include/wrp_cte/core/core_config.h +229 -0
  541. iowarp_core-0.6.2/context-transfer-engine/core/include/wrp_cte/core/core_dpe.h +129 -0
  542. iowarp_core-0.6.2/context-transfer-engine/core/include/wrp_cte/core/core_runtime.h +376 -0
  543. iowarp_core-0.6.2/context-transfer-engine/core/include/wrp_cte/core/core_tasks.h +1316 -0
  544. iowarp_core-0.6.2/context-transfer-engine/core/include/wrp_cte/core/core_tasks.h.backup +1168 -0
  545. iowarp_core-0.6.2/context-transfer-engine/core/src/autogen/core_lib_exec.cc +942 -0
  546. iowarp_core-0.6.2/context-transfer-engine/core/src/content_transfer_engine.cc +72 -0
  547. iowarp_core-0.6.2/context-transfer-engine/core/src/core_client.cc +37 -0
  548. iowarp_core-0.6.2/context-transfer-engine/core/src/core_config.cc +534 -0
  549. iowarp_core-0.6.2/context-transfer-engine/core/src/core_dpe.cc +180 -0
  550. iowarp_core-0.6.2/context-transfer-engine/core/src/core_runtime.cc +2066 -0
  551. iowarp_core-0.6.2/context-transfer-engine/core/src/tag.cc +126 -0
  552. iowarp_core-0.6.2/context-transfer-engine/docs/config.md +544 -0
  553. iowarp_core-0.6.2/context-transfer-engine/docs/cte.md +1555 -0
  554. iowarp_core-0.6.2/context-transfer-engine/test/CMakeLists.txt +5 -0
  555. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/QUICK_START.md +237 -0
  556. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/__init__.py +0 -0
  557. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/__init__.py +1 -0
  558. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/wrp_adapters/README.md +310 -0
  559. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/wrp_adapters/__init__.py +1 -0
  560. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/wrp_adapters/pkg.py +306 -0
  561. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/wrp_cte/README.md +189 -0
  562. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/wrp_cte/__init__.py +0 -0
  563. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/wrp_cte/pkg.py +504 -0
  564. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/wrp_cte_bench/__init__.py +3 -0
  565. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/jarvis_wrp_cte/wrp_cte_bench/pkg.py +219 -0
  566. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/pipelines/cte_bench_example.yaml +37 -0
  567. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/pipelines/example_env_vars.yaml +51 -0
  568. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/pipelines/example_mpiio_adapter.yaml +39 -0
  569. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/pipelines/example_multi_adapter.yaml +55 -0
  570. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/pipelines/example_posix_adapter.yaml +37 -0
  571. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/pipelines/ior_base.yaml +18 -0
  572. iowarp_core-0.6.2/context-transfer-engine/test/jarvis_wrp_cte/pipelines/ior_cte.yaml +33 -0
  573. iowarp_core-0.6.2/context-transfer-engine/test/unit/CMakeLists.txt +269 -0
  574. iowarp_core-0.6.2/context-transfer-engine/test/unit/adapters/CMakeLists.txt +7 -0
  575. iowarp_core-0.6.2/context-transfer-engine/test/unit/adapters/posix/CMakeLists.txt +32 -0
  576. iowarp_core-0.6.2/context-transfer-engine/test/unit/adapters/posix/test_posix_adapter.cc +231 -0
  577. iowarp_core-0.6.2/context-transfer-engine/test/unit/benchmark/QUICKSTART.md +171 -0
  578. iowarp_core-0.6.2/context-transfer-engine/test/unit/benchmark/README.md +318 -0
  579. iowarp_core-0.6.2/context-transfer-engine/test/unit/benchmark/docker-compose.yaml +211 -0
  580. iowarp_core-0.6.2/context-transfer-engine/test/unit/benchmark/hostfile +4 -0
  581. iowarp_core-0.6.2/context-transfer-engine/test/unit/benchmark/run_tests.sh +257 -0
  582. iowarp_core-0.6.2/context-transfer-engine/test/unit/benchmark/wrp_config.yaml +25 -0
  583. iowarp_core-0.6.2/context-transfer-engine/test/unit/distributed/README.md +297 -0
  584. iowarp_core-0.6.2/context-transfer-engine/test/unit/distributed/docker-compose.yaml +202 -0
  585. iowarp_core-0.6.2/context-transfer-engine/test/unit/distributed/hostfile +4 -0
  586. iowarp_core-0.6.2/context-transfer-engine/test/unit/distributed/run_tests.sh +285 -0
  587. iowarp_core-0.6.2/context-transfer-engine/test/unit/distributed/wrp_config.yaml +85 -0
  588. iowarp_core-0.6.2/context-transfer-engine/test/unit/external/CMakeLists.txt +87 -0
  589. iowarp_core-0.6.2/context-transfer-engine/test/unit/external/README.md +216 -0
  590. iowarp_core-0.6.2/context-transfer-engine/test/unit/external/external_integration_test.cc +448 -0
  591. iowarp_core-0.6.2/context-transfer-engine/test/unit/test_core_functionality.cc +2354 -0
  592. iowarp_core-0.6.2/context-transfer-engine/test/unit/test_core_functionality_simple.cc +559 -0
  593. iowarp_core-0.6.2/context-transfer-engine/test/unit/test_core_minimal.cc +499 -0
  594. iowarp_core-0.6.2/context-transfer-engine/test/unit/test_query.cc +494 -0
  595. iowarp_core-0.6.2/context-transfer-engine/wrapper/CMakeLists.txt +11 -0
  596. iowarp_core-0.6.2/context-transfer-engine/wrapper/python/CMakeLists.txt +99 -0
  597. iowarp_core-0.6.2/context-transfer-engine/wrapper/python/core_bindings.cc +216 -0
  598. iowarp_core-0.6.2/context-transfer-engine/wrapper/python/test_bindings.py +727 -0
  599. iowarp_core-0.6.2/context-transfer-engine/wrapper/python/test_minimal.cc +8 -0
  600. iowarp_core-0.6.2/context-transport-primitives/CMakeLists.txt +354 -0
  601. iowarp_core-0.6.2/context-transport-primitives/COPYING +52 -0
  602. iowarp_core-0.6.2/context-transport-primitives/README.md +119 -0
  603. iowarp_core-0.6.2/context-transport-primitives/ai-prompts/hshm1.md +71 -0
  604. iowarp_core-0.6.2/context-transport-primitives/ai-prompts/hshm2.md +7 -0
  605. iowarp_core-0.6.2/context-transport-primitives/ai-prompts/hshm3.md +1 -0
  606. iowarp_core-0.6.2/context-transport-primitives/ai-prompts/hshm4.md +50 -0
  607. iowarp_core-0.6.2/context-transport-primitives/ai-prompts/logging.md +2 -0
  608. iowarp_core-0.6.2/context-transport-primitives/benchmark/CMakeLists.txt +6 -0
  609. iowarp_core-0.6.2/context-transport-primitives/benchmark/allocator/CMakeLists.txt +20 -0
  610. iowarp_core-0.6.2/context-transport-primitives/benchmark/allocator/allocator.cc +295 -0
  611. iowarp_core-0.6.2/context-transport-primitives/benchmark/allocator/test_init.h +44 -0
  612. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/CMakeLists.txt +26 -0
  613. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/atomic.cc +251 -0
  614. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/list.cc +263 -0
  615. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/lock.cc +162 -0
  616. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/queue.cc +275 -0
  617. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/ref.cc +40 -0
  618. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/string.cc +118 -0
  619. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/test_init.cc +49 -0
  620. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/test_init.h +178 -0
  621. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/unordered_map.cc +261 -0
  622. iowarp_core-0.6.2/context-transport-primitives/benchmark/data_structures/vector.cc +336 -0
  623. iowarp_core-0.6.2/context-transport-primitives/benchmark/lock/CMakeLists.txt +19 -0
  624. iowarp_core-0.6.2/context-transport-primitives/benchmark/lock/benchmark_mutex.cc +66 -0
  625. iowarp_core-0.6.2/context-transport-primitives/benchmark/lock/test_init.cc +19 -0
  626. iowarp_core-0.6.2/context-transport-primitives/benchmark/lock/test_init.h +20 -0
  627. iowarp_core-0.6.2/context-transport-primitives/code_generators/cpp_macro_generator.py +17 -0
  628. iowarp_core-0.6.2/context-transport-primitives/docs/1.ipc/1.create_allocator.md +242 -0
  629. iowarp_core-0.6.2/context-transport-primitives/docs/1.ipc/2.allocate_api.md +388 -0
  630. iowarp_core-0.6.2/context-transport-primitives/docs/1.ipc/3.shm_dev_guide.md +730 -0
  631. iowarp_core-0.6.2/context-transport-primitives/docs/2.types/atomic_types_guide.md +245 -0
  632. iowarp_core-0.6.2/context-transport-primitives/docs/2.types/bitfield_types_guide.md +701 -0
  633. iowarp_core-0.6.2/context-transport-primitives/docs/2.types/delay_ar_guide.md +253 -0
  634. iowarp_core-0.6.2/context-transport-primitives/docs/2.types/ring_queue.md +507 -0
  635. iowarp_core-0.6.2/context-transport-primitives/docs/3.network/lightbeam_networking_guide.md +668 -0
  636. iowarp_core-0.6.2/context-transport-primitives/docs/4.thread/thread_system_guide.md +728 -0
  637. iowarp_core-0.6.2/context-transport-primitives/docs/5.util/config_parsing_guide.md +637 -0
  638. iowarp_core-0.6.2/context-transport-primitives/docs/5.util/dynamic_libraries_guide.md +989 -0
  639. iowarp_core-0.6.2/context-transport-primitives/docs/5.util/environment_variables_guide.md +731 -0
  640. iowarp_core-0.6.2/context-transport-primitives/docs/5.util/logging_guide.md +177 -0
  641. iowarp_core-0.6.2/context-transport-primitives/docs/5.util/singleton_utilities_guide.md +421 -0
  642. iowarp_core-0.6.2/context-transport-primitives/docs/5.util/system_introspection_guide.md +163 -0
  643. iowarp_core-0.6.2/context-transport-primitives/docs/5.util/timer_utilities_guide.md +188 -0
  644. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/constants/macros.h +239 -0
  645. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/all.h +140 -0
  646. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/internal/shm_archive.h +173 -0
  647. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/internal/shm_container.h +250 -0
  648. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/internal/shm_internal.h +20 -0
  649. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/internal/shm_macros.h +31 -0
  650. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/internal/template/hipc_container_template.h +141 -0
  651. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/internal/template/hipc_container_template_ex.h +191 -0
  652. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/internal/template/hshm_data_structures_template_base.h +82 -0
  653. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/algorithm.h +172 -0
  654. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/chararr.h +236 -0
  655. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/charwrap.h +41 -0
  656. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/dynamic_queue.h +236 -0
  657. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/functional.h +37 -0
  658. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/hash.h +80 -0
  659. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/key_set.h +107 -0
  660. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/lifo_list_queue.h +466 -0
  661. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/list.h +566 -0
  662. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/mpsc_lifo_list_queue.h +303 -0
  663. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/multi_ring_buffer.h +306 -0
  664. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/pair.h +277 -0
  665. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/ring_ptr_queue.h +496 -0
  666. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/ring_queue.h +483 -0
  667. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/ring_queue_flags.h +58 -0
  668. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/slist.h +596 -0
  669. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/split_ticket_queue.h +229 -0
  670. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/spsc_fifo_list_queue.h +305 -0
  671. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/string.h +574 -0
  672. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/string_common.h +49 -0
  673. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/stringstream.h +26 -0
  674. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/ticket_queue.h +201 -0
  675. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/tuple_base.h +234 -0
  676. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/unordered_map.h +573 -0
  677. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/ipc/vector.h +834 -0
  678. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/serialization/local_serialize.h +197 -0
  679. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/data_structures/serialization/serialize_common.h +214 -0
  680. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/hermes_shm.h +148 -0
  681. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/introspect/system_info.cc +491 -0
  682. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/introspect/system_info.h +175 -0
  683. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/lightbeam/lightbeam.h +104 -0
  684. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/lightbeam/transport_factory_impl.h +115 -0
  685. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/lightbeam/utils.h +25 -0
  686. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/lightbeam/zmq_transport.h +347 -0
  687. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/allocator.h +843 -0
  688. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/allocator_factory.h +102 -0
  689. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/allocator_factory_.h +43 -0
  690. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/gpu_stack_allocator.h +157 -0
  691. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/heap.h +77 -0
  692. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/malloc_allocator.h +172 -0
  693. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/mp_page.h +37 -0
  694. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/page_allocator.h +157 -0
  695. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/scalable_page_allocator.h +218 -0
  696. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/stack_allocator.h +193 -0
  697. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/test_allocator.h +279 -0
  698. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/allocator/thread_local_allocator.h +293 -0
  699. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/backend/array_backend.h +70 -0
  700. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/backend/gpu_malloc.h +107 -0
  701. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/backend/gpu_shm_mmap.h +106 -0
  702. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/backend/malloc_backend.h +75 -0
  703. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/backend/memory_backend.h +260 -0
  704. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/backend/memory_backend_factory.h +94 -0
  705. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/backend/posix_mmap.h +120 -0
  706. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/backend/posix_shm_mmap.h +138 -0
  707. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/memory.h +759 -0
  708. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/memory_manager.h +432 -0
  709. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/memory/memory_manager_.h +343 -0
  710. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/solver/nonlinear_least_squares.h +263 -0
  711. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/lock/mutex.h +131 -0
  712. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/lock/rwlock.h +253 -0
  713. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/lock/spin_lock.h +118 -0
  714. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/lock.h +20 -0
  715. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/thread_model/argobots.h +175 -0
  716. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/thread_model/cuda.h +75 -0
  717. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/thread_model/pthread.h +161 -0
  718. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/thread_model/rocm.h +71 -0
  719. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/thread_model/std_thread.h +98 -0
  720. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/thread_model/thread_model.h +135 -0
  721. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/thread/thread_model_manager.h +45 -0
  722. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/types/argpack.h +254 -0
  723. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/types/atomic.h +675 -0
  724. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/types/bitfield.h +213 -0
  725. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/types/numbers.h +212 -0
  726. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/types/qtok.h +73 -0
  727. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/types/real_number.h +125 -0
  728. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/affinity.h +171 -0
  729. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/auto_trace.h +85 -0
  730. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/blosc.h +75 -0
  731. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/brotli.h +67 -0
  732. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/bzip2.h +60 -0
  733. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/compress.h +40 -0
  734. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/compress_factory.h +30 -0
  735. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/lz4.h +48 -0
  736. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/lzma.h +101 -0
  737. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/lzo.h +47 -0
  738. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/snappy.h +49 -0
  739. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/zlib.h +89 -0
  740. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/compress/zstd.h +49 -0
  741. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/config_parse.h +315 -0
  742. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/encrypt/aes.h +114 -0
  743. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/encrypt/encrypt.h +24 -0
  744. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/error.h +84 -0
  745. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/errors.h +47 -0
  746. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/formatter.h +87 -0
  747. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/gpu_api.h +181 -0
  748. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/logging.h +199 -0
  749. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/random.h +131 -0
  750. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/real_api.h +230 -0
  751. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/singleton.h +219 -0
  752. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/timer.h +157 -0
  753. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/timer_mpi.h +64 -0
  754. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/timer_thread.h +52 -0
  755. iowarp_core-0.6.2/context-transport-primitives/include/hermes_shm/util/type_switch.h +48 -0
  756. iowarp_core-0.6.2/context-transport-primitives/scripts/ci/coverage.sh +22 -0
  757. iowarp_core-0.6.2/context-transport-primitives/scripts/ci/install_deps.sh +36 -0
  758. iowarp_core-0.6.2/context-transport-primitives/scripts/ci/install_docs.sh +27 -0
  759. iowarp_core-0.6.2/context-transport-primitives/scripts/ci/install_hshm.sh +53 -0
  760. iowarp_core-0.6.2/context-transport-primitives/scripts/docs.sh +8 -0
  761. iowarp_core-0.6.2/context-transport-primitives/scripts/lint.sh +13 -0
  762. iowarp_core-0.6.2/context-transport-primitives/scripts/load_deps.sh +21 -0
  763. iowarp_core-0.6.2/context-transport-primitives/scripts/preamble.py +93 -0
  764. iowarp_core-0.6.2/context-transport-primitives/scripts/singleton_generator.py +25 -0
  765. iowarp_core-0.6.2/context-transport-primitives/src/CMakeLists.txt +128 -0
  766. iowarp_core-0.6.2/context-transport-primitives/src/memory_manager.cc +35 -0
  767. iowarp_core-0.6.2/context-transport-primitives/test/CMakeLists.txt +3 -0
  768. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/jarvis_hshm/hshm_unit_tests/pkg.py +80 -0
  769. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/jarvis_hshm/lightbeam_distributed_test/pkg.py +65 -0
  770. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/multinode-lightbeam.yaml +11 -0
  771. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/multinode-lightbeam2.yaml +12 -0
  772. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/multinode-lightbeam3.yaml +11 -0
  773. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/test_backend_cuda_mpi.yaml +8 -0
  774. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/test_backend_rocm_mpi.yaml +8 -0
  775. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/test_lbm_libfabric.yaml +9 -0
  776. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/test_lbm_thallium1.yaml +10 -0
  777. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/test_lbm_zeromq1.yaml +9 -0
  778. iowarp_core-0.6.2/context-transport-primitives/test/jarvis_hshm/pipelines/test_mpsc_ptr_queue.yaml +8 -0
  779. iowarp_core-0.6.2/context-transport-primitives/test/simple_client_test.cc +177 -0
  780. iowarp_core-0.6.2/context-transport-primitives/test/simple_server_test.cc +104 -0
  781. iowarp_core-0.6.2/context-transport-primitives/test/unit/CMakeLists.txt +37 -0
  782. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators/CMakeLists.txt +67 -0
  783. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators/allocator.cc +124 -0
  784. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators/allocator_thread.cc +56 -0
  785. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators/test_init.cc +19 -0
  786. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators/test_init.h +179 -0
  787. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators_mpi/CMakeLists.txt +51 -0
  788. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators_mpi/allocator_mpi.cc +78 -0
  789. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators_mpi/test_init.cc +28 -0
  790. iowarp_core-0.6.2/context-transport-primitives/test/unit/allocators_mpi/test_init.h +49 -0
  791. iowarp_core-0.6.2/context-transport-primitives/test/unit/backend/CMakeLists.txt +44 -0
  792. iowarp_core-0.6.2/context-transport-primitives/test/unit/backend/backend.cc +30 -0
  793. iowarp_core-0.6.2/context-transport-primitives/test/unit/backend/memory_manager.cc +82 -0
  794. iowarp_core-0.6.2/context-transport-primitives/test/unit/backend/memory_slots.cc +62 -0
  795. iowarp_core-0.6.2/context-transport-primitives/test/unit/backend/test_init.cc +18 -0
  796. iowarp_core-0.6.2/context-transport-primitives/test/unit/basic_test.h +74 -0
  797. iowarp_core-0.6.2/context-transport-primitives/test/unit/compress/CMakeLists.txt +33 -0
  798. iowarp_core-0.6.2/context-transport-primitives/test/unit/compress/test_compress.cc +111 -0
  799. iowarp_core-0.6.2/context-transport-primitives/test/unit/compress/test_init.cc +18 -0
  800. iowarp_core-0.6.2/context-transport-primitives/test/unit/cuda/CMakeLists.txt +33 -0
  801. iowarp_core-0.6.2/context-transport-primitives/test/unit/cuda/backend_cuda.cc +126 -0
  802. iowarp_core-0.6.2/context-transport-primitives/test/unit/cuda/backend_cuda_mpi.cc +155 -0
  803. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/CMakeLists.txt +6 -0
  804. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/CMakeLists.txt +97 -0
  805. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/chararr.cc +210 -0
  806. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/charwrap.cc +243 -0
  807. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/key_set.cc +42 -0
  808. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/lifo_list_queue.cc +39 -0
  809. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/lifo_list_queue.h +110 -0
  810. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/list.cc +96 -0
  811. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/list.h +188 -0
  812. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/namespace.cc +23 -0
  813. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/pair.cc +126 -0
  814. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/queue.cc +468 -0
  815. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/queue.h +233 -0
  816. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/slist.cc +59 -0
  817. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/smart_ptr.h +84 -0
  818. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/string.cc +97 -0
  819. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/test_init.cc +21 -0
  820. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/test_init.h +51 -0
  821. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/tuple.cc +82 -0
  822. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/unordered_map.cc +248 -0
  823. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/vector.cc +189 -0
  824. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers/vector.h +38 -0
  825. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers_mpi/CMakeLists.txt +43 -0
  826. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers_mpi/mpsc_queue.cc +65 -0
  827. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers_mpi/test_init.cc +53 -0
  828. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/containers_mpi/test_init.h +42 -0
  829. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/CMakeLists.txt +7 -0
  830. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/cereal/CMakeLists.txt +38 -0
  831. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/cereal/test_cereal.cc +159 -0
  832. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/cereal/test_init.cc +33 -0
  833. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/cereal/test_init.h +34 -0
  834. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/shm/CMakeLists.txt +37 -0
  835. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/shm/test_init.cc +33 -0
  836. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/shm/test_init.h +34 -0
  837. iowarp_core-0.6.2/context-transport-primitives/test/unit/data_structures/serialize/shm/test_shm.cc +220 -0
  838. iowarp_core-0.6.2/context-transport-primitives/test/unit/encrypt/CMakeLists.txt +33 -0
  839. iowarp_core-0.6.2/context-transport-primitives/test/unit/encrypt/test_encrypt.cc +32 -0
  840. iowarp_core-0.6.2/context-transport-primitives/test/unit/encrypt/test_init.cc +18 -0
  841. iowarp_core-0.6.2/context-transport-primitives/test/unit/external/CMakeLists.txt +19 -0
  842. iowarp_core-0.6.2/context-transport-primitives/test/unit/external/test.cc +18 -0
  843. iowarp_core-0.6.2/context-transport-primitives/test/unit/external/test_cuda.cc +5 -0
  844. iowarp_core-0.6.2/context-transport-primitives/test/unit/interceptor/CMakeLists.txt +25 -0
  845. iowarp_core-0.6.2/context-transport-primitives/test/unit/interceptor/test_interceptor.cc +5 -0
  846. iowarp_core-0.6.2/context-transport-primitives/test/unit/interceptor/test_lib.cc +4 -0
  847. iowarp_core-0.6.2/context-transport-primitives/test/unit/interceptor/test_lib.h +4 -0
  848. iowarp_core-0.6.2/context-transport-primitives/test/unit/interceptor/test_lib_api.h +16 -0
  849. iowarp_core-0.6.2/context-transport-primitives/test/unit/interceptor/test_my_lib.cc +6 -0
  850. iowarp_core-0.6.2/context-transport-primitives/test/unit/lightbeam/CMakeLists.txt +36 -0
  851. iowarp_core-0.6.2/context-transport-primitives/test/unit/lightbeam/distributed_lightbeam_test.cc +284 -0
  852. iowarp_core-0.6.2/context-transport-primitives/test/unit/lightbeam/hosts_libfabric.txt +1 -0
  853. iowarp_core-0.6.2/context-transport-primitives/test/unit/lightbeam/hosts_thallium.txt +1 -0
  854. iowarp_core-0.6.2/context-transport-primitives/test/unit/lightbeam/hosts_zeromq.txt +1 -0
  855. iowarp_core-0.6.2/context-transport-primitives/test/unit/lightbeam/lightbeam_transport_test.cc +74 -0
  856. iowarp_core-0.6.2/context-transport-primitives/test/unit/lightbeam/test_lightbeam_new.cc +188 -0
  857. iowarp_core-0.6.2/context-transport-primitives/test/unit/main.cc +27 -0
  858. iowarp_core-0.6.2/context-transport-primitives/test/unit/main_mpi.cc +31 -0
  859. iowarp_core-0.6.2/context-transport-primitives/test/unit/rocm/CMakeLists.txt +35 -0
  860. iowarp_core-0.6.2/context-transport-primitives/test/unit/rocm/backend_rocm.cc +197 -0
  861. iowarp_core-0.6.2/context-transport-primitives/test/unit/rocm/backend_rocm_mpi.cc +139 -0
  862. iowarp_core-0.6.2/context-transport-primitives/test/unit/singleton/CMakeLists.txt +10 -0
  863. iowarp_core-0.6.2/context-transport-primitives/test/unit/singleton/my_lib1.cc +35 -0
  864. iowarp_core-0.6.2/context-transport-primitives/test/unit/singleton/my_lib1.h +21 -0
  865. iowarp_core-0.6.2/context-transport-primitives/test/unit/singleton/my_lib2.cc +35 -0
  866. iowarp_core-0.6.2/context-transport-primitives/test/unit/singleton/my_lib2.h +21 -0
  867. iowarp_core-0.6.2/context-transport-primitives/test/unit/singleton/singleton_lib.h +13 -0
  868. iowarp_core-0.6.2/context-transport-primitives/test/unit/singleton/test_init.cc +18 -0
  869. iowarp_core-0.6.2/context-transport-primitives/test/unit/singleton/test_singleton.cc +28 -0
  870. iowarp_core-0.6.2/context-transport-primitives/test/unit/solvers/CMakeLists.txt +48 -0
  871. iowarp_core-0.6.2/context-transport-primitives/test/unit/solvers/test_init.cc +5 -0
  872. iowarp_core-0.6.2/context-transport-primitives/test/unit/solvers/test_init.h +7 -0
  873. iowarp_core-0.6.2/context-transport-primitives/test/unit/solvers/test_nonlinear_least_squares.cc +159 -0
  874. iowarp_core-0.6.2/context-transport-primitives/test/unit/thread/CMakeLists.txt +41 -0
  875. iowarp_core-0.6.2/context-transport-primitives/test/unit/thread/test_init.cc +18 -0
  876. iowarp_core-0.6.2/context-transport-primitives/test/unit/thread/test_lock.cc +117 -0
  877. iowarp_core-0.6.2/context-transport-primitives/test/unit/types/CMakeLists.txt +61 -0
  878. iowarp_core-0.6.2/context-transport-primitives/test/unit/types/test_argpack.cc +194 -0
  879. iowarp_core-0.6.2/context-transport-primitives/test/unit/types/test_atomics.cc +56 -0
  880. iowarp_core-0.6.2/context-transport-primitives/test/unit/types/test_init.cc +18 -0
  881. iowarp_core-0.6.2/context-transport-primitives/test/unit/types/test_random.cc +56 -0
  882. iowarp_core-0.6.2/context-transport-primitives/test/unit/types/test_timers.cc +76 -0
  883. iowarp_core-0.6.2/context-transport-primitives/test/unit/types/test_util.cc +147 -0
  884. iowarp_core-0.6.2/context-transport-primitives/vcpkg.json +42 -0
  885. iowarp_core-0.6.2/docker/README.minimal.md +193 -0
  886. iowarp_core-0.6.2/docker/build.Dockerfile +38 -0
  887. iowarp_core-0.6.2/docker/deploy.Dockerfile +10 -0
  888. iowarp_core-0.6.2/docker/docker-compose.yml +16 -0
  889. iowarp_core-0.6.2/docker/install_docker.sh +148 -0
  890. iowarp_core-0.6.2/docker/local.Dockerfile +25 -0
  891. iowarp_core-0.6.2/docker/local.sh +20 -0
  892. iowarp_core-0.6.2/docker/minimal.Dockerfile +95 -0
  893. iowarp_core-0.6.2/docker/redis_bench/Dockerfile +56 -0
  894. iowarp_core-0.6.2/docker/redis_bench/README.md +171 -0
  895. iowarp_core-0.6.2/docker/redis_bench/docker-compose.yml +106 -0
  896. iowarp_core-0.6.2/docker/test_external/cae.Dockerfile +14 -0
  897. iowarp_core-0.6.2/docker/test_external/docker-compose.yml +59 -0
  898. iowarp_core-0.6.2/docker/test_external/file_assets_omni.yaml +10 -0
  899. iowarp_core-0.6.2/docker/test_external/runtime.Dockerfile +11 -0
  900. iowarp_core-0.6.2/docker/test_external/wrp_config_example.yaml +62 -0
  901. iowarp_core-0.6.2/docker/wrp_cte_bench/Dockerfile +50 -0
  902. iowarp_core-0.6.2/docker/wrp_cte_bench/README.md +380 -0
  903. iowarp_core-0.6.2/docker/wrp_cte_bench/cte_config.yaml +30 -0
  904. iowarp_core-0.6.2/docker/wrp_cte_bench/docker-compose.yml +249 -0
  905. iowarp_core-0.6.2/docs/contributing.md +314 -0
  906. iowarp_core-0.6.2/external/Catch2/.bazelrc +12 -0
  907. iowarp_core-0.6.2/external/Catch2/.clang-format +45 -0
  908. iowarp_core-0.6.2/external/Catch2/.clang-tidy +82 -0
  909. iowarp_core-0.6.2/external/Catch2/.conan/build.py +94 -0
  910. iowarp_core-0.6.2/external/Catch2/.conan/test_package/CMakeLists.txt +7 -0
  911. iowarp_core-0.6.2/external/Catch2/.conan/test_package/conanfile.py +40 -0
  912. iowarp_core-0.6.2/external/Catch2/.conan/test_package/test_package.cpp +13 -0
  913. iowarp_core-0.6.2/external/Catch2/.github/FUNDING.yml +2 -0
  914. iowarp_core-0.6.2/external/Catch2/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
  915. iowarp_core-0.6.2/external/Catch2/.github/ISSUE_TEMPLATE/feature_request.md +14 -0
  916. iowarp_core-0.6.2/external/Catch2/.github/pull_request_template.md +28 -0
  917. iowarp_core-0.6.2/external/Catch2/.github/workflows/linux-bazel-builds.yml +24 -0
  918. iowarp_core-0.6.2/external/Catch2/.github/workflows/linux-meson-builds.yml +44 -0
  919. iowarp_core-0.6.2/external/Catch2/.github/workflows/linux-other-builds.yml +125 -0
  920. iowarp_core-0.6.2/external/Catch2/.github/workflows/linux-simple-builds.yml +105 -0
  921. iowarp_core-0.6.2/external/Catch2/.github/workflows/mac-builds.yml +32 -0
  922. iowarp_core-0.6.2/external/Catch2/.github/workflows/package-manager-builds.yaml +31 -0
  923. iowarp_core-0.6.2/external/Catch2/.github/workflows/validate-header-guards.yml +36 -0
  924. iowarp_core-0.6.2/external/Catch2/.github/workflows/windows-simple-builds.yml +31 -0
  925. iowarp_core-0.6.2/external/Catch2/BUILD.bazel +117 -0
  926. iowarp_core-0.6.2/external/Catch2/CMake/Catch2Config.cmake.in +9 -0
  927. iowarp_core-0.6.2/external/Catch2/CMake/CatchConfigOptions.cmake +91 -0
  928. iowarp_core-0.6.2/external/Catch2/CMake/CatchMiscFunctions.cmake +121 -0
  929. iowarp_core-0.6.2/external/Catch2/CMake/FindGcov.cmake +157 -0
  930. iowarp_core-0.6.2/external/Catch2/CMake/FindLcov.cmake +354 -0
  931. iowarp_core-0.6.2/external/Catch2/CMake/Findcodecov.cmake +258 -0
  932. iowarp_core-0.6.2/external/Catch2/CMake/catch2-with-main.pc.in +10 -0
  933. iowarp_core-0.6.2/external/Catch2/CMake/catch2.pc.in +11 -0
  934. iowarp_core-0.6.2/external/Catch2/CMake/llvm-cov-wrapper +56 -0
  935. iowarp_core-0.6.2/external/Catch2/CMakeLists.txt +230 -0
  936. iowarp_core-0.6.2/external/Catch2/CMakePresets.json +40 -0
  937. iowarp_core-0.6.2/external/Catch2/CODE_OF_CONDUCT.md +46 -0
  938. iowarp_core-0.6.2/external/Catch2/Doxyfile +2650 -0
  939. iowarp_core-0.6.2/external/Catch2/LICENSE.txt +23 -0
  940. iowarp_core-0.6.2/external/Catch2/MAINTAINERS.md +11 -0
  941. iowarp_core-0.6.2/external/Catch2/MODULE.bazel +5 -0
  942. iowarp_core-0.6.2/external/Catch2/README.md +114 -0
  943. iowarp_core-0.6.2/external/Catch2/SECURITY.md +19 -0
  944. iowarp_core-0.6.2/external/Catch2/appveyor.yml +83 -0
  945. iowarp_core-0.6.2/external/Catch2/benchmarks/CMakeLists.txt +16 -0
  946. iowarp_core-0.6.2/external/Catch2/benchmarks/assertion_listener.cpp +28 -0
  947. iowarp_core-0.6.2/external/Catch2/benchmarks/runtime_assertion_benches.cpp +27 -0
  948. iowarp_core-0.6.2/external/Catch2/codecov.yml +22 -0
  949. iowarp_core-0.6.2/external/Catch2/conanfile.py +129 -0
  950. iowarp_core-0.6.2/external/Catch2/data/artwork/catch2-c-logo.svg +105 -0
  951. iowarp_core-0.6.2/external/Catch2/data/artwork/catch2-hand-logo.svg +83 -0
  952. iowarp_core-0.6.2/external/Catch2/data/artwork/catch2-logo-full-with-background.svg +104 -0
  953. iowarp_core-0.6.2/external/Catch2/data/artwork/catch2-logo-full.svg +88 -0
  954. iowarp_core-0.6.2/external/Catch2/data/sponsors/github_repo_sponsorship.png +0 -0
  955. iowarp_core-0.6.2/external/Catch2/docs/Readme.md +44 -0
  956. iowarp_core-0.6.2/external/Catch2/docs/assertions.md +182 -0
  957. iowarp_core-0.6.2/external/Catch2/docs/benchmarks.md +251 -0
  958. iowarp_core-0.6.2/external/Catch2/docs/ci-and-misc.md +117 -0
  959. iowarp_core-0.6.2/external/Catch2/docs/cmake-integration.md +442 -0
  960. iowarp_core-0.6.2/external/Catch2/docs/command-line.md +670 -0
  961. iowarp_core-0.6.2/external/Catch2/docs/commercial-users.md +23 -0
  962. iowarp_core-0.6.2/external/Catch2/docs/comparing-floating-point-numbers.md +192 -0
  963. iowarp_core-0.6.2/external/Catch2/docs/configuration.md +337 -0
  964. iowarp_core-0.6.2/external/Catch2/docs/contributing.md +342 -0
  965. iowarp_core-0.6.2/external/Catch2/docs/deprecations.md +53 -0
  966. iowarp_core-0.6.2/external/Catch2/docs/event-listeners.md +44 -0
  967. iowarp_core-0.6.2/external/Catch2/docs/faq.md +113 -0
  968. iowarp_core-0.6.2/external/Catch2/docs/generators.md +284 -0
  969. iowarp_core-0.6.2/external/Catch2/docs/limitations.md +157 -0
  970. iowarp_core-0.6.2/external/Catch2/docs/list-of-examples.md +47 -0
  971. iowarp_core-0.6.2/external/Catch2/docs/logging.md +161 -0
  972. iowarp_core-0.6.2/external/Catch2/docs/matchers.md +476 -0
  973. iowarp_core-0.6.2/external/Catch2/docs/migrate-v2-to-v3.md +98 -0
  974. iowarp_core-0.6.2/external/Catch2/docs/opensource-users.md +159 -0
  975. iowarp_core-0.6.2/external/Catch2/docs/other-macros.md +131 -0
  976. iowarp_core-0.6.2/external/Catch2/docs/own-main.md +133 -0
  977. iowarp_core-0.6.2/external/Catch2/docs/release-notes.md +1992 -0
  978. iowarp_core-0.6.2/external/Catch2/docs/release-process.md +66 -0
  979. iowarp_core-0.6.2/external/Catch2/docs/reporter-events.md +175 -0
  980. iowarp_core-0.6.2/external/Catch2/docs/reporters.md +218 -0
  981. iowarp_core-0.6.2/external/Catch2/docs/skipping-passing-failing.md +149 -0
  982. iowarp_core-0.6.2/external/Catch2/docs/test-cases-and-sections.md +346 -0
  983. iowarp_core-0.6.2/external/Catch2/docs/test-fixtures.md +291 -0
  984. iowarp_core-0.6.2/external/Catch2/docs/thread-safety.md +229 -0
  985. iowarp_core-0.6.2/external/Catch2/docs/tostring.md +132 -0
  986. iowarp_core-0.6.2/external/Catch2/docs/tutorial.md +228 -0
  987. iowarp_core-0.6.2/external/Catch2/docs/usage-tips.md +100 -0
  988. iowarp_core-0.6.2/external/Catch2/docs/why-catch.md +59 -0
  989. iowarp_core-0.6.2/external/Catch2/examples/010-TestCase.cpp +41 -0
  990. iowarp_core-0.6.2/external/Catch2/examples/020-TestCase-1.cpp +37 -0
  991. iowarp_core-0.6.2/external/Catch2/examples/020-TestCase-2.cpp +41 -0
  992. iowarp_core-0.6.2/external/Catch2/examples/030-Asn-Require-Check.cpp +82 -0
  993. iowarp_core-0.6.2/external/Catch2/examples/100-Fix-Section.cpp +78 -0
  994. iowarp_core-0.6.2/external/Catch2/examples/110-Fix-ClassFixture.cpp +74 -0
  995. iowarp_core-0.6.2/external/Catch2/examples/111-Fix-PersistentFixture.cpp +74 -0
  996. iowarp_core-0.6.2/external/Catch2/examples/120-Bdd-ScenarioGivenWhenThen.cpp +81 -0
  997. iowarp_core-0.6.2/external/Catch2/examples/210-Evt-EventListeners.cpp +436 -0
  998. iowarp_core-0.6.2/external/Catch2/examples/231-Cfg-OutputStreams.cpp +63 -0
  999. iowarp_core-0.6.2/external/Catch2/examples/232-Cfg-CustomMain.cpp +41 -0
  1000. iowarp_core-0.6.2/external/Catch2/examples/300-Gen-OwnGenerator.cpp +77 -0
  1001. iowarp_core-0.6.2/external/Catch2/examples/301-Gen-MapTypeConversion.cpp +69 -0
  1002. iowarp_core-0.6.2/external/Catch2/examples/302-Gen-Table.cpp +63 -0
  1003. iowarp_core-0.6.2/external/Catch2/examples/310-Gen-VariablesInGenerators.cpp +43 -0
  1004. iowarp_core-0.6.2/external/Catch2/examples/311-Gen-CustomCapture.cpp +51 -0
  1005. iowarp_core-0.6.2/external/Catch2/examples/CMakeLists.txt +58 -0
  1006. iowarp_core-0.6.2/external/Catch2/extras/Catch.cmake +318 -0
  1007. iowarp_core-0.6.2/external/Catch2/extras/CatchAddTests.cmake +253 -0
  1008. iowarp_core-0.6.2/external/Catch2/extras/CatchShardTests.cmake +72 -0
  1009. iowarp_core-0.6.2/external/Catch2/extras/CatchShardTestsImpl.cmake +52 -0
  1010. iowarp_core-0.6.2/external/Catch2/extras/ParseAndAddCatchTests.cmake +250 -0
  1011. iowarp_core-0.6.2/external/Catch2/extras/catch_amalgamated.cpp +12083 -0
  1012. iowarp_core-0.6.2/external/Catch2/extras/catch_amalgamated.hpp +14314 -0
  1013. iowarp_core-0.6.2/external/Catch2/extras/gdbinit +16 -0
  1014. iowarp_core-0.6.2/external/Catch2/extras/lldbinit +16 -0
  1015. iowarp_core-0.6.2/external/Catch2/fuzzing/CMakeLists.txt +20 -0
  1016. iowarp_core-0.6.2/external/Catch2/fuzzing/NullOStream.cpp +18 -0
  1017. iowarp_core-0.6.2/external/Catch2/fuzzing/NullOStream.h +28 -0
  1018. iowarp_core-0.6.2/external/Catch2/fuzzing/build_fuzzers.sh +33 -0
  1019. iowarp_core-0.6.2/external/Catch2/fuzzing/fuzz_TestSpecParser.cpp +22 -0
  1020. iowarp_core-0.6.2/external/Catch2/fuzzing/fuzz_XmlWriter.cpp +22 -0
  1021. iowarp_core-0.6.2/external/Catch2/fuzzing/fuzz_textflow.cpp +53 -0
  1022. iowarp_core-0.6.2/external/Catch2/mdsnippets.json +9 -0
  1023. iowarp_core-0.6.2/external/Catch2/meson.build +19 -0
  1024. iowarp_core-0.6.2/external/Catch2/meson_options.txt +2 -0
  1025. iowarp_core-0.6.2/external/Catch2/src/CMakeLists.txt +478 -0
  1026. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_benchmark.hpp +146 -0
  1027. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_benchmark_all.hpp +46 -0
  1028. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_chronometer.cpp +17 -0
  1029. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_chronometer.hpp +77 -0
  1030. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_clock.hpp +27 -0
  1031. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_constructor.hpp +82 -0
  1032. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_environment.hpp +29 -0
  1033. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_estimate.hpp +25 -0
  1034. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_execution_plan.hpp +58 -0
  1035. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_optimizer.hpp +78 -0
  1036. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_outlier_classification.hpp +29 -0
  1037. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/catch_sample_analysis.hpp +31 -0
  1038. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_analyse.cpp +85 -0
  1039. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_analyse.hpp +27 -0
  1040. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_benchmark_function.cpp +23 -0
  1041. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_benchmark_function.hpp +87 -0
  1042. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_benchmark_stats.hpp +48 -0
  1043. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_benchmark_stats_fwd.hpp +23 -0
  1044. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_complete_invoke.hpp +58 -0
  1045. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_estimate_clock.hpp +126 -0
  1046. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_measure.hpp +32 -0
  1047. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_repeat.hpp +36 -0
  1048. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_run_for_at_least.cpp +31 -0
  1049. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_run_for_at_least.hpp +65 -0
  1050. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_stats.cpp +393 -0
  1051. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_stats.hpp +60 -0
  1052. iowarp_core-0.6.2/external/Catch2/src/catch2/benchmark/detail/catch_timing.hpp +29 -0
  1053. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_all.hpp +138 -0
  1054. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_approx.cpp +85 -0
  1055. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_approx.hpp +128 -0
  1056. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_assertion_info.hpp +28 -0
  1057. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_assertion_result.cpp +105 -0
  1058. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_assertion_result.hpp +60 -0
  1059. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_case_sensitive.hpp +17 -0
  1060. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_config.cpp +273 -0
  1061. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_config.hpp +157 -0
  1062. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_get_random_seed.cpp +18 -0
  1063. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_get_random_seed.hpp +18 -0
  1064. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_message.cpp +114 -0
  1065. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_message.hpp +149 -0
  1066. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_registry_hub.cpp +105 -0
  1067. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_section_info.hpp +42 -0
  1068. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_session.cpp +413 -0
  1069. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_session.hpp +70 -0
  1070. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_tag_alias.hpp +29 -0
  1071. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_tag_alias_autoregistrar.cpp +24 -0
  1072. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_tag_alias_autoregistrar.hpp +29 -0
  1073. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_template_test_macros.hpp +124 -0
  1074. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_test_case_info.cpp +262 -0
  1075. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_test_case_info.hpp +142 -0
  1076. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_test_macros.hpp +243 -0
  1077. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_test_run_info.hpp +22 -0
  1078. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_test_spec.cpp +141 -0
  1079. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_test_spec.hpp +119 -0
  1080. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_timer.cpp +37 -0
  1081. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_timer.hpp +27 -0
  1082. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_tostring.cpp +264 -0
  1083. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_tostring.hpp +682 -0
  1084. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_totals.cpp +65 -0
  1085. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_totals.hpp +41 -0
  1086. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_translate_exception.cpp +20 -0
  1087. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_translate_exception.hpp +88 -0
  1088. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_user_config.hpp.in +247 -0
  1089. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_version.cpp +43 -0
  1090. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_version.hpp +39 -0
  1091. iowarp_core-0.6.2/external/Catch2/src/catch2/catch_version_macros.hpp +15 -0
  1092. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generator_exception.cpp +17 -0
  1093. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generator_exception.hpp +31 -0
  1094. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generators.cpp +42 -0
  1095. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generators.hpp +244 -0
  1096. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generators_adapters.hpp +242 -0
  1097. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generators_all.hpp +30 -0
  1098. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generators_random.cpp +41 -0
  1099. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generators_random.hpp +107 -0
  1100. iowarp_core-0.6.2/external/Catch2/src/catch2/generators/catch_generators_range.hpp +111 -0
  1101. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_all.hpp +37 -0
  1102. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_capture.cpp +20 -0
  1103. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_capture.hpp +118 -0
  1104. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_config.cpp +13 -0
  1105. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_config.hpp +99 -0
  1106. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_enum_values_registry.hpp +47 -0
  1107. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_exception.cpp +14 -0
  1108. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_exception.hpp +36 -0
  1109. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_generatortracker.cpp +32 -0
  1110. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_generatortracker.hpp +90 -0
  1111. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_registry_hub.cpp +14 -0
  1112. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_registry_hub.hpp +66 -0
  1113. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_reporter.cpp +93 -0
  1114. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_reporter.hpp +227 -0
  1115. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.cpp +14 -0
  1116. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.hpp +45 -0
  1117. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_tag_alias_registry.hpp +29 -0
  1118. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_test_invoker.hpp +23 -0
  1119. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_testcase.cpp +13 -0
  1120. iowarp_core-0.6.2/external/Catch2/src/catch2/interfaces/catch_interfaces_testcase.hpp +30 -0
  1121. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_assertion_handler.cpp +82 -0
  1122. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_assertion_handler.hpp +68 -0
  1123. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_case_insensitive_comparisons.cpp +35 -0
  1124. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_case_insensitive_comparisons.hpp +30 -0
  1125. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_clara.cpp +464 -0
  1126. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_clara.hpp +748 -0
  1127. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_commandline.cpp +317 -0
  1128. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_commandline.hpp +21 -0
  1129. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_compare_traits.hpp +75 -0
  1130. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_compiler_capabilities.hpp +467 -0
  1131. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_config_android_logwrite.hpp +33 -0
  1132. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_config_counter.hpp +34 -0
  1133. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_config_prefix_messages.hpp +29 -0
  1134. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_config_static_analysis_support.hpp +34 -0
  1135. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_config_uncaught_exceptions.hpp +46 -0
  1136. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_config_wchar.hpp +35 -0
  1137. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_console_colour.cpp +286 -0
  1138. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_console_colour.hpp +141 -0
  1139. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_console_width.hpp +19 -0
  1140. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_container_nonmembers.hpp +73 -0
  1141. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_context.cpp +24 -0
  1142. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_context.hpp +47 -0
  1143. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_debug_console.cpp +45 -0
  1144. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_debug_console.hpp +17 -0
  1145. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_debugger.cpp +120 -0
  1146. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_debugger.hpp +78 -0
  1147. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_decomposer.cpp +28 -0
  1148. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_decomposer.hpp +467 -0
  1149. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_deprecation_macro.hpp +19 -0
  1150. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_enforce.cpp +41 -0
  1151. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_enforce.hpp +54 -0
  1152. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_enum_values_registry.cpp +73 -0
  1153. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_enum_values_registry.hpp +36 -0
  1154. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_errno_guard.cpp +16 -0
  1155. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_errno_guard.hpp +27 -0
  1156. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_exception_translator_registry.cpp +87 -0
  1157. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_exception_translator_registry.hpp +29 -0
  1158. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_fatal_condition_handler.cpp +248 -0
  1159. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_fatal_condition_handler.hpp +66 -0
  1160. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_floating_point_helpers.cpp +43 -0
  1161. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_floating_point_helpers.hpp +108 -0
  1162. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_getenv.cpp +37 -0
  1163. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_getenv.hpp +20 -0
  1164. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_is_permutation.hpp +141 -0
  1165. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_istream.cpp +152 -0
  1166. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_istream.hpp +52 -0
  1167. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_jsonwriter.cpp +165 -0
  1168. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_jsonwriter.hpp +120 -0
  1169. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_lazy_expr.cpp +29 -0
  1170. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_lazy_expr.hpp +40 -0
  1171. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_leak_detector.cpp +38 -0
  1172. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_leak_detector.hpp +19 -0
  1173. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_list.cpp +120 -0
  1174. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_list.hpp +43 -0
  1175. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_logical_traits.hpp +44 -0
  1176. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_main.cpp +39 -0
  1177. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_message_info.cpp +26 -0
  1178. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_message_info.hpp +46 -0
  1179. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_meta.hpp +47 -0
  1180. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_move_and_forward.hpp +19 -0
  1181. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_noncopyable.hpp +29 -0
  1182. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_optional.hpp +117 -0
  1183. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_output_redirect.cpp +339 -0
  1184. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_output_redirect.hpp +77 -0
  1185. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_parse_numbers.cpp +52 -0
  1186. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_parse_numbers.hpp +26 -0
  1187. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_platform.hpp +43 -0
  1188. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_polyfills.cpp +42 -0
  1189. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_polyfills.hpp +21 -0
  1190. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_preprocessor.hpp +247 -0
  1191. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_preprocessor_internal_stringify.hpp +19 -0
  1192. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_preprocessor_remove_parens.hpp +19 -0
  1193. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_random_floating_point_helpers.hpp +94 -0
  1194. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_random_integer_helpers.hpp +224 -0
  1195. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_random_number_generator.cpp +78 -0
  1196. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_random_number_generator.hpp +59 -0
  1197. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_random_seed_generation.cpp +35 -0
  1198. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_random_seed_generation.hpp +26 -0
  1199. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_reporter_registry.cpp +91 -0
  1200. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_reporter_registry.hpp +55 -0
  1201. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_reporter_spec_parser.cpp +173 -0
  1202. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_reporter_spec_parser.hpp +85 -0
  1203. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_result_type.hpp +66 -0
  1204. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_reusable_string_stream.cpp +70 -0
  1205. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_reusable_string_stream.hpp +57 -0
  1206. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_run_context.cpp +842 -0
  1207. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_run_context.hpp +167 -0
  1208. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_section.cpp +60 -0
  1209. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_section.hpp +104 -0
  1210. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_sharding.hpp +40 -0
  1211. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_singletons.cpp +36 -0
  1212. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_singletons.hpp +45 -0
  1213. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_source_line_info.cpp +33 -0
  1214. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_source_line_info.hpp +37 -0
  1215. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_startup_exception_registry.cpp +29 -0
  1216. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_startup_exception_registry.hpp +29 -0
  1217. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_stdstreams.cpp +24 -0
  1218. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_stdstreams.hpp +22 -0
  1219. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_stream_end_stop.hpp +30 -0
  1220. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_string_manip.cpp +116 -0
  1221. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_string_manip.hpp +61 -0
  1222. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_stringref.cpp +65 -0
  1223. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_stringref.hpp +123 -0
  1224. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_tag_alias_registry.cpp +54 -0
  1225. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_tag_alias_registry.hpp +33 -0
  1226. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_template_test_registry.hpp +337 -0
  1227. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_case_info_hasher.cpp +39 -0
  1228. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_case_info_hasher.hpp +29 -0
  1229. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_case_registry_impl.cpp +153 -0
  1230. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_case_registry_impl.hpp +59 -0
  1231. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_case_tracker.cpp +239 -0
  1232. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_case_tracker.hpp +244 -0
  1233. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_failure_exception.cpp +31 -0
  1234. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_failure_exception.hpp +34 -0
  1235. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_macro_impl.hpp +155 -0
  1236. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_registry.cpp +84 -0
  1237. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_registry.hpp +222 -0
  1238. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_spec_parser.cpp +239 -0
  1239. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_test_spec_parser.hpp +81 -0
  1240. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_textflow.cpp +379 -0
  1241. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_textflow.hpp +298 -0
  1242. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_thread_support.hpp +49 -0
  1243. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_to_string.hpp +29 -0
  1244. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_uncaught_exceptions.cpp +25 -0
  1245. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_uncaught_exceptions.hpp +15 -0
  1246. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_uniform_floating_point_distribution.hpp +131 -0
  1247. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_uniform_integer_distribution.hpp +108 -0
  1248. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_unique_name.hpp +20 -0
  1249. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_unique_ptr.hpp +118 -0
  1250. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_unreachable.hpp +56 -0
  1251. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_void_type.hpp +25 -0
  1252. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_wildcard_pattern.cpp +47 -0
  1253. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_wildcard_pattern.hpp +38 -0
  1254. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_windows_h_proxy.hpp +28 -0
  1255. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_xmlwriter.cpp +344 -0
  1256. iowarp_core-0.6.2/external/Catch2/src/catch2/internal/catch_xmlwriter.hpp +163 -0
  1257. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers.cpp +25 -0
  1258. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers.hpp +237 -0
  1259. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_all.hpp +36 -0
  1260. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_container_properties.cpp +34 -0
  1261. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_container_properties.hpp +90 -0
  1262. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_contains.hpp +102 -0
  1263. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_exception.cpp +26 -0
  1264. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_exception.hpp +61 -0
  1265. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_floating_point.cpp +226 -0
  1266. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_floating_point.hpp +94 -0
  1267. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_predicate.cpp +17 -0
  1268. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_predicate.hpp +59 -0
  1269. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_quantifiers.cpp +24 -0
  1270. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_quantifiers.hpp +165 -0
  1271. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_range_equals.hpp +160 -0
  1272. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_string.cpp +114 -0
  1273. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_string.hpp +85 -0
  1274. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_templated.cpp +41 -0
  1275. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_templated.hpp +296 -0
  1276. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/catch_matchers_vector.hpp +194 -0
  1277. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/internal/catch_matchers_impl.cpp +25 -0
  1278. iowarp_core-0.6.2/external/Catch2/src/catch2/matchers/internal/catch_matchers_impl.hpp +109 -0
  1279. iowarp_core-0.6.2/external/Catch2/src/catch2/meson.build +402 -0
  1280. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_automake.cpp +37 -0
  1281. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_automake.hpp +40 -0
  1282. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_common_base.cpp +49 -0
  1283. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_common_base.hpp +79 -0
  1284. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_compact.cpp +255 -0
  1285. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_compact.hpp +42 -0
  1286. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_console.cpp +670 -0
  1287. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_console.hpp +65 -0
  1288. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_cumulative_base.cpp +158 -0
  1289. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_cumulative_base.hpp +151 -0
  1290. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_event_listener.cpp +40 -0
  1291. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_event_listener.hpp +60 -0
  1292. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_helpers.cpp +364 -0
  1293. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_helpers.hpp +95 -0
  1294. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_json.cpp +373 -0
  1295. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_json.hpp +94 -0
  1296. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_junit.cpp +310 -0
  1297. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_junit.hpp +56 -0
  1298. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_multi.cpp +199 -0
  1299. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_multi.hpp +77 -0
  1300. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_registrars.cpp +36 -0
  1301. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_registrars.hpp +133 -0
  1302. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_sonarqube.cpp +162 -0
  1303. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_sonarqube.hpp +60 -0
  1304. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_streaming_base.cpp +23 -0
  1305. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_streaming_base.hpp +73 -0
  1306. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_tap.cpp +229 -0
  1307. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_tap.hpp +43 -0
  1308. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_teamcity.cpp +177 -0
  1309. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_teamcity.hpp +67 -0
  1310. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_xml.cpp +332 -0
  1311. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporter_xml.hpp +64 -0
  1312. iowarp_core-0.6.2/external/Catch2/src/catch2/reporters/catch_reporters_all.hpp +41 -0
  1313. iowarp_core-0.6.2/external/Catch2/tests/BUILD.bazel +86 -0
  1314. iowarp_core-0.6.2/external/Catch2/tests/CMakeLists.txt +699 -0
  1315. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/CMakeLists.txt +555 -0
  1316. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/ToDo.txt +10 -0
  1317. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X01-PrefixedMacros.cpp +97 -0
  1318. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X02-DisabledMacros.cpp +79 -0
  1319. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X03-DisabledExceptions-DefaultHandler.cpp +39 -0
  1320. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X04-DisabledExceptions-CustomHandler.cpp +40 -0
  1321. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X05-DeferredStaticChecks.cpp +21 -0
  1322. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X10-FallbackStringifier.cpp +35 -0
  1323. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X11-DisableStringification.cpp +27 -0
  1324. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X12-CustomDebugBreakMacro.cpp +26 -0
  1325. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp +77 -0
  1326. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X21-PartialTestCaseEvents.cpp +74 -0
  1327. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X22-BenchmarksInCumulativeReporter.cpp +79 -0
  1328. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X23-CasingInReporterNames.cpp +41 -0
  1329. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X24-ListenerStdoutCaptureInMultireporter.cpp +40 -0
  1330. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X25-ListenerCanAskForCapturedStdout.cpp +47 -0
  1331. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X26-ReporterPreferencesForPassingAssertionsIsRespected.cpp +52 -0
  1332. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X27-CapturedStdoutInTestCaseEvents.cpp +82 -0
  1333. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X28-ListenersGetEventsBeforeReporters.cpp +99 -0
  1334. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X29-CustomArgumentsForReporters.cpp +60 -0
  1335. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X30-BazelReporter.cpp +17 -0
  1336. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X31-DuplicatedTestCases.cpp +16 -0
  1337. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X32-DuplicatedTestCasesDifferentTags.cpp +17 -0
  1338. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X33-DuplicatedTestCaseMethods.cpp +22 -0
  1339. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X34-DuplicatedTestCaseMethodsDifferentFixtures.cpp +27 -0
  1340. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X35-DuplicatedReporterNames.cpp +31 -0
  1341. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X36-ReportingCrashWithJunitReporter.cpp +32 -0
  1342. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X40-QuickExit.cpp +28 -0
  1343. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X90-WindowsHeaderInclusion.cpp +21 -0
  1344. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X91-AmalgamatedCatch.cpp +38 -0
  1345. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X92-NoTests.cpp +11 -0
  1346. iowarp_core-0.6.2/external/Catch2/tests/ExtraTests/X93-AllSkipped.cpp +16 -0
  1347. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/automake.std.approved.txt +168 -0
  1348. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/automake.sw.approved.txt +446 -0
  1349. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/automake.sw.multi.approved.txt +435 -0
  1350. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/compact.sw.approved.txt +2894 -0
  1351. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/compact.sw.multi.approved.txt +2883 -0
  1352. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/console.std.approved.txt +1724 -0
  1353. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/console.sw.approved.txt +19300 -0
  1354. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/console.sw.multi.approved.txt +19289 -0
  1355. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/console.swa4.approved.txt +973 -0
  1356. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/default.sw.multi.approved.txt +11 -0
  1357. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/junit.sw.approved.txt +2410 -0
  1358. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/junit.sw.multi.approved.txt +2409 -0
  1359. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/sonarqube.sw.approved.txt +2419 -0
  1360. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt +2418 -0
  1361. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/tap.sw.approved.txt +4631 -0
  1362. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/tap.sw.multi.approved.txt +4620 -0
  1363. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/teamcity.sw.approved.txt +1068 -0
  1364. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt +1067 -0
  1365. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/xml.sw.approved.txt +22329 -0
  1366. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Baselines/xml.sw.multi.approved.txt +22328 -0
  1367. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Algorithms.tests.cpp +94 -0
  1368. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/AssertionHandler.tests.cpp +42 -0
  1369. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Clara.tests.cpp +88 -0
  1370. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/CmdLine.tests.cpp +467 -0
  1371. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/CmdLineHelpers.tests.cpp +111 -0
  1372. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/ColourImpl.tests.cpp +64 -0
  1373. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Details.tests.cpp +172 -0
  1374. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/FloatingPoint.tests.cpp +139 -0
  1375. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +588 -0
  1376. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Integer.tests.cpp +224 -0
  1377. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/InternalBenchmark.tests.cpp +455 -0
  1378. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Json.tests.cpp +178 -0
  1379. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Parse.tests.cpp +38 -0
  1380. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/PartTracker.tests.cpp +254 -0
  1381. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp +609 -0
  1382. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp +330 -0
  1383. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Sharding.tests.cpp +45 -0
  1384. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Stream.tests.cpp +32 -0
  1385. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/String.tests.cpp +212 -0
  1386. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/StringManip.tests.cpp +94 -0
  1387. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Tag.tests.cpp +117 -0
  1388. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/TestCaseInfoHasher.tests.cpp +72 -0
  1389. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/TestSpec.tests.cpp +365 -0
  1390. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/TestSpecParser.tests.cpp +55 -0
  1391. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/TextFlow.tests.cpp +400 -0
  1392. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/ToString.tests.cpp +166 -0
  1393. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Traits.tests.cpp +45 -0
  1394. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/UniquePtr.tests.cpp +141 -0
  1395. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/IntrospectiveTests/Xml.tests.cpp +203 -0
  1396. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Misc/invalid-test-names.input +1 -0
  1397. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Misc/plain-old-tests.input +2 -0
  1398. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/Misc/special-characters-in-file.input +1 -0
  1399. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/TestRegistrations.cpp +181 -0
  1400. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/TimingTests/Sleep.tests.cpp +24 -0
  1401. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Approx.tests.cpp +218 -0
  1402. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/BDD.tests.cpp +106 -0
  1403. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Benchmark.tests.cpp +173 -0
  1404. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Class.tests.cpp +159 -0
  1405. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Compilation.tests.cpp +542 -0
  1406. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Condition.tests.cpp +334 -0
  1407. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Decomposition.tests.cpp +41 -0
  1408. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/EnumToString.tests.cpp +108 -0
  1409. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Exception.tests.cpp +204 -0
  1410. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Generators.tests.cpp +323 -0
  1411. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Matchers.tests.cpp +1144 -0
  1412. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/MatchersRanges.tests.cpp +936 -0
  1413. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Message.tests.cpp +362 -0
  1414. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Misc.tests.cpp +576 -0
  1415. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Skip.tests.cpp +100 -0
  1416. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringByte.tests.cpp +23 -0
  1417. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringChrono.tests.cpp +57 -0
  1418. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringGeneral.tests.cpp +200 -0
  1419. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringOptional.tests.cpp +35 -0
  1420. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringPair.tests.cpp +38 -0
  1421. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringTuple.tests.cpp +54 -0
  1422. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringVariant.tests.cpp +99 -0
  1423. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringVector.tests.cpp +94 -0
  1424. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/ToStringWhich.tests.cpp +186 -0
  1425. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/Tricky.tests.cpp +380 -0
  1426. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/UsageTests/VariadicMacros.tests.cpp +29 -0
  1427. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/helpers/parse_test_spec.cpp +22 -0
  1428. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/helpers/parse_test_spec.hpp +20 -0
  1429. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/helpers/range_test_helpers.hpp +210 -0
  1430. iowarp_core-0.6.2/external/Catch2/tests/SelfTest/helpers/type_with_lit_0_comparisons.hpp +55 -0
  1431. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/ConfigureTestsCommon.py +75 -0
  1432. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/DiscoverTests/CMakeLists.txt +23 -0
  1433. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/DiscoverTests/VerifyRegistration.py +175 -0
  1434. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/DiscoverTests/register-tests.cpp +23 -0
  1435. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testBazelExitGuardFile.py +88 -0
  1436. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testBazelReporter.py +104 -0
  1437. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testBazelSharding.py +80 -0
  1438. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testConfigureDefaultReporter.py +50 -0
  1439. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testConfigureDisable.py +48 -0
  1440. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testConfigureDisableStringification.py +44 -0
  1441. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testConfigureExperimentalRedirect.py +49 -0
  1442. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testPartialTestCaseEvent.py +79 -0
  1443. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testRandomOrder.py +77 -0
  1444. iowarp_core-0.6.2/external/Catch2/tests/TestScripts/testSharding.py +165 -0
  1445. iowarp_core-0.6.2/external/Catch2/tests/meson.build +77 -0
  1446. iowarp_core-0.6.2/external/Catch2/third_party/clara.hpp +1267 -0
  1447. iowarp_core-0.6.2/external/Catch2/tools/misc/CMakeLists.txt +8 -0
  1448. iowarp_core-0.6.2/external/Catch2/tools/misc/SelfTest.vcxproj.user +23 -0
  1449. iowarp_core-0.6.2/external/Catch2/tools/misc/appveyorBuildConfigurationScript.bat +21 -0
  1450. iowarp_core-0.6.2/external/Catch2/tools/misc/appveyorMergeCoverageScript.py +9 -0
  1451. iowarp_core-0.6.2/external/Catch2/tools/misc/appveyorTestRunScript.bat +17 -0
  1452. iowarp_core-0.6.2/external/Catch2/tools/misc/coverage-helper.cpp +142 -0
  1453. iowarp_core-0.6.2/external/Catch2/tools/misc/installOpenCppCoverage.ps1 +19 -0
  1454. iowarp_core-0.6.2/external/Catch2/tools/scripts/approvalTests.py +243 -0
  1455. iowarp_core-0.6.2/external/Catch2/tools/scripts/approve.py +31 -0
  1456. iowarp_core-0.6.2/external/Catch2/tools/scripts/buildAndTest.cmd +16 -0
  1457. iowarp_core-0.6.2/external/Catch2/tools/scripts/buildAndTest.sh +18 -0
  1458. iowarp_core-0.6.2/external/Catch2/tools/scripts/checkConvenienceHeaders.py +151 -0
  1459. iowarp_core-0.6.2/external/Catch2/tools/scripts/checkDuplicateFilenames.py +14 -0
  1460. iowarp_core-0.6.2/external/Catch2/tools/scripts/checkLicense.py +46 -0
  1461. iowarp_core-0.6.2/external/Catch2/tools/scripts/developBuild.py +9 -0
  1462. iowarp_core-0.6.2/external/Catch2/tools/scripts/extractFeaturesFromReleaseNotes.py +92 -0
  1463. iowarp_core-0.6.2/external/Catch2/tools/scripts/fixWhitespace.py +51 -0
  1464. iowarp_core-0.6.2/external/Catch2/tools/scripts/generateAmalgamatedFiles.py +139 -0
  1465. iowarp_core-0.6.2/external/Catch2/tools/scripts/majorRelease.py +9 -0
  1466. iowarp_core-0.6.2/external/Catch2/tools/scripts/minorRelease.py +9 -0
  1467. iowarp_core-0.6.2/external/Catch2/tools/scripts/patchRelease.py +9 -0
  1468. iowarp_core-0.6.2/external/Catch2/tools/scripts/releaseCommon.py +143 -0
  1469. iowarp_core-0.6.2/external/Catch2/tools/scripts/scriptCommon.py +4 -0
  1470. iowarp_core-0.6.2/external/Catch2/tools/scripts/updateDocumentSnippets.py +23 -0
  1471. iowarp_core-0.6.2/external/Catch2/tools/scripts/updateDocumentToC.py +447 -0
  1472. iowarp_core-0.6.2/external/cereal/.github/workflows/ci-macos.yml +45 -0
  1473. iowarp_core-0.6.2/external/cereal/.github/workflows/ci.yml +237 -0
  1474. iowarp_core-0.6.2/external/cereal/.travis.yml +269 -0
  1475. iowarp_core-0.6.2/external/cereal/CMakeLists.txt +143 -0
  1476. iowarp_core-0.6.2/external/cereal/Config.cmake.in +3 -0
  1477. iowarp_core-0.6.2/external/cereal/LICENSE +24 -0
  1478. iowarp_core-0.6.2/external/cereal/README.md +86 -0
  1479. iowarp_core-0.6.2/external/cereal/appveyor.yml +55 -0
  1480. iowarp_core-0.6.2/external/cereal/cereal.pc.in +8 -0
  1481. iowarp_core-0.6.2/external/cereal/doc/CMakeLists.txt +18 -0
  1482. iowarp_core-0.6.2/external/cereal/doc/DoxygenLayout.xml +190 -0
  1483. iowarp_core-0.6.2/external/cereal/doc/doxygen.in +1870 -0
  1484. iowarp_core-0.6.2/external/cereal/doc/footer.html +31 -0
  1485. iowarp_core-0.6.2/external/cereal/doc/mainpage.dox +47 -0
  1486. iowarp_core-0.6.2/external/cereal/include/cereal/access.hpp +351 -0
  1487. iowarp_core-0.6.2/external/cereal/include/cereal/archives/adapters.hpp +163 -0
  1488. iowarp_core-0.6.2/external/cereal/include/cereal/archives/binary.hpp +169 -0
  1489. iowarp_core-0.6.2/external/cereal/include/cereal/archives/json.hpp +1041 -0
  1490. iowarp_core-0.6.2/external/cereal/include/cereal/archives/portable_binary.hpp +334 -0
  1491. iowarp_core-0.6.2/external/cereal/include/cereal/archives/xml.hpp +956 -0
  1492. iowarp_core-0.6.2/external/cereal/include/cereal/cereal.hpp +1120 -0
  1493. iowarp_core-0.6.2/external/cereal/include/cereal/details/helpers.hpp +422 -0
  1494. iowarp_core-0.6.2/external/cereal/include/cereal/details/polymorphic_impl.hpp +825 -0
  1495. iowarp_core-0.6.2/external/cereal/include/cereal/details/polymorphic_impl_fwd.hpp +65 -0
  1496. iowarp_core-0.6.2/external/cereal/include/cereal/details/static_object.hpp +128 -0
  1497. iowarp_core-0.6.2/external/cereal/include/cereal/details/traits.hpp +1411 -0
  1498. iowarp_core-0.6.2/external/cereal/include/cereal/details/util.hpp +84 -0
  1499. iowarp_core-0.6.2/external/cereal/include/cereal/external/LICENSE +21 -0
  1500. iowarp_core-0.6.2/external/cereal/include/cereal/external/base64.hpp +134 -0
  1501. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/LICENSE +13 -0
  1502. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/allocators.h +284 -0
  1503. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/cursorstreamwrapper.h +78 -0
  1504. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/document.h +2659 -0
  1505. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/encodedstream.h +299 -0
  1506. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/encodings.h +716 -0
  1507. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/error/en.h +74 -0
  1508. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/error/error.h +161 -0
  1509. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/filereadstream.h +99 -0
  1510. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/filewritestream.h +104 -0
  1511. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/fwd.h +151 -0
  1512. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/biginteger.h +290 -0
  1513. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/diyfp.h +271 -0
  1514. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/dtoa.h +245 -0
  1515. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/ieee754.h +78 -0
  1516. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/itoa.h +308 -0
  1517. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/meta.h +186 -0
  1518. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/pow10.h +55 -0
  1519. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/regex.h +740 -0
  1520. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/stack.h +232 -0
  1521. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/strfunc.h +69 -0
  1522. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/strtod.h +290 -0
  1523. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/internal/swap.h +46 -0
  1524. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/istreamwrapper.h +128 -0
  1525. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/memorybuffer.h +70 -0
  1526. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/memorystream.h +71 -0
  1527. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/msinttypes/LICENSE +29 -0
  1528. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/msinttypes/inttypes.h +316 -0
  1529. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/msinttypes/stdint.h +300 -0
  1530. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/ostreamwrapper.h +81 -0
  1531. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/pointer.h +1414 -0
  1532. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/prettywriter.h +277 -0
  1533. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/rapidjson.h +656 -0
  1534. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/reader.h +2230 -0
  1535. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/schema.h +2497 -0
  1536. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/stream.h +223 -0
  1537. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/stringbuffer.h +121 -0
  1538. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidjson/writer.h +709 -0
  1539. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidxml/license.txt +52 -0
  1540. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidxml/manual.html +406 -0
  1541. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidxml/rapidxml.hpp +2624 -0
  1542. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidxml/rapidxml_iterators.hpp +175 -0
  1543. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidxml/rapidxml_print.hpp +428 -0
  1544. iowarp_core-0.6.2/external/cereal/include/cereal/external/rapidxml/rapidxml_utils.hpp +123 -0
  1545. iowarp_core-0.6.2/external/cereal/include/cereal/macros.hpp +156 -0
  1546. iowarp_core-0.6.2/external/cereal/include/cereal/specialize.hpp +139 -0
  1547. iowarp_core-0.6.2/external/cereal/include/cereal/types/array.hpp +79 -0
  1548. iowarp_core-0.6.2/external/cereal/include/cereal/types/atomic.hpp +55 -0
  1549. iowarp_core-0.6.2/external/cereal/include/cereal/types/base_class.hpp +203 -0
  1550. iowarp_core-0.6.2/external/cereal/include/cereal/types/bitset.hpp +176 -0
  1551. iowarp_core-0.6.2/external/cereal/include/cereal/types/boost_variant.hpp +164 -0
  1552. iowarp_core-0.6.2/external/cereal/include/cereal/types/chrono.hpp +72 -0
  1553. iowarp_core-0.6.2/external/cereal/include/cereal/types/common.hpp +129 -0
  1554. iowarp_core-0.6.2/external/cereal/include/cereal/types/complex.hpp +56 -0
  1555. iowarp_core-0.6.2/external/cereal/include/cereal/types/concepts/pair_associative_container.hpp +73 -0
  1556. iowarp_core-0.6.2/external/cereal/include/cereal/types/deque.hpp +62 -0
  1557. iowarp_core-0.6.2/external/cereal/include/cereal/types/forward_list.hpp +68 -0
  1558. iowarp_core-0.6.2/external/cereal/include/cereal/types/functional.hpp +43 -0
  1559. iowarp_core-0.6.2/external/cereal/include/cereal/types/list.hpp +62 -0
  1560. iowarp_core-0.6.2/external/cereal/include/cereal/types/map.hpp +36 -0
  1561. iowarp_core-0.6.2/external/cereal/include/cereal/types/memory.hpp +425 -0
  1562. iowarp_core-0.6.2/external/cereal/include/cereal/types/optional.hpp +65 -0
  1563. iowarp_core-0.6.2/external/cereal/include/cereal/types/polymorphic.hpp +483 -0
  1564. iowarp_core-0.6.2/external/cereal/include/cereal/types/queue.hpp +132 -0
  1565. iowarp_core-0.6.2/external/cereal/include/cereal/types/set.hpp +103 -0
  1566. iowarp_core-0.6.2/external/cereal/include/cereal/types/stack.hpp +76 -0
  1567. iowarp_core-0.6.2/external/cereal/include/cereal/types/string.hpp +61 -0
  1568. iowarp_core-0.6.2/external/cereal/include/cereal/types/tuple.hpp +123 -0
  1569. iowarp_core-0.6.2/external/cereal/include/cereal/types/unordered_map.hpp +36 -0
  1570. iowarp_core-0.6.2/external/cereal/include/cereal/types/unordered_set.hpp +99 -0
  1571. iowarp_core-0.6.2/external/cereal/include/cereal/types/utility.hpp +47 -0
  1572. iowarp_core-0.6.2/external/cereal/include/cereal/types/valarray.hpp +89 -0
  1573. iowarp_core-0.6.2/external/cereal/include/cereal/types/variant.hpp +108 -0
  1574. iowarp_core-0.6.2/external/cereal/include/cereal/types/vector.hpp +112 -0
  1575. iowarp_core-0.6.2/external/cereal/include/cereal/version.hpp +52 -0
  1576. iowarp_core-0.6.2/external/cereal/sandbox/CMakeLists.txt +22 -0
  1577. iowarp_core-0.6.2/external/cereal/sandbox/performance.cpp +472 -0
  1578. iowarp_core-0.6.2/external/cereal/sandbox/sandbox.cpp +824 -0
  1579. iowarp_core-0.6.2/external/cereal/sandbox/sandbox_json.cpp +446 -0
  1580. iowarp_core-0.6.2/external/cereal/sandbox/sandbox_rtti.cpp +241 -0
  1581. iowarp_core-0.6.2/external/cereal/sandbox/sandbox_shared_lib/CMakeLists.txt +6 -0
  1582. iowarp_core-0.6.2/external/cereal/sandbox/sandbox_shared_lib/base.cpp +9 -0
  1583. iowarp_core-0.6.2/external/cereal/sandbox/sandbox_shared_lib/base.hpp +43 -0
  1584. iowarp_core-0.6.2/external/cereal/sandbox/sandbox_shared_lib/derived.cpp +10 -0
  1585. iowarp_core-0.6.2/external/cereal/sandbox/sandbox_shared_lib/derived.hpp +22 -0
  1586. iowarp_core-0.6.2/external/cereal/sandbox/sandbox_vs.cpp +307 -0
  1587. iowarp_core-0.6.2/external/cereal/scripts/add_rapidjson_prefix.sh +4 -0
  1588. iowarp_core-0.6.2/external/cereal/scripts/appveyor.bat +80 -0
  1589. iowarp_core-0.6.2/external/cereal/scripts/renameincludes.sh +12 -0
  1590. iowarp_core-0.6.2/external/cereal/scripts/updatecoverage.sh +33 -0
  1591. iowarp_core-0.6.2/external/cereal/scripts/updatedoc.in +25 -0
  1592. iowarp_core-0.6.2/external/cereal/unittests/CMakeLists.txt +104 -0
  1593. iowarp_core-0.6.2/external/cereal/unittests/array.cpp +56 -0
  1594. iowarp_core-0.6.2/external/cereal/unittests/array.hpp +95 -0
  1595. iowarp_core-0.6.2/external/cereal/unittests/atomic.cpp +52 -0
  1596. iowarp_core-0.6.2/external/cereal/unittests/atomic.hpp +170 -0
  1597. iowarp_core-0.6.2/external/cereal/unittests/basic_string.cpp +171 -0
  1598. iowarp_core-0.6.2/external/cereal/unittests/basic_string.hpp +114 -0
  1599. iowarp_core-0.6.2/external/cereal/unittests/bitset.cpp +52 -0
  1600. iowarp_core-0.6.2/external/cereal/unittests/bitset.hpp +87 -0
  1601. iowarp_core-0.6.2/external/cereal/unittests/boost/CMakeLists.txt +41 -0
  1602. iowarp_core-0.6.2/external/cereal/unittests/boost/boost_variant.cpp +52 -0
  1603. iowarp_core-0.6.2/external/cereal/unittests/boost/boost_variant.hpp +105 -0
  1604. iowarp_core-0.6.2/external/cereal/unittests/chrono.cpp +52 -0
  1605. iowarp_core-0.6.2/external/cereal/unittests/chrono.hpp +105 -0
  1606. iowarp_core-0.6.2/external/cereal/unittests/cmake-config-module.cmake +125 -0
  1607. iowarp_core-0.6.2/external/cereal/unittests/common.hpp +259 -0
  1608. iowarp_core-0.6.2/external/cereal/unittests/complex.cpp +52 -0
  1609. iowarp_core-0.6.2/external/cereal/unittests/complex.hpp +77 -0
  1610. iowarp_core-0.6.2/external/cereal/unittests/cpp17/CMakeLists.txt +39 -0
  1611. iowarp_core-0.6.2/external/cereal/unittests/cpp17/optional.cpp +57 -0
  1612. iowarp_core-0.6.2/external/cereal/unittests/cpp17/optional.hpp +92 -0
  1613. iowarp_core-0.6.2/external/cereal/unittests/cpp17/variant.cpp +57 -0
  1614. iowarp_core-0.6.2/external/cereal/unittests/cpp17/variant.hpp +74 -0
  1615. iowarp_core-0.6.2/external/cereal/unittests/defer.cpp +52 -0
  1616. iowarp_core-0.6.2/external/cereal/unittests/defer.hpp +193 -0
  1617. iowarp_core-0.6.2/external/cereal/unittests/deque.cpp +52 -0
  1618. iowarp_core-0.6.2/external/cereal/unittests/deque.hpp +101 -0
  1619. iowarp_core-0.6.2/external/cereal/unittests/doctest.h +6750 -0
  1620. iowarp_core-0.6.2/external/cereal/unittests/forward_list.cpp +52 -0
  1621. iowarp_core-0.6.2/external/cereal/unittests/forward_list.hpp +95 -0
  1622. iowarp_core-0.6.2/external/cereal/unittests/list.cpp +52 -0
  1623. iowarp_core-0.6.2/external/cereal/unittests/list.hpp +95 -0
  1624. iowarp_core-0.6.2/external/cereal/unittests/load_construct.cpp +52 -0
  1625. iowarp_core-0.6.2/external/cereal/unittests/load_construct.hpp +303 -0
  1626. iowarp_core-0.6.2/external/cereal/unittests/map.cpp +72 -0
  1627. iowarp_core-0.6.2/external/cereal/unittests/map.hpp +169 -0
  1628. iowarp_core-0.6.2/external/cereal/unittests/memory.cpp +72 -0
  1629. iowarp_core-0.6.2/external/cereal/unittests/memory.hpp +148 -0
  1630. iowarp_core-0.6.2/external/cereal/unittests/memory_cycles.cpp +52 -0
  1631. iowarp_core-0.6.2/external/cereal/unittests/memory_cycles.hpp +142 -0
  1632. iowarp_core-0.6.2/external/cereal/unittests/multimap.cpp +52 -0
  1633. iowarp_core-0.6.2/external/cereal/unittests/multimap.hpp +129 -0
  1634. iowarp_core-0.6.2/external/cereal/unittests/multiset.cpp +52 -0
  1635. iowarp_core-0.6.2/external/cereal/unittests/multiset.hpp +134 -0
  1636. iowarp_core-0.6.2/external/cereal/unittests/pair.cpp +51 -0
  1637. iowarp_core-0.6.2/external/cereal/unittests/pair.hpp +92 -0
  1638. iowarp_core-0.6.2/external/cereal/unittests/pod.cpp +62 -0
  1639. iowarp_core-0.6.2/external/cereal/unittests/pod.hpp +215 -0
  1640. iowarp_core-0.6.2/external/cereal/unittests/polymorphic.cpp +74 -0
  1641. iowarp_core-0.6.2/external/cereal/unittests/polymorphic.hpp +634 -0
  1642. iowarp_core-0.6.2/external/cereal/unittests/portability_test.cpp +202 -0
  1643. iowarp_core-0.6.2/external/cereal/unittests/portable_binary_archive.cpp +134 -0
  1644. iowarp_core-0.6.2/external/cereal/unittests/portable_binary_archive.hpp +156 -0
  1645. iowarp_core-0.6.2/external/cereal/unittests/priority_queue.cpp +52 -0
  1646. iowarp_core-0.6.2/external/cereal/unittests/priority_queue.hpp +107 -0
  1647. iowarp_core-0.6.2/external/cereal/unittests/queue.cpp +52 -0
  1648. iowarp_core-0.6.2/external/cereal/unittests/queue.hpp +107 -0
  1649. iowarp_core-0.6.2/external/cereal/unittests/run_portability_test.cmake +16 -0
  1650. iowarp_core-0.6.2/external/cereal/unittests/run_valgrind.sh +10 -0
  1651. iowarp_core-0.6.2/external/cereal/unittests/set.cpp +52 -0
  1652. iowarp_core-0.6.2/external/cereal/unittests/set.hpp +95 -0
  1653. iowarp_core-0.6.2/external/cereal/unittests/stack.cpp +52 -0
  1654. iowarp_core-0.6.2/external/cereal/unittests/stack.hpp +107 -0
  1655. iowarp_core-0.6.2/external/cereal/unittests/structs.cpp +52 -0
  1656. iowarp_core-0.6.2/external/cereal/unittests/structs.hpp +68 -0
  1657. iowarp_core-0.6.2/external/cereal/unittests/structs_minimal.cpp +52 -0
  1658. iowarp_core-0.6.2/external/cereal/unittests/structs_minimal.hpp +254 -0
  1659. iowarp_core-0.6.2/external/cereal/unittests/structs_specialized.cpp +52 -0
  1660. iowarp_core-0.6.2/external/cereal/unittests/structs_specialized.hpp +465 -0
  1661. iowarp_core-0.6.2/external/cereal/unittests/tuple.cpp +52 -0
  1662. iowarp_core-0.6.2/external/cereal/unittests/tuple.hpp +101 -0
  1663. iowarp_core-0.6.2/external/cereal/unittests/unordered_loads.cpp +42 -0
  1664. iowarp_core-0.6.2/external/cereal/unittests/unordered_loads.hpp +149 -0
  1665. iowarp_core-0.6.2/external/cereal/unittests/unordered_map.cpp +52 -0
  1666. iowarp_core-0.6.2/external/cereal/unittests/unordered_map.hpp +124 -0
  1667. iowarp_core-0.6.2/external/cereal/unittests/unordered_multimap.cpp +52 -0
  1668. iowarp_core-0.6.2/external/cereal/unittests/unordered_multimap.hpp +155 -0
  1669. iowarp_core-0.6.2/external/cereal/unittests/unordered_multiset.cpp +52 -0
  1670. iowarp_core-0.6.2/external/cereal/unittests/unordered_multiset.hpp +134 -0
  1671. iowarp_core-0.6.2/external/cereal/unittests/unordered_set.cpp +52 -0
  1672. iowarp_core-0.6.2/external/cereal/unittests/unordered_set.hpp +114 -0
  1673. iowarp_core-0.6.2/external/cereal/unittests/user_data_adapters.cpp +52 -0
  1674. iowarp_core-0.6.2/external/cereal/unittests/user_data_adapters.hpp +120 -0
  1675. iowarp_core-0.6.2/external/cereal/unittests/valarray.cpp +52 -0
  1676. iowarp_core-0.6.2/external/cereal/unittests/valarray.hpp +101 -0
  1677. iowarp_core-0.6.2/external/cereal/unittests/vector.cpp +52 -0
  1678. iowarp_core-0.6.2/external/cereal/unittests/vector.hpp +110 -0
  1679. iowarp_core-0.6.2/external/cereal/unittests/versioning.cpp +74 -0
  1680. iowarp_core-0.6.2/external/cereal/unittests/versioning.hpp +217 -0
  1681. iowarp_core-0.6.2/external/nanobind/.github/ISSUE_TEMPLATE/all-other.yml +23 -0
  1682. iowarp_core-0.6.2/external/nanobind/.github/ISSUE_TEMPLATE/bug-report.yml +33 -0
  1683. iowarp_core-0.6.2/external/nanobind/.github/workflows/ci.yml +286 -0
  1684. iowarp_core-0.6.2/external/nanobind/.github/workflows/nvcc-win.yml +45 -0
  1685. iowarp_core-0.6.2/external/nanobind/.readthedocs.yaml +18 -0
  1686. iowarp_core-0.6.2/external/nanobind/CMakeLists.txt +160 -0
  1687. iowarp_core-0.6.2/external/nanobind/LICENSE +26 -0
  1688. iowarp_core-0.6.2/external/nanobind/README.md +59 -0
  1689. iowarp_core-0.6.2/external/nanobind/cmake/collect-symbols-pypy.py +28 -0
  1690. iowarp_core-0.6.2/external/nanobind/cmake/collect-symbols.py +42 -0
  1691. iowarp_core-0.6.2/external/nanobind/cmake/darwin-ld-cpython.sym +932 -0
  1692. iowarp_core-0.6.2/external/nanobind/cmake/darwin-ld-pypy.sym +965 -0
  1693. iowarp_core-0.6.2/external/nanobind/cmake/darwin-python-path.py +15 -0
  1694. iowarp_core-0.6.2/external/nanobind/cmake/nanobind-config.cmake +716 -0
  1695. iowarp_core-0.6.2/external/nanobind/docs/api_bazel.rst +185 -0
  1696. iowarp_core-0.6.2/external/nanobind/docs/api_cmake.rst +533 -0
  1697. iowarp_core-0.6.2/external/nanobind/docs/api_core.rst +3275 -0
  1698. iowarp_core-0.6.2/external/nanobind/docs/api_extra.rst +1581 -0
  1699. iowarp_core-0.6.2/external/nanobind/docs/basics.rst +481 -0
  1700. iowarp_core-0.6.2/external/nanobind/docs/bazel.rst +198 -0
  1701. iowarp_core-0.6.2/external/nanobind/docs/benchmark.rst +174 -0
  1702. iowarp_core-0.6.2/external/nanobind/docs/building.rst +118 -0
  1703. iowarp_core-0.6.2/external/nanobind/docs/changelog.rst +1695 -0
  1704. iowarp_core-0.6.2/external/nanobind/docs/classes.rst +1143 -0
  1705. iowarp_core-0.6.2/external/nanobind/docs/conf.py +250 -0
  1706. iowarp_core-0.6.2/external/nanobind/docs/cppyy.h +16 -0
  1707. iowarp_core-0.6.2/external/nanobind/docs/eigen.rst +180 -0
  1708. iowarp_core-0.6.2/external/nanobind/docs/exceptions.rst +293 -0
  1709. iowarp_core-0.6.2/external/nanobind/docs/exchanging.rst +423 -0
  1710. iowarp_core-0.6.2/external/nanobind/docs/faq.rst +398 -0
  1711. iowarp_core-0.6.2/external/nanobind/docs/free_threaded.rst +326 -0
  1712. iowarp_core-0.6.2/external/nanobind/docs/functions.rst +609 -0
  1713. iowarp_core-0.6.2/external/nanobind/docs/images/binding-dark.svg +122 -0
  1714. iowarp_core-0.6.2/external/nanobind/docs/images/binding-light.svg +112 -0
  1715. iowarp_core-0.6.2/external/nanobind/docs/images/caster-dark.svg +118 -0
  1716. iowarp_core-0.6.2/external/nanobind/docs/images/caster-light.svg +108 -0
  1717. iowarp_core-0.6.2/external/nanobind/docs/images/logo.jpg +0 -0
  1718. iowarp_core-0.6.2/external/nanobind/docs/images/perf.svg +1979 -0
  1719. iowarp_core-0.6.2/external/nanobind/docs/images/sizes.svg +1909 -0
  1720. iowarp_core-0.6.2/external/nanobind/docs/images/times.svg +1859 -0
  1721. iowarp_core-0.6.2/external/nanobind/docs/images/wrapper-dark.svg +102 -0
  1722. iowarp_core-0.6.2/external/nanobind/docs/images/wrapper-light.svg +92 -0
  1723. iowarp_core-0.6.2/external/nanobind/docs/index.rst +148 -0
  1724. iowarp_core-0.6.2/external/nanobind/docs/installing.rst +48 -0
  1725. iowarp_core-0.6.2/external/nanobind/docs/lowlevel.rst +323 -0
  1726. iowarp_core-0.6.2/external/nanobind/docs/meson.rst +135 -0
  1727. iowarp_core-0.6.2/external/nanobind/docs/microbenchmark.ipynb +447 -0
  1728. iowarp_core-0.6.2/external/nanobind/docs/ndarray.rst +786 -0
  1729. iowarp_core-0.6.2/external/nanobind/docs/ndarray_index.rst +13 -0
  1730. iowarp_core-0.6.2/external/nanobind/docs/ownership.rst +400 -0
  1731. iowarp_core-0.6.2/external/nanobind/docs/ownership_adv.rst +398 -0
  1732. iowarp_core-0.6.2/external/nanobind/docs/packaging.rst +332 -0
  1733. iowarp_core-0.6.2/external/nanobind/docs/porting.rst +361 -0
  1734. iowarp_core-0.6.2/external/nanobind/docs/pypy.rst +23 -0
  1735. iowarp_core-0.6.2/external/nanobind/docs/refleaks.rst +485 -0
  1736. iowarp_core-0.6.2/external/nanobind/docs/release.rst +25 -0
  1737. iowarp_core-0.6.2/external/nanobind/docs/requirements.txt +5 -0
  1738. iowarp_core-0.6.2/external/nanobind/docs/typing.rst +719 -0
  1739. iowarp_core-0.6.2/external/nanobind/docs/utilities.rst +59 -0
  1740. iowarp_core-0.6.2/external/nanobind/docs/why.rst +252 -0
  1741. iowarp_core-0.6.2/external/nanobind/ext/robin_map/.clang-format +1 -0
  1742. iowarp_core-0.6.2/external/nanobind/ext/robin_map/.codecov.yml +5 -0
  1743. iowarp_core-0.6.2/external/nanobind/ext/robin_map/.github/workflows/ci.yml +136 -0
  1744. iowarp_core-0.6.2/external/nanobind/ext/robin_map/CMakeLists.txt +87 -0
  1745. iowarp_core-0.6.2/external/nanobind/ext/robin_map/LICENSE +21 -0
  1746. iowarp_core-0.6.2/external/nanobind/ext/robin_map/README.md +521 -0
  1747. iowarp_core-0.6.2/external/nanobind/ext/robin_map/cmake/tsl-robin-mapConfig.cmake.in +9 -0
  1748. iowarp_core-0.6.2/external/nanobind/ext/robin_map/doxygen.conf +2483 -0
  1749. iowarp_core-0.6.2/external/nanobind/ext/robin_map/include/tsl/robin_growth_policy.h +415 -0
  1750. iowarp_core-0.6.2/external/nanobind/ext/robin_map/include/tsl/robin_hash.h +1589 -0
  1751. iowarp_core-0.6.2/external/nanobind/ext/robin_map/include/tsl/robin_map.h +815 -0
  1752. iowarp_core-0.6.2/external/nanobind/ext/robin_map/include/tsl/robin_set.h +668 -0
  1753. iowarp_core-0.6.2/external/nanobind/ext/robin_map/tests/CMakeLists.txt +26 -0
  1754. iowarp_core-0.6.2/external/nanobind/ext/robin_map/tests/custom_allocator_tests.cpp +138 -0
  1755. iowarp_core-0.6.2/external/nanobind/ext/robin_map/tests/main.cpp +26 -0
  1756. iowarp_core-0.6.2/external/nanobind/ext/robin_map/tests/policy_tests.cpp +97 -0
  1757. iowarp_core-0.6.2/external/nanobind/ext/robin_map/tests/robin_map_tests.cpp +1462 -0
  1758. iowarp_core-0.6.2/external/nanobind/ext/robin_map/tests/robin_set_tests.cpp +174 -0
  1759. iowarp_core-0.6.2/external/nanobind/ext/robin_map/tests/utils.h +443 -0
  1760. iowarp_core-0.6.2/external/nanobind/ext/robin_map/tsl-robin-map.natvis +78 -0
  1761. iowarp_core-0.6.2/external/nanobind/include/nanobind/eigen/dense.h +474 -0
  1762. iowarp_core-0.6.2/external/nanobind/include/nanobind/eigen/sparse.h +290 -0
  1763. iowarp_core-0.6.2/external/nanobind/include/nanobind/eval.h +61 -0
  1764. iowarp_core-0.6.2/external/nanobind/include/nanobind/intrusive/counter.h +261 -0
  1765. iowarp_core-0.6.2/external/nanobind/include/nanobind/intrusive/counter.inl +148 -0
  1766. iowarp_core-0.6.2/external/nanobind/include/nanobind/intrusive/ref.h +153 -0
  1767. iowarp_core-0.6.2/external/nanobind/include/nanobind/make_iterator.h +160 -0
  1768. iowarp_core-0.6.2/external/nanobind/include/nanobind/nanobind.h +61 -0
  1769. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_accessor.h +258 -0
  1770. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_attr.h +444 -0
  1771. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_call.h +152 -0
  1772. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_cast.h +764 -0
  1773. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_class.h +858 -0
  1774. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_defs.h +249 -0
  1775. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_descr.h +155 -0
  1776. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_enums.h +26 -0
  1777. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_error.h +152 -0
  1778. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_func.h +414 -0
  1779. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_lib.h +583 -0
  1780. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_misc.h +125 -0
  1781. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_python.h +61 -0
  1782. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_traits.h +220 -0
  1783. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_tuple.h +80 -0
  1784. iowarp_core-0.6.2/external/nanobind/include/nanobind/nb_types.h +1011 -0
  1785. iowarp_core-0.6.2/external/nanobind/include/nanobind/ndarray.h +597 -0
  1786. iowarp_core-0.6.2/external/nanobind/include/nanobind/operators.h +149 -0
  1787. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/array.h +22 -0
  1788. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/bind_map.h +181 -0
  1789. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/bind_vector.h +225 -0
  1790. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/chrono.h +239 -0
  1791. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/complex.h +54 -0
  1792. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/detail/chrono.h +299 -0
  1793. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/detail/nb_array.h +67 -0
  1794. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/detail/nb_dict.h +95 -0
  1795. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/detail/nb_list.h +83 -0
  1796. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/detail/nb_optional.h +49 -0
  1797. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/detail/nb_set.h +81 -0
  1798. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/detail/traits.h +92 -0
  1799. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/filesystem.h +93 -0
  1800. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/function.h +95 -0
  1801. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/list.h +22 -0
  1802. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/map.h +23 -0
  1803. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/optional.h +27 -0
  1804. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/pair.h +92 -0
  1805. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/set.h +24 -0
  1806. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/shared_ptr.h +137 -0
  1807. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/string.h +39 -0
  1808. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/string_view.h +39 -0
  1809. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/tuple.h +109 -0
  1810. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/unique_ptr.h +178 -0
  1811. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/unordered_map.h +23 -0
  1812. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/unordered_set.h +24 -0
  1813. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/variant.h +113 -0
  1814. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/vector.h +22 -0
  1815. iowarp_core-0.6.2/external/nanobind/include/nanobind/stl/wstring.h +39 -0
  1816. iowarp_core-0.6.2/external/nanobind/include/nanobind/trampoline.h +76 -0
  1817. iowarp_core-0.6.2/external/nanobind/include/nanobind/typing.h +36 -0
  1818. iowarp_core-0.6.2/external/nanobind/pyproject.toml +58 -0
  1819. iowarp_core-0.6.2/external/nanobind/src/__init__.py +26 -0
  1820. iowarp_core-0.6.2/external/nanobind/src/__main__.py +36 -0
  1821. iowarp_core-0.6.2/external/nanobind/src/buffer.h +166 -0
  1822. iowarp_core-0.6.2/external/nanobind/src/common.cpp +1290 -0
  1823. iowarp_core-0.6.2/external/nanobind/src/error.cpp +325 -0
  1824. iowarp_core-0.6.2/external/nanobind/src/hash.h +33 -0
  1825. iowarp_core-0.6.2/external/nanobind/src/implicit.cpp +75 -0
  1826. iowarp_core-0.6.2/external/nanobind/src/nb_abi.h +102 -0
  1827. iowarp_core-0.6.2/external/nanobind/src/nb_combined.cpp +85 -0
  1828. iowarp_core-0.6.2/external/nanobind/src/nb_enum.cpp +304 -0
  1829. iowarp_core-0.6.2/external/nanobind/src/nb_ft.cpp +56 -0
  1830. iowarp_core-0.6.2/external/nanobind/src/nb_ft.h +39 -0
  1831. iowarp_core-0.6.2/external/nanobind/src/nb_func.cpp +1584 -0
  1832. iowarp_core-0.6.2/external/nanobind/src/nb_internals.cpp +569 -0
  1833. iowarp_core-0.6.2/external/nanobind/src/nb_internals.h +549 -0
  1834. iowarp_core-0.6.2/external/nanobind/src/nb_ndarray.cpp +1071 -0
  1835. iowarp_core-0.6.2/external/nanobind/src/nb_static_property.cpp +76 -0
  1836. iowarp_core-0.6.2/external/nanobind/src/nb_type.cpp +2272 -0
  1837. iowarp_core-0.6.2/external/nanobind/src/stubgen.py +1536 -0
  1838. iowarp_core-0.6.2/external/nanobind/src/trampoline.cpp +188 -0
  1839. iowarp_core-0.6.2/external/nanobind/src/version.py +131 -0
  1840. iowarp_core-0.6.2/external/nanobind/tests/CMakeLists.txt +226 -0
  1841. iowarp_core-0.6.2/external/nanobind/tests/common.py +42 -0
  1842. iowarp_core-0.6.2/external/nanobind/tests/conftest.py +6 -0
  1843. iowarp_core-0.6.2/external/nanobind/tests/inter_module.cpp +13 -0
  1844. iowarp_core-0.6.2/external/nanobind/tests/inter_module.h +15 -0
  1845. iowarp_core-0.6.2/external/nanobind/tests/object_py.h +28 -0
  1846. iowarp_core-0.6.2/external/nanobind/tests/pattern_file.nb +19 -0
  1847. iowarp_core-0.6.2/external/nanobind/tests/py_recursive_stub_test/__init__.py +3 -0
  1848. iowarp_core-0.6.2/external/nanobind/tests/py_recursive_stub_test/__init__.pyi.ref +4 -0
  1849. iowarp_core-0.6.2/external/nanobind/tests/py_recursive_stub_test/bar.py +1 -0
  1850. iowarp_core-0.6.2/external/nanobind/tests/py_recursive_stub_test/bar.pyi.ref +3 -0
  1851. iowarp_core-0.6.2/external/nanobind/tests/py_stub_test.py +68 -0
  1852. iowarp_core-0.6.2/external/nanobind/tests/py_stub_test.pyi.ref +48 -0
  1853. iowarp_core-0.6.2/external/nanobind/tests/test_accessor.cpp +39 -0
  1854. iowarp_core-0.6.2/external/nanobind/tests/test_accessor.py +41 -0
  1855. iowarp_core-0.6.2/external/nanobind/tests/test_callbacks.cpp +137 -0
  1856. iowarp_core-0.6.2/external/nanobind/tests/test_callbacks.py +58 -0
  1857. iowarp_core-0.6.2/external/nanobind/tests/test_chrono.cpp +93 -0
  1858. iowarp_core-0.6.2/external/nanobind/tests/test_chrono.py +340 -0
  1859. iowarp_core-0.6.2/external/nanobind/tests/test_classes.cpp +750 -0
  1860. iowarp_core-0.6.2/external/nanobind/tests/test_classes.py +983 -0
  1861. iowarp_core-0.6.2/external/nanobind/tests/test_classes_ext.pyi.ref +373 -0
  1862. iowarp_core-0.6.2/external/nanobind/tests/test_eigen.cpp +281 -0
  1863. iowarp_core-0.6.2/external/nanobind/tests/test_eigen.py +468 -0
  1864. iowarp_core-0.6.2/external/nanobind/tests/test_enum.cpp +88 -0
  1865. iowarp_core-0.6.2/external/nanobind/tests/test_enum.py +189 -0
  1866. iowarp_core-0.6.2/external/nanobind/tests/test_enum_ext.pyi.ref +122 -0
  1867. iowarp_core-0.6.2/external/nanobind/tests/test_eval.cpp +87 -0
  1868. iowarp_core-0.6.2/external/nanobind/tests/test_eval.py +44 -0
  1869. iowarp_core-0.6.2/external/nanobind/tests/test_exception.cpp +62 -0
  1870. iowarp_core-0.6.2/external/nanobind/tests/test_exception.py +104 -0
  1871. iowarp_core-0.6.2/external/nanobind/tests/test_functions.cpp +523 -0
  1872. iowarp_core-0.6.2/external/nanobind/tests/test_functions.py +792 -0
  1873. iowarp_core-0.6.2/external/nanobind/tests/test_functions_ext.pyi.ref +263 -0
  1874. iowarp_core-0.6.2/external/nanobind/tests/test_holders.cpp +261 -0
  1875. iowarp_core-0.6.2/external/nanobind/tests/test_holders.py +449 -0
  1876. iowarp_core-0.6.2/external/nanobind/tests/test_inter_module.py +89 -0
  1877. iowarp_core-0.6.2/external/nanobind/tests/test_inter_module_1.cpp +8 -0
  1878. iowarp_core-0.6.2/external/nanobind/tests/test_inter_module_2.cpp +10 -0
  1879. iowarp_core-0.6.2/external/nanobind/tests/test_intrusive.cpp +66 -0
  1880. iowarp_core-0.6.2/external/nanobind/tests/test_intrusive.py +58 -0
  1881. iowarp_core-0.6.2/external/nanobind/tests/test_intrusive_impl.cpp +1 -0
  1882. iowarp_core-0.6.2/external/nanobind/tests/test_issue.cpp +68 -0
  1883. iowarp_core-0.6.2/external/nanobind/tests/test_issue.py +37 -0
  1884. iowarp_core-0.6.2/external/nanobind/tests/test_jax.cpp +25 -0
  1885. iowarp_core-0.6.2/external/nanobind/tests/test_jax.py +97 -0
  1886. iowarp_core-0.6.2/external/nanobind/tests/test_jax_ext.pyi.ref +4 -0
  1887. iowarp_core-0.6.2/external/nanobind/tests/test_make_iterator.cpp +102 -0
  1888. iowarp_core-0.6.2/external/nanobind/tests/test_make_iterator.py +48 -0
  1889. iowarp_core-0.6.2/external/nanobind/tests/test_make_iterator_ext.pyi.ref +33 -0
  1890. iowarp_core-0.6.2/external/nanobind/tests/test_ndarray.cpp +559 -0
  1891. iowarp_core-0.6.2/external/nanobind/tests/test_ndarray.py +1036 -0
  1892. iowarp_core-0.6.2/external/nanobind/tests/test_ndarray_ext.pyi.ref +215 -0
  1893. iowarp_core-0.6.2/external/nanobind/tests/test_stl.cpp +531 -0
  1894. iowarp_core-0.6.2/external/nanobind/tests/test_stl.py +884 -0
  1895. iowarp_core-0.6.2/external/nanobind/tests/test_stl_bind_map.cpp +94 -0
  1896. iowarp_core-0.6.2/external/nanobind/tests/test_stl_bind_map.py +222 -0
  1897. iowarp_core-0.6.2/external/nanobind/tests/test_stl_bind_vector.cpp +56 -0
  1898. iowarp_core-0.6.2/external/nanobind/tests/test_stl_bind_vector.py +188 -0
  1899. iowarp_core-0.6.2/external/nanobind/tests/test_stl_ext.pyi.ref +274 -0
  1900. iowarp_core-0.6.2/external/nanobind/tests/test_stubs.py +74 -0
  1901. iowarp_core-0.6.2/external/nanobind/tests/test_tensorflow.cpp +27 -0
  1902. iowarp_core-0.6.2/external/nanobind/tests/test_tensorflow.py +97 -0
  1903. iowarp_core-0.6.2/external/nanobind/tests/test_tensorflow_ext.pyi.ref +4 -0
  1904. iowarp_core-0.6.2/external/nanobind/tests/test_thread.cpp +93 -0
  1905. iowarp_core-0.6.2/external/nanobind/tests/test_thread.py +118 -0
  1906. iowarp_core-0.6.2/external/nanobind/tests/test_typing.cpp +124 -0
  1907. iowarp_core-0.6.2/external/nanobind/tests/test_typing.py +13 -0
  1908. iowarp_core-0.6.2/external/nanobind/tests/test_typing_ext.pyi.ref +76 -0
  1909. iowarp_core-0.6.2/external/yaml-cpp/.bazelignore +1 -0
  1910. iowarp_core-0.6.2/external/yaml-cpp/.clang-format +47 -0
  1911. iowarp_core-0.6.2/external/yaml-cpp/.codedocs +50 -0
  1912. iowarp_core-0.6.2/external/yaml-cpp/.github/dependabot.yml +11 -0
  1913. iowarp_core-0.6.2/external/yaml-cpp/.github/workflows/build.yml +141 -0
  1914. iowarp_core-0.6.2/external/yaml-cpp/.github/workflows/bzlmod-archive.yml +19 -0
  1915. iowarp_core-0.6.2/external/yaml-cpp/BUILD.bazel +21 -0
  1916. iowarp_core-0.6.2/external/yaml-cpp/CMakeLists.txt +213 -0
  1917. iowarp_core-0.6.2/external/yaml-cpp/CONTRIBUTING.md +26 -0
  1918. iowarp_core-0.6.2/external/yaml-cpp/LICENSE +19 -0
  1919. iowarp_core-0.6.2/external/yaml-cpp/MODULE.bazel +14 -0
  1920. iowarp_core-0.6.2/external/yaml-cpp/MODULE.bazel.lock +114 -0
  1921. iowarp_core-0.6.2/external/yaml-cpp/README.md +86 -0
  1922. iowarp_core-0.6.2/external/yaml-cpp/SECURITY.md +13 -0
  1923. iowarp_core-0.6.2/external/yaml-cpp/cmake_uninstall.cmake.in +21 -0
  1924. iowarp_core-0.6.2/external/yaml-cpp/docs/Breaking-Changes.md +52 -0
  1925. iowarp_core-0.6.2/external/yaml-cpp/docs/How-To-Emit-YAML.md +226 -0
  1926. iowarp_core-0.6.2/external/yaml-cpp/docs/How-To-Parse-A-Document-(Old-API).md +265 -0
  1927. iowarp_core-0.6.2/external/yaml-cpp/docs/Strings.md +18 -0
  1928. iowarp_core-0.6.2/external/yaml-cpp/docs/Tutorial.md +201 -0
  1929. iowarp_core-0.6.2/external/yaml-cpp/docs/_config.yml +1 -0
  1930. iowarp_core-0.6.2/external/yaml-cpp/docs/index.md +1 -0
  1931. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/anchor.h +17 -0
  1932. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/binary.h +71 -0
  1933. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/contrib/anchordict.h +40 -0
  1934. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/contrib/graphbuilder.h +149 -0
  1935. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/depthguard.h +77 -0
  1936. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/dll.h +59 -0
  1937. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/emitfromevents.h +58 -0
  1938. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/emitter.h +295 -0
  1939. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/emitterdef.h +16 -0
  1940. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/emittermanip.h +144 -0
  1941. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/emitterstyle.h +17 -0
  1942. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/eventhandler.h +45 -0
  1943. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/exceptions.h +305 -0
  1944. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/fptostring.h +15 -0
  1945. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/mark.h +29 -0
  1946. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/convert.h +472 -0
  1947. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/detail/impl.h +235 -0
  1948. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/detail/iterator.h +96 -0
  1949. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h +27 -0
  1950. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/detail/memory.h +48 -0
  1951. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/detail/node.h +177 -0
  1952. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/detail/node_data.h +127 -0
  1953. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h +181 -0
  1954. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h +98 -0
  1955. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/emit.h +32 -0
  1956. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/impl.h +387 -0
  1957. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/iterator.h +34 -0
  1958. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/node.h +148 -0
  1959. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/parse.h +78 -0
  1960. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/ptr.h +28 -0
  1961. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/node/type.h +17 -0
  1962. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/noexcept.h +18 -0
  1963. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/null.h +26 -0
  1964. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/ostream_wrapper.h +76 -0
  1965. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/parser.h +90 -0
  1966. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/stlemitter.h +50 -0
  1967. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/traits.h +136 -0
  1968. iowarp_core-0.6.2/external/yaml-cpp/include/yaml-cpp/yaml.h +24 -0
  1969. iowarp_core-0.6.2/external/yaml-cpp/install.txt +24 -0
  1970. iowarp_core-0.6.2/external/yaml-cpp/src/binary.cpp +100 -0
  1971. iowarp_core-0.6.2/external/yaml-cpp/src/collectionstack.h +41 -0
  1972. iowarp_core-0.6.2/external/yaml-cpp/src/contrib/dragonbox.h +4196 -0
  1973. iowarp_core-0.6.2/external/yaml-cpp/src/contrib/graphbuilder.cpp +16 -0
  1974. iowarp_core-0.6.2/external/yaml-cpp/src/contrib/graphbuilderadapter.cpp +94 -0
  1975. iowarp_core-0.6.2/external/yaml-cpp/src/contrib/graphbuilderadapter.h +86 -0
  1976. iowarp_core-0.6.2/external/yaml-cpp/src/contrib/yaml-cpp.natvis +32 -0
  1977. iowarp_core-0.6.2/external/yaml-cpp/src/contrib/yaml-cpp.natvis.md +9 -0
  1978. iowarp_core-0.6.2/external/yaml-cpp/src/convert.cpp +74 -0
  1979. iowarp_core-0.6.2/external/yaml-cpp/src/depthguard.cpp +9 -0
  1980. iowarp_core-0.6.2/external/yaml-cpp/src/directives.cpp +17 -0
  1981. iowarp_core-0.6.2/external/yaml-cpp/src/directives.h +29 -0
  1982. iowarp_core-0.6.2/external/yaml-cpp/src/emit.cpp +25 -0
  1983. iowarp_core-0.6.2/external/yaml-cpp/src/emitfromevents.cpp +129 -0
  1984. iowarp_core-0.6.2/external/yaml-cpp/src/emitter.cpp +977 -0
  1985. iowarp_core-0.6.2/external/yaml-cpp/src/emitterstate.cpp +400 -0
  1986. iowarp_core-0.6.2/external/yaml-cpp/src/emitterstate.h +216 -0
  1987. iowarp_core-0.6.2/external/yaml-cpp/src/emitterutils.cpp +499 -0
  1988. iowarp_core-0.6.2/external/yaml-cpp/src/emitterutils.h +55 -0
  1989. iowarp_core-0.6.2/external/yaml-cpp/src/exceptions.cpp +20 -0
  1990. iowarp_core-0.6.2/external/yaml-cpp/src/exp.cpp +137 -0
  1991. iowarp_core-0.6.2/external/yaml-cpp/src/exp.h +226 -0
  1992. iowarp_core-0.6.2/external/yaml-cpp/src/fptostring.cpp +238 -0
  1993. iowarp_core-0.6.2/external/yaml-cpp/src/indentation.h +40 -0
  1994. iowarp_core-0.6.2/external/yaml-cpp/src/memory.cpp +34 -0
  1995. iowarp_core-0.6.2/external/yaml-cpp/src/node.cpp +12 -0
  1996. iowarp_core-0.6.2/external/yaml-cpp/src/node_data.cpp +325 -0
  1997. iowarp_core-0.6.2/external/yaml-cpp/src/nodebuilder.cpp +134 -0
  1998. iowarp_core-0.6.2/external/yaml-cpp/src/nodebuilder.h +74 -0
  1999. iowarp_core-0.6.2/external/yaml-cpp/src/nodeevents.cpp +98 -0
  2000. iowarp_core-0.6.2/external/yaml-cpp/src/nodeevents.h +68 -0
  2001. iowarp_core-0.6.2/external/yaml-cpp/src/null.cpp +17 -0
  2002. iowarp_core-0.6.2/external/yaml-cpp/src/ostream_wrapper.cpp +62 -0
  2003. iowarp_core-0.6.2/external/yaml-cpp/src/parse.cpp +72 -0
  2004. iowarp_core-0.6.2/external/yaml-cpp/src/parser.cpp +120 -0
  2005. iowarp_core-0.6.2/external/yaml-cpp/src/ptr_vector.h +45 -0
  2006. iowarp_core-0.6.2/external/yaml-cpp/src/regex_yaml.cpp +43 -0
  2007. iowarp_core-0.6.2/external/yaml-cpp/src/regex_yaml.h +88 -0
  2008. iowarp_core-0.6.2/external/yaml-cpp/src/regeximpl.h +189 -0
  2009. iowarp_core-0.6.2/external/yaml-cpp/src/scanner.cpp +415 -0
  2010. iowarp_core-0.6.2/external/yaml-cpp/src/scanner.h +189 -0
  2011. iowarp_core-0.6.2/external/yaml-cpp/src/scanscalar.cpp +251 -0
  2012. iowarp_core-0.6.2/external/yaml-cpp/src/scanscalar.h +63 -0
  2013. iowarp_core-0.6.2/external/yaml-cpp/src/scantag.cpp +81 -0
  2014. iowarp_core-0.6.2/external/yaml-cpp/src/scantag.h +19 -0
  2015. iowarp_core-0.6.2/external/yaml-cpp/src/scantoken.cpp +444 -0
  2016. iowarp_core-0.6.2/external/yaml-cpp/src/setting.h +100 -0
  2017. iowarp_core-0.6.2/external/yaml-cpp/src/simplekey.cpp +132 -0
  2018. iowarp_core-0.6.2/external/yaml-cpp/src/singledocparser.cpp +434 -0
  2019. iowarp_core-0.6.2/external/yaml-cpp/src/singledocparser.h +71 -0
  2020. iowarp_core-0.6.2/external/yaml-cpp/src/stream.cpp +463 -0
  2021. iowarp_core-0.6.2/external/yaml-cpp/src/stream.h +83 -0
  2022. iowarp_core-0.6.2/external/yaml-cpp/src/streamcharsource.h +50 -0
  2023. iowarp_core-0.6.2/external/yaml-cpp/src/stringsource.h +48 -0
  2024. iowarp_core-0.6.2/external/yaml-cpp/src/tag.cpp +50 -0
  2025. iowarp_core-0.6.2/external/yaml-cpp/src/tag.h +33 -0
  2026. iowarp_core-0.6.2/external/yaml-cpp/src/token.h +71 -0
  2027. iowarp_core-0.6.2/external/yaml-cpp/test/BUILD.bazel +28 -0
  2028. iowarp_core-0.6.2/external/yaml-cpp/test/CMakeLists.txt +63 -0
  2029. iowarp_core-0.6.2/external/yaml-cpp/test/binary_test.cpp +14 -0
  2030. iowarp_core-0.6.2/external/yaml-cpp/test/cmake/CMakeLists.txt +21 -0
  2031. iowarp_core-0.6.2/external/yaml-cpp/test/cmake/main.cpp +3 -0
  2032. iowarp_core-0.6.2/external/yaml-cpp/test/create-emitter-tests.py +223 -0
  2033. iowarp_core-0.6.2/external/yaml-cpp/test/fptostring_test.cpp +242 -0
  2034. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/.clang-format +4 -0
  2035. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/.github/ISSUE_TEMPLATE/00-bug_report.yml +53 -0
  2036. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/.github/ISSUE_TEMPLATE/10-feature_request.yml +33 -0
  2037. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/.github/ISSUE_TEMPLATE/config.yml +5 -0
  2038. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/.github/workflows/gtest-ci.yml +43 -0
  2039. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/BUILD.bazel +218 -0
  2040. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/CMakeLists.txt +39 -0
  2041. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/CONTRIBUTING.md +131 -0
  2042. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/CONTRIBUTORS +65 -0
  2043. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/LICENSE +28 -0
  2044. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/README.md +117 -0
  2045. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/WORKSPACE +40 -0
  2046. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/ci/linux-presubmit.sh +134 -0
  2047. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/ci/macos-presubmit.sh +75 -0
  2048. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/ci/windows-presubmit.bat +56 -0
  2049. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/_config.yml +1 -0
  2050. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/_data/navigation.yml +43 -0
  2051. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/_layouts/default.html +58 -0
  2052. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/_sass/main.scss +200 -0
  2053. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/advanced.md +2407 -0
  2054. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/assets/css/style.scss +5 -0
  2055. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/community_created_documentation.md +7 -0
  2056. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/faq.md +692 -0
  2057. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/gmock_cheat_sheet.md +241 -0
  2058. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/gmock_cook_book.md +4343 -0
  2059. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/gmock_faq.md +390 -0
  2060. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/gmock_for_dummies.md +700 -0
  2061. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/index.md +22 -0
  2062. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/pkgconfig.md +148 -0
  2063. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/platforms.md +35 -0
  2064. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/primer.md +483 -0
  2065. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/quickstart-bazel.md +146 -0
  2066. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/quickstart-cmake.md +156 -0
  2067. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/reference/actions.md +115 -0
  2068. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/reference/assertions.md +633 -0
  2069. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/reference/matchers.md +290 -0
  2070. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/reference/mocking.md +589 -0
  2071. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/reference/testing.md +1431 -0
  2072. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/docs/samples.md +22 -0
  2073. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/CMakeLists.txt +218 -0
  2074. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/README.md +40 -0
  2075. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/cmake/gmock.pc.in +10 -0
  2076. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/cmake/gmock_main.pc.in +10 -0
  2077. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/docs/README.md +4 -0
  2078. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock-actions.h +2302 -0
  2079. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock-cardinalities.h +159 -0
  2080. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock-function-mocker.h +517 -0
  2081. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock-matchers.h +5620 -0
  2082. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock-more-actions.h +662 -0
  2083. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock-more-matchers.h +122 -0
  2084. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock-nice-strict.h +277 -0
  2085. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock-spec-builders.h +2111 -0
  2086. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/gmock.h +96 -0
  2087. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/internal/custom/README.md +18 -0
  2088. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +7 -0
  2089. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/internal/custom/gmock-matchers.h +37 -0
  2090. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/internal/custom/gmock-port.h +40 -0
  2091. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/internal/gmock-internal-utils.h +490 -0
  2092. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/internal/gmock-port.h +139 -0
  2093. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/include/gmock/internal/gmock-pp.h +279 -0
  2094. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/src/gmock-all.cc +46 -0
  2095. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/src/gmock-cardinalities.cc +155 -0
  2096. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/src/gmock-internal-utils.cc +251 -0
  2097. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/src/gmock-matchers.cc +479 -0
  2098. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/src/gmock-spec-builders.cc +795 -0
  2099. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/src/gmock.cc +223 -0
  2100. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/src/gmock_main.cc +72 -0
  2101. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/BUILD.bazel +118 -0
  2102. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-actions_test.cc +2167 -0
  2103. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-cardinalities_test.cc +422 -0
  2104. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-function-mocker_test.cc +1004 -0
  2105. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-internal-utils_test.cc +765 -0
  2106. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-matchers-arithmetic_test.cc +1517 -0
  2107. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-matchers-comparisons_test.cc +2359 -0
  2108. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-matchers-containers_test.cc +3129 -0
  2109. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-matchers-misc_test.cc +1819 -0
  2110. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-matchers_test.h +192 -0
  2111. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-more-actions_test.cc +1550 -0
  2112. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-nice-strict_test.cc +541 -0
  2113. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-port_test.cc +42 -0
  2114. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-pp-string_test.cc +205 -0
  2115. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-pp_test.cc +83 -0
  2116. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock-spec-builders_test.cc +2620 -0
  2117. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_all_test.cc +49 -0
  2118. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_ex_test.cc +78 -0
  2119. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_leak_test.py +104 -0
  2120. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_leak_test_.cc +99 -0
  2121. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_link2_test.cc +38 -0
  2122. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_link_test.cc +38 -0
  2123. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_link_test.h +689 -0
  2124. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_output_test.py +186 -0
  2125. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_output_test_.cc +291 -0
  2126. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_output_test_golden.txt +317 -0
  2127. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_stress_test.cc +227 -0
  2128. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_test.cc +179 -0
  2129. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googlemock/test/gmock_test_utils.py +96 -0
  2130. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/CMakeLists.txt +338 -0
  2131. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/README.md +217 -0
  2132. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/cmake/Config.cmake.in +9 -0
  2133. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/cmake/gtest.pc.in +9 -0
  2134. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/cmake/gtest_main.pc.in +10 -0
  2135. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/cmake/internal_utils.cmake +356 -0
  2136. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/cmake/libgtest.la.in +21 -0
  2137. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/docs/README.md +4 -0
  2138. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-assertion-result.h +237 -0
  2139. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-death-test.h +345 -0
  2140. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-matchers.h +956 -0
  2141. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-message.h +220 -0
  2142. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-param-test.h +545 -0
  2143. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-printers.h +1131 -0
  2144. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-spi.h +250 -0
  2145. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-test-part.h +192 -0
  2146. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest-typed-test.h +331 -0
  2147. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest.h +2318 -0
  2148. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest_pred_impl.h +279 -0
  2149. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/gtest_prod.h +60 -0
  2150. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/custom/README.md +44 -0
  2151. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/custom/gtest-port.h +37 -0
  2152. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/custom/gtest-printers.h +42 -0
  2153. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/custom/gtest.h +37 -0
  2154. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/gtest-death-test-internal.h +307 -0
  2155. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/gtest-filepath.h +227 -0
  2156. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/gtest-internal.h +1571 -0
  2157. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/gtest-param-util.h +1031 -0
  2158. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/gtest-port-arch.h +118 -0
  2159. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/gtest-port.h +2460 -0
  2160. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/gtest-string.h +178 -0
  2161. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/include/gtest/internal/gtest-type-util.h +190 -0
  2162. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/prime_tables.h +124 -0
  2163. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample1.cc +66 -0
  2164. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample1.h +41 -0
  2165. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample10_unittest.cc +139 -0
  2166. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample1_unittest.cc +148 -0
  2167. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample2.cc +54 -0
  2168. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample2.h +79 -0
  2169. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample2_unittest.cc +107 -0
  2170. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample3-inl.h +171 -0
  2171. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample3_unittest.cc +146 -0
  2172. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample4.cc +50 -0
  2173. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample4.h +53 -0
  2174. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample4_unittest.cc +53 -0
  2175. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample5_unittest.cc +189 -0
  2176. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample6_unittest.cc +214 -0
  2177. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample7_unittest.cc +113 -0
  2178. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample8_unittest.cc +152 -0
  2179. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/samples/sample9_unittest.cc +149 -0
  2180. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-all.cc +49 -0
  2181. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-assertion-result.cc +77 -0
  2182. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-death-test.cc +1620 -0
  2183. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-filepath.cc +410 -0
  2184. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-internal-inl.h +1217 -0
  2185. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-matchers.cc +98 -0
  2186. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-port.cc +1394 -0
  2187. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-printers.cc +553 -0
  2188. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-test-part.cc +105 -0
  2189. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest-typed-test.cc +104 -0
  2190. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest.cc +6844 -0
  2191. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/src/gtest_main.cc +65 -0
  2192. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/BUILD.bazel +594 -0
  2193. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-break-on-failure-unittest.py +208 -0
  2194. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-break-on-failure-unittest_.cc +83 -0
  2195. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-catch-exceptions-test.py +236 -0
  2196. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-catch-exceptions-test_.cc +289 -0
  2197. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-color-test.py +128 -0
  2198. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-color-test_.cc +60 -0
  2199. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-death-test-test.cc +1526 -0
  2200. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-death-test_ex_test.cc +91 -0
  2201. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-env-var-test.py +120 -0
  2202. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-env-var-test_.cc +130 -0
  2203. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-failfast-unittest.py +410 -0
  2204. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-failfast-unittest_.cc +166 -0
  2205. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-filepath-test.cc +671 -0
  2206. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-filter-unittest.py +670 -0
  2207. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-filter-unittest_.cc +106 -0
  2208. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-global-environment-unittest.py +130 -0
  2209. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-global-environment-unittest_.cc +58 -0
  2210. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-json-outfiles-test.py +195 -0
  2211. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-json-output-unittest.py +912 -0
  2212. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-list-tests-unittest.py +205 -0
  2213. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-list-tests-unittest_.cc +140 -0
  2214. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-listener-test.cc +514 -0
  2215. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-message-test.cc +161 -0
  2216. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-options-test.cc +222 -0
  2217. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-output-test-golden-lin.txt +1196 -0
  2218. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-output-test.py +346 -0
  2219. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-output-test_.cc +1053 -0
  2220. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-param-test-invalid-name1-test.py +63 -0
  2221. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-param-test-invalid-name1-test_.cc +46 -0
  2222. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-param-test-invalid-name2-test.py +62 -0
  2223. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-param-test-invalid-name2-test_.cc +50 -0
  2224. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-param-test-test.cc +1173 -0
  2225. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-param-test-test.h +49 -0
  2226. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-param-test2-test.cc +58 -0
  2227. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-port-test.cc +1299 -0
  2228. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-printers-test.cc +1987 -0
  2229. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-setuptestsuite-test.py +54 -0
  2230. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-setuptestsuite-test_.cc +44 -0
  2231. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-shuffle-test.py +323 -0
  2232. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-shuffle-test_.cc +100 -0
  2233. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-test-part-test.cc +220 -0
  2234. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-throw-on-failure-test.py +168 -0
  2235. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-throw-on-failure-test_.cc +71 -0
  2236. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-uninitialized-test.py +67 -0
  2237. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/googletest-uninitialized-test_.cc +39 -0
  2238. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest-typed-test2_test.cc +39 -0
  2239. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest-typed-test_test.cc +423 -0
  2240. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest-typed-test_test.h +57 -0
  2241. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest-unittest-api_test.cc +328 -0
  2242. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_all_test.cc +46 -0
  2243. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_assert_by_exception_test.cc +112 -0
  2244. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_dirs_test.cc +97 -0
  2245. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_environment_test.cc +179 -0
  2246. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_help_test.py +189 -0
  2247. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_help_test_.cc +44 -0
  2248. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_json_test_utils.py +62 -0
  2249. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_list_output_unittest.py +286 -0
  2250. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_list_output_unittest_.cc +77 -0
  2251. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_main_unittest.cc +42 -0
  2252. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_no_test_unittest.cc +54 -0
  2253. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_pred_impl_unittest.cc +2070 -0
  2254. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_premature_exit_test.cc +128 -0
  2255. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_prod_test.cc +56 -0
  2256. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_repeat_test.cc +222 -0
  2257. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_skip_check_output_test.py +59 -0
  2258. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_skip_environment_check_output_test.py +54 -0
  2259. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_skip_in_environment_setup_test.cc +50 -0
  2260. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_skip_test.cc +51 -0
  2261. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_sole_header_test.cc +54 -0
  2262. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_stress_test.cc +242 -0
  2263. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_test_macro_stack_footprint_test.cc +89 -0
  2264. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_test_utils.py +255 -0
  2265. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_testbridge_test.py +63 -0
  2266. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_testbridge_test_.cc +42 -0
  2267. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_throw_on_failure_ex_test.cc +90 -0
  2268. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_unittest.cc +7756 -0
  2269. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_xml_outfile1_test_.cc +43 -0
  2270. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_xml_outfile2_test_.cc +45 -0
  2271. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_xml_outfiles_test.py +135 -0
  2272. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_xml_output_unittest.py +415 -0
  2273. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_xml_output_unittest_.cc +195 -0
  2274. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/gtest_xml_test_utils.py +201 -0
  2275. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/production.cc +35 -0
  2276. iowarp_core-0.6.2/external/yaml-cpp/test/googletest-1.13.0/googletest/test/production.h +55 -0
  2277. iowarp_core-0.6.2/external/yaml-cpp/test/integration/BUILD.bazel +14 -0
  2278. iowarp_core-0.6.2/external/yaml-cpp/test/integration/emitter_test.cpp +1784 -0
  2279. iowarp_core-0.6.2/external/yaml-cpp/test/integration/encoding_test.cpp +182 -0
  2280. iowarp_core-0.6.2/external/yaml-cpp/test/integration/error_messages_test.cpp +61 -0
  2281. iowarp_core-0.6.2/external/yaml-cpp/test/integration/gen_emitter_test.cpp +9936 -0
  2282. iowarp_core-0.6.2/external/yaml-cpp/test/integration/handler_spec_test.cpp +1686 -0
  2283. iowarp_core-0.6.2/external/yaml-cpp/test/integration/handler_test.cpp +76 -0
  2284. iowarp_core-0.6.2/external/yaml-cpp/test/integration/handler_test.h +32 -0
  2285. iowarp_core-0.6.2/external/yaml-cpp/test/integration/load_node_test.cpp +451 -0
  2286. iowarp_core-0.6.2/external/yaml-cpp/test/integration/node_spec_test.cpp +1136 -0
  2287. iowarp_core-0.6.2/external/yaml-cpp/test/main.cpp +6 -0
  2288. iowarp_core-0.6.2/external/yaml-cpp/test/mock_event_handler.h +30 -0
  2289. iowarp_core-0.6.2/external/yaml-cpp/test/node/node_test.cpp +880 -0
  2290. iowarp_core-0.6.2/external/yaml-cpp/test/ostream_wrapper_test.cpp +66 -0
  2291. iowarp_core-0.6.2/external/yaml-cpp/test/parser_test.cpp +64 -0
  2292. iowarp_core-0.6.2/external/yaml-cpp/test/regex_test.cpp +177 -0
  2293. iowarp_core-0.6.2/external/yaml-cpp/test/specexamples.h +868 -0
  2294. iowarp_core-0.6.2/external/yaml-cpp/util/CMakeLists.txt +32 -0
  2295. iowarp_core-0.6.2/external/yaml-cpp/util/api.cpp +137 -0
  2296. iowarp_core-0.6.2/external/yaml-cpp/util/parse.cpp +46 -0
  2297. iowarp_core-0.6.2/external/yaml-cpp/util/read.cpp +103 -0
  2298. iowarp_core-0.6.2/external/yaml-cpp/util/sandbox.cpp +36 -0
  2299. iowarp_core-0.6.2/external/yaml-cpp/yaml-cpp-config.cmake.in +33 -0
  2300. iowarp_core-0.6.2/external/yaml-cpp/yaml-cpp.pc.in +11 -0
  2301. iowarp_core-0.6.2/install.sh +437 -0
  2302. iowarp_core-0.6.2/iowarp_core/__init__.py +65 -0
  2303. iowarp_core-0.6.2/iowarp_core/_cli.py +164 -0
  2304. iowarp_core-0.6.2/iowarp_core.egg-info/PKG-INFO +726 -0
  2305. iowarp_core-0.6.2/iowarp_core.egg-info/SOURCES.txt +2315 -0
  2306. iowarp_core-0.6.2/iowarp_core.egg-info/dependency_links.txt +1 -0
  2307. iowarp_core-0.6.2/iowarp_core.egg-info/entry_points.txt +16 -0
  2308. iowarp_core-0.6.2/iowarp_core.egg-info/top_level.txt +1 -0
  2309. iowarp_core-0.6.2/pyproject.toml +93 -0
  2310. iowarp_core-0.6.2/requirements-dev.txt +16 -0
  2311. iowarp_core-0.6.2/requirements.txt +4 -0
  2312. iowarp_core-0.6.2/scripts/check_test_case_method.sh +20 -0
  2313. iowarp_core-0.6.2/setup.cfg +4 -0
  2314. iowarp_core-0.6.2/setup.py +475 -0
  2315. iowarp_core-0.6.2/test/simple_test.h +209 -0
  2316. iowarp_core-0.6.2/test_package.py +94 -0
@@ -0,0 +1,3 @@
1
+ BasedOnStyle: Google
2
+ UseTab: Never
3
+ ColumnLimit: 80
@@ -0,0 +1,32 @@
1
+ ---
2
+ CompileFlags:
3
+ CompilationDatabase: ./build
4
+ Remove:
5
+ - -march=*
6
+ - -mtune=*
7
+
8
+ Index:
9
+ Background: Build
10
+
11
+ Diagnostics:
12
+ ClangTidy:
13
+ Add:
14
+ - readability-*
15
+ - bugprone-*
16
+ Remove:
17
+ - readability-magic-numbers
18
+ - readability-identifier-length
19
+ Suppress:
20
+ - pp_file_not_found
21
+ - undeclared_var_use
22
+ - expected_class_name
23
+ - unknown_typename
24
+ - fatal_too_many_errors
25
+
26
+ InlayHints:
27
+ Enabled: true
28
+ ParameterNames: true
29
+ DeducedTypes: true
30
+
31
+ Hover:
32
+ ShowAKA: true