holobench 1.40.1__tar.gz → 1.42.0__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 (166) hide show
  1. {holobench-1.40.1 → holobench-1.42.0}/.gitignore +1 -0
  2. holobench-1.42.0/CHANGELOG.md +10 -0
  3. {holobench-1.40.1 → holobench-1.42.0}/PKG-INFO +21 -25
  4. {holobench-1.40.1 → holobench-1.42.0}/README.md +4 -4
  5. {holobench-1.40.1 → holobench-1.42.0}/bencher/__init__.py +20 -2
  6. {holobench-1.40.1 → holobench-1.42.0}/bencher/bench_cfg.py +265 -61
  7. {holobench-1.40.1 → holobench-1.42.0}/bencher/bench_report.py +2 -2
  8. {holobench-1.40.1 → holobench-1.42.0}/bencher/bench_runner.py +96 -10
  9. {holobench-1.40.1 → holobench-1.42.0}/bencher/bencher.py +421 -89
  10. {holobench-1.40.1 → holobench-1.42.0}/bencher/caching.py +1 -4
  11. holobench-1.42.0/bencher/class_enum.py +115 -0
  12. holobench-1.42.0/bencher/example/example_composable_container_image.py +60 -0
  13. holobench-1.42.0/bencher/example/example_composable_container_video.py +49 -0
  14. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_dataframe.py +2 -2
  15. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_image.py +17 -21
  16. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_image1.py +16 -20
  17. holobench-1.42.0/bencher/example/example_levels.py +23 -0
  18. holobench-1.42.0/bencher/example/example_pareto.py +127 -0
  19. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_rerun2.py +1 -1
  20. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_simple_bool.py +2 -2
  21. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_simple_float2d.py +6 -1
  22. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_video.py +35 -17
  23. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_hvplot_explorer.py +3 -4
  24. holobench-1.42.0/bencher/example/inputs_0D/example_0_in_1_out.py +64 -0
  25. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/inputs_0D/example_0_in_2_out.py +12 -3
  26. holobench-1.42.0/bencher/example/inputs_0_float/example_0_cat_in_2_out.py +88 -0
  27. holobench-1.42.0/bencher/example/inputs_0_float/example_1_cat_in_2_out.py +98 -0
  28. holobench-1.42.0/bencher/example/inputs_0_float/example_2_cat_in_2_out.py +107 -0
  29. holobench-1.42.0/bencher/example/inputs_0_float/example_3_cat_in_2_out.py +111 -0
  30. holobench-1.42.0/bencher/example/inputs_1D/example1d_common.py +105 -0
  31. holobench-1.42.0/bencher/example/inputs_1D/example_0_float_1_cat.py +33 -0
  32. holobench-1.42.0/bencher/example/inputs_1D/example_1_cat_in_2_out_repeats.py +68 -0
  33. holobench-1.42.0/bencher/example/inputs_1D/example_1_float_2_cat_repeats.py +15 -0
  34. holobench-1.42.0/bencher/example/inputs_1D/example_1_int_in_1_out.py +98 -0
  35. holobench-1.42.0/bencher/example/inputs_1D/example_1_int_in_2_out.py +101 -0
  36. holobench-1.42.0/bencher/example/inputs_1D/example_1_int_in_2_out_repeats.py +99 -0
  37. holobench-1.42.0/bencher/example/inputs_1_float/example_1_float_0_cat_in_2_out.py +117 -0
  38. holobench-1.42.0/bencher/example/inputs_1_float/example_1_float_1_cat_in_2_out.py +124 -0
  39. holobench-1.42.0/bencher/example/inputs_1_float/example_1_float_2_cat_in_2_out.py +132 -0
  40. holobench-1.42.0/bencher/example/inputs_1_float/example_1_float_3_cat_in_2_out.py +140 -0
  41. holobench-1.42.0/bencher/example/inputs_2D/example_2_cat_in_4_out_repeats.py +104 -0
  42. holobench-1.42.0/bencher/example/inputs_2_float/example_2_float_0_cat_in_2_out.py +98 -0
  43. holobench-1.42.0/bencher/example/inputs_2_float/example_2_float_1_cat_in_2_out.py +112 -0
  44. holobench-1.42.0/bencher/example/inputs_2_float/example_2_float_2_cat_in_2_out.py +122 -0
  45. holobench-1.42.0/bencher/example/inputs_2_float/example_2_float_3_cat_in_2_out.py +138 -0
  46. holobench-1.42.0/bencher/example/inputs_3_float/example_3_float_0_cat_in_2_out.py +111 -0
  47. holobench-1.42.0/bencher/example/inputs_3_float/example_3_float_1_cat_in_2_out.py +117 -0
  48. holobench-1.42.0/bencher/example/inputs_3_float/example_3_float_2_cat_in_2_out.py +124 -0
  49. holobench-1.42.0/bencher/example/inputs_3_float/example_3_float_3_cat_in_2_out.py +129 -0
  50. holobench-1.42.0/bencher/example/meta/generate_examples.py +167 -0
  51. holobench-1.42.0/bencher/example/meta/generate_meta.py +199 -0
  52. holobench-1.42.0/bencher/job.py +352 -0
  53. {holobench-1.40.1 → holobench-1.42.0}/bencher/plotting/plot_filter.py +52 -17
  54. holobench-1.42.0/bencher/results/bench_result.py +191 -0
  55. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/bench_result_base.py +119 -10
  56. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/composable_container/composable_container_video.py +39 -12
  57. holobench-1.42.0/bencher/results/dataset_result.py +33 -0
  58. holobench-1.42.0/bencher/results/explorer_result.py +23 -0
  59. holobench-1.40.1/bencher/results/hvplot_result.py → holobench-1.42.0/bencher/results/histogram_result.py +3 -18
  60. holobench-1.42.0/bencher/results/holoview_results/bar_result.py +79 -0
  61. holobench-1.42.0/bencher/results/holoview_results/curve_result.py +110 -0
  62. holobench-1.42.0/bencher/results/holoview_results/distribution_result/box_whisker_result.py +73 -0
  63. holobench-1.42.0/bencher/results/holoview_results/distribution_result/distribution_result.py +109 -0
  64. holobench-1.42.0/bencher/results/holoview_results/distribution_result/scatter_jitter_result.py +92 -0
  65. holobench-1.42.0/bencher/results/holoview_results/distribution_result/violin_result.py +70 -0
  66. holobench-1.42.0/bencher/results/holoview_results/heatmap_result.py +319 -0
  67. holobench-1.42.0/bencher/results/holoview_results/holoview_result.py +346 -0
  68. holobench-1.42.0/bencher/results/holoview_results/line_result.py +240 -0
  69. holobench-1.42.0/bencher/results/holoview_results/scatter_result.py +107 -0
  70. holobench-1.42.0/bencher/results/holoview_results/surface_result.py +158 -0
  71. holobench-1.42.0/bencher/results/holoview_results/table_result.py +14 -0
  72. holobench-1.42.0/bencher/results/holoview_results/tabulator_result.py +20 -0
  73. holobench-1.42.0/bencher/results/laxtex_result.py +67 -0
  74. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/optuna_result.py +30 -115
  75. holobench-1.40.1/bencher/results/panel_result.py → holobench-1.42.0/bencher/results/video_result.py +2 -2
  76. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/video_summary.py +2 -2
  77. holobench-1.40.1/bencher/results/plotly_result.py → holobench-1.42.0/bencher/results/volume_result.py +29 -8
  78. {holobench-1.40.1 → holobench-1.42.0}/bencher/utils.py +176 -30
  79. holobench-1.42.0/bencher/variables/__init__.py +0 -0
  80. {holobench-1.40.1 → holobench-1.42.0}/bencher/variables/inputs.py +122 -15
  81. {holobench-1.40.1 → holobench-1.42.0}/bencher/video_writer.py +38 -2
  82. holobench-1.42.0/bencher/worker_job.py +67 -0
  83. {holobench-1.40.1 → holobench-1.42.0}/pyproject.toml +41 -47
  84. holobench-1.42.0/resource/bencher +0 -0
  85. holobench-1.40.1/bencher/class_enum.py +0 -52
  86. holobench-1.40.1/bencher/example/example_composable_container.py +0 -106
  87. holobench-1.40.1/bencher/example/example_levels.py +0 -179
  88. holobench-1.40.1/bencher/example/example_levels2.py +0 -37
  89. holobench-1.40.1/bencher/example/example_pareto.py +0 -51
  90. holobench-1.40.1/bencher/example/inputs_0D/example_0_in_1_out.py +0 -54
  91. holobench-1.40.1/bencher/example/inputs_1D/example1d_common.py +0 -69
  92. holobench-1.40.1/bencher/example/inputs_1D/example_1_in_1_out.py +0 -62
  93. holobench-1.40.1/bencher/example/inputs_1D/example_1_in_2_out.py +0 -63
  94. holobench-1.40.1/bencher/example/inputs_1D/example_1_in_2_out_repeats.py +0 -61
  95. holobench-1.40.1/bencher/example/meta/generate_examples.py +0 -50
  96. holobench-1.40.1/bencher/example/meta/generate_meta.py +0 -151
  97. holobench-1.40.1/bencher/job.py +0 -189
  98. holobench-1.40.1/bencher/results/bench_result.py +0 -98
  99. holobench-1.40.1/bencher/results/dataset_result.py +0 -227
  100. holobench-1.40.1/bencher/results/holoview_result.py +0 -787
  101. holobench-1.40.1/bencher/results/laxtex_result.py +0 -60
  102. holobench-1.40.1/bencher/worker_job.py +0 -40
  103. {holobench-1.40.1 → holobench-1.42.0}/LICENSE +0 -0
  104. {holobench-1.40.1 → holobench-1.42.0}/bencher/bench_plot_server.py +0 -0
  105. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/__init__.py +0 -0
  106. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/benchmark_data.py +0 -0
  107. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_all.py +0 -0
  108. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_categorical.py +0 -0
  109. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_composable_container2.py +0 -0
  110. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_consts.py +0 -0
  111. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_custom_sweep.py +0 -0
  112. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_custom_sweep2.py +0 -0
  113. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_docs.py +0 -0
  114. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_filepath.py +0 -0
  115. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_float3D.py +0 -0
  116. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_float_cat.py +0 -0
  117. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_floats.py +0 -0
  118. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_floats2D.py +0 -0
  119. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_holosweep.py +0 -0
  120. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_holosweep_objects.py +0 -0
  121. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_holosweep_tap.py +0 -0
  122. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_publish.py +0 -0
  123. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_rerun.py +0 -0
  124. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_sample_cache.py +0 -0
  125. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_sample_cache_context.py +0 -0
  126. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_simple.py +0 -0
  127. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_simple_cat.py +0 -0
  128. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_simple_float.py +0 -0
  129. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_strings.py +0 -0
  130. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_time_event.py +0 -0
  131. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/example_workflow.py +0 -0
  132. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_bokeh_plotly.py +0 -0
  133. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_hover_ex.py +0 -0
  134. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_interactive.py +0 -0
  135. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_streamnd.py +0 -0
  136. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_streams.py +0 -0
  137. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_template.py +0 -0
  138. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_updates.py +0 -0
  139. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/experimental/example_vector.py +0 -0
  140. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/meta/__init__.py +0 -0
  141. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/meta/example_meta.py +0 -0
  142. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/meta/example_meta_cat.py +0 -0
  143. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/meta/example_meta_float.py +0 -0
  144. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/meta/example_meta_levels.py +0 -0
  145. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/optuna/example_optuna.py +0 -0
  146. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/shelved/example_float2D_scatter.py +0 -0
  147. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/shelved/example_float3D_cone.py +0 -0
  148. {holobench-1.40.1 → holobench-1.42.0}/bencher/example/shelved/example_kwargs.py +0 -0
  149. {holobench-1.40.1 → holobench-1.42.0}/bencher/flask_server.py +0 -0
  150. {holobench-1.40.1 → holobench-1.42.0}/bencher/optuna_conversions.py +0 -0
  151. {holobench-1.40.1 → holobench-1.42.0}/bencher/plotting/__init__.py +0 -0
  152. {holobench-1.40.1 → holobench-1.42.0}/bencher/plotting/plt_cnt_cfg.py +0 -0
  153. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/__init__.py +0 -0
  154. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/composable_container/__init__.py +0 -0
  155. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/composable_container/composable_container_base.py +0 -0
  156. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/composable_container/composable_container_dataframe.py +0 -0
  157. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/composable_container/composable_container_panel.py +0 -0
  158. {holobench-1.40.1 → holobench-1.42.0}/bencher/results/float_formatter.py +0 -0
  159. {holobench-1.40.1/bencher/variables → holobench-1.42.0/bencher/results/holoview_results}/__init__.py +0 -0
  160. /holobench-1.40.1/resource/bencher → /holobench-1.42.0/bencher/results/holoview_results/distribution_result/__init__.py +0 -0
  161. /holobench-1.40.1/bencher/results/video_result.py → /holobench-1.42.0/bencher/results/video_controls.py +0 -0
  162. {holobench-1.40.1 → holobench-1.42.0}/bencher/utils_rerun.py +0 -0
  163. {holobench-1.40.1 → holobench-1.42.0}/bencher/variables/parametrised_sweep.py +0 -0
  164. {holobench-1.40.1 → holobench-1.42.0}/bencher/variables/results.py +0 -0
  165. {holobench-1.40.1 → holobench-1.42.0}/bencher/variables/sweep_base.py +0 -0
  166. {holobench-1.40.1 → holobench-1.42.0}/bencher/variables/time.py +0 -0
@@ -183,3 +183,4 @@ docs/builtdocs*
183
183
  docs/jupyter_execute*
184
184
  thumbnails/
185
185
  docs/autoapi/*
186
+ .qodo
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.3.10]
9
+
10
+ Before changelogs
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: holobench
3
- Version: 1.40.1
3
+ Version: 1.42.0
4
4
  Summary: A package for benchmarking the performance of arbitrary functions
5
- Project-URL: Repository, https://github.com/dyson-ai/bencher
6
- Project-URL: Home, https://github.com/dyson-ai/bencher
5
+ Project-URL: Repository, https://github.com/blooop/bencher
6
+ Project-URL: Home, https://github.com/blooop/bencher
7
7
  Project-URL: Documentation, https://bencher.readthedocs.io/en/latest/
8
8
  Author-email: Austin Gregg-Smith <blooop@gmail.com>
9
9
  License-Expression: MIT
@@ -12,48 +12,44 @@ Requires-Python: <3.13,>=3.10
12
12
  Requires-Dist: diskcache<=5.6.3,>=5.6
13
13
  Requires-Dist: holoviews<=1.20.0,>=1.15
14
14
  Requires-Dist: hvplot<=0.10.0,>=0.8
15
- Requires-Dist: matplotlib<=3.10.0,>=3.6.3
16
- Requires-Dist: moviepy-fix-codec
17
- Requires-Dist: numpy<=2.2.2,>=1.0
18
- Requires-Dist: optuna<=4.2.0,>=3.2
15
+ Requires-Dist: moviepy<=2.1.2,>=2.1.2
16
+ Requires-Dist: numpy<=2.2.6,>=1.0
17
+ Requires-Dist: optuna<=4.3.0,>=3.2
19
18
  Requires-Dist: pandas<=2.2.3,>=2.0
20
- Requires-Dist: panel<=1.6.0,>=1.3.6
19
+ Requires-Dist: panel<=1.7.0,>=1.3.6
21
20
  Requires-Dist: param<=2.2.0,>=1.13.0
22
- Requires-Dist: plotly<=6.0.0,>=5.15
21
+ Requires-Dist: plotly<=6.0.1,>=5.15
23
22
  Requires-Dist: scikit-learn<=1.6.1,>=1.2
24
- Requires-Dist: scoop<=0.7.2.0,>=0.7.0
25
- Requires-Dist: sortedcontainers<=2.4,>=2.4
26
- Requires-Dist: str2bool<=1.1,>=1.1
27
23
  Requires-Dist: strenum<=0.4.15,>=0.4.0
28
- Requires-Dist: xarray<=2025.1.2,>=2023.7
24
+ Requires-Dist: xarray<=2025.4.0,>=2023.7
29
25
  Provides-Extra: rerun
30
26
  Requires-Dist: flask; extra == 'rerun'
31
27
  Requires-Dist: flask-cors; extra == 'rerun'
32
28
  Requires-Dist: rerun-notebook; extra == 'rerun'
33
- Requires-Dist: rerun-sdk==0.21.0; extra == 'rerun'
29
+ Requires-Dist: rerun-sdk==0.22.1; extra == 'rerun'
34
30
  Provides-Extra: test
35
- Requires-Dist: coverage<=7.6.10,>=7.5.4; extra == 'test'
36
- Requires-Dist: hypothesis<=6.124.9,>=6.104.2; extra == 'test'
31
+ Requires-Dist: coverage<=7.8.0,>=7.5.4; extra == 'test'
32
+ Requires-Dist: hypothesis<=6.131.18,>=6.104.2; extra == 'test'
37
33
  Requires-Dist: ipykernel; extra == 'test'
38
34
  Requires-Dist: jupyter-bokeh; extra == 'test'
39
35
  Requires-Dist: nbformat; extra == 'test'
40
36
  Requires-Dist: pip; extra == 'test'
41
- Requires-Dist: pre-commit<=4.1.0; extra == 'test'
42
- Requires-Dist: pylint<=3.3.4,>=3.2.5; extra == 'test'
43
- Requires-Dist: pytest-cov<=6.0.0,>=4.1; extra == 'test'
44
- Requires-Dist: pytest<=8.3.4,>=7.4; extra == 'test'
45
- Requires-Dist: ruff<=0.9.4,>=0.5.0; extra == 'test'
37
+ Requires-Dist: pre-commit<=4.2.0; extra == 'test'
38
+ Requires-Dist: pylint<=3.3.7,>=3.2.5; extra == 'test'
39
+ Requires-Dist: pytest-cov<=6.1.1,>=4.1; extra == 'test'
40
+ Requires-Dist: pytest<=8.3.5,>=7.4; extra == 'test'
41
+ Requires-Dist: ruff<=0.11.10,>=0.5.0; extra == 'test'
46
42
  Description-Content-Type: text/markdown
47
43
 
48
44
  # Bencher
49
45
 
50
46
  ## Continuous Integration Status
51
47
 
52
- [![Ci](https://github.com/dyson-ai/bencher/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/dyson-ai/bencher/actions/workflows/ci.yml?query=branch%3Amain)
48
+ [![Ci](https://github.com/blooop/bencher/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/blooop/bencher/actions/workflows/ci.yml?query=branch%3Amain)
53
49
  ![Read the Docs](https://img.shields.io/readthedocs/bencher)
54
- [![Codecov](https://codecov.io/gh/dyson-ai/bencher/branch/main/graph/badge.svg?token=Y212GW1PG6)](https://codecov.io/gh/dyson-ai/bencher)
55
- [![GitHub issues](https://img.shields.io/github/issues/dyson-ai/bencher.svg)](https://GitHub.com/dyson-ai/bencher/issues/)
56
- [![GitHub pull-requests merged](https://badgen.net/github/merged-prs/dyson-ai/bencher)](https://github.com/dyson-ai/bencher/pulls?q=is%3Amerged)
50
+ [![Codecov](https://codecov.io/gh/blooop/bencher/branch/main/graph/badge.svg?token=Y212GW1PG6)](https://codecov.io/gh/blooop/bencher)
51
+ [![GitHub issues](https://img.shields.io/github/issues/blooop/bencher.svg)](https://GitHub.com/blooop/bencher/issues/)
52
+ [![GitHub pull-requests merged](https://badgen.net/github/merged-prs/blooop/bencher)](https://github.com/blooop/bencher/pulls?q=is%3Amerged)
57
53
  [![PyPI](https://img.shields.io/pypi/v/holobench)](https://pypi.org/project/holobench/)
58
54
  [![PyPI - Downloads](https://img.shields.io/pypi/dm/holobench)](https://pypistats.org/packages/holobench)
59
55
  [![License](https://img.shields.io/pypi/l/bencher)](https://opensource.org/license/mit/)
@@ -2,11 +2,11 @@
2
2
 
3
3
  ## Continuous Integration Status
4
4
 
5
- [![Ci](https://github.com/dyson-ai/bencher/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/dyson-ai/bencher/actions/workflows/ci.yml?query=branch%3Amain)
5
+ [![Ci](https://github.com/blooop/bencher/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/blooop/bencher/actions/workflows/ci.yml?query=branch%3Amain)
6
6
  ![Read the Docs](https://img.shields.io/readthedocs/bencher)
7
- [![Codecov](https://codecov.io/gh/dyson-ai/bencher/branch/main/graph/badge.svg?token=Y212GW1PG6)](https://codecov.io/gh/dyson-ai/bencher)
8
- [![GitHub issues](https://img.shields.io/github/issues/dyson-ai/bencher.svg)](https://GitHub.com/dyson-ai/bencher/issues/)
9
- [![GitHub pull-requests merged](https://badgen.net/github/merged-prs/dyson-ai/bencher)](https://github.com/dyson-ai/bencher/pulls?q=is%3Amerged)
7
+ [![Codecov](https://codecov.io/gh/blooop/bencher/branch/main/graph/badge.svg?token=Y212GW1PG6)](https://codecov.io/gh/blooop/bencher)
8
+ [![GitHub issues](https://img.shields.io/github/issues/blooop/bencher.svg)](https://GitHub.com/blooop/bencher/issues/)
9
+ [![GitHub pull-requests merged](https://badgen.net/github/merged-prs/blooop/bencher)](https://github.com/blooop/bencher/pulls?q=is%3Amerged)
10
10
  [![PyPI](https://img.shields.io/pypi/v/holobench)](https://pypi.org/project/holobench/)
11
11
  [![PyPI - Downloads](https://img.shields.io/pypi/dm/holobench)](https://pypistats.org/packages/holobench)
12
12
  [![License](https://img.shields.io/pypi/l/bencher)](https://opensource.org/license/mit/)
@@ -43,6 +43,24 @@ from .results.composable_container.composable_container_video import (
43
43
  RenderCfg,
44
44
  )
45
45
 
46
+ from bencher.results.holoview_results.distribution_result.box_whisker_result import BoxWhiskerResult
47
+ from bencher.results.holoview_results.distribution_result.violin_result import ViolinResult
48
+ from bencher.results.holoview_results.scatter_result import ScatterResult
49
+ from bencher.results.holoview_results.distribution_result.scatter_jitter_result import (
50
+ ScatterJitterResult,
51
+ )
52
+ from bencher.results.holoview_results.bar_result import BarResult
53
+ from bencher.results.holoview_results.line_result import LineResult
54
+ from bencher.results.holoview_results.curve_result import CurveResult
55
+ from bencher.results.holoview_results.heatmap_result import HeatmapResult
56
+ from bencher.results.holoview_results.surface_result import SurfaceResult
57
+ from bencher.results.holoview_results.tabulator_result import TabulatorResult
58
+ from bencher.results.holoview_results.table_result import TableResult
59
+
60
+ from bencher.results.histogram_result import HistogramResult
61
+ from bencher.results.explorer_result import ExplorerResult
62
+ from bencher.results.dataset_result import DataSetResult
63
+
46
64
  from .utils import (
47
65
  hmap_canonical_input,
48
66
  get_nearest_coords,
@@ -68,8 +86,8 @@ from .plotting.plot_filter import VarRange, PlotFilter
68
86
  from .variables.parametrised_sweep import ParametrizedSweep
69
87
  from .caching import CachedParams
70
88
  from .results.bench_result import BenchResult
71
- from .results.panel_result import PanelResult
72
- from .results.holoview_result import ReduceType, HoloviewResult
89
+ from .results.video_result import VideoResult
90
+ from .results.holoview_results.holoview_result import ReduceType, HoloviewResult
73
91
  from .bench_report import BenchReport, GithubPagesCfg
74
92
  from .job import Executors
75
93
  from .video_writer import VideoWriter, add_image