counted-float 0.9.0__tar.gz → 0.9.1__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 (52) hide show
  1. {counted_float-0.9.0 → counted_float-0.9.1}/.gitignore +4 -1
  2. {counted_float-0.9.0 → counted_float-0.9.1}/PKG-INFO +4 -4
  3. {counted_float-0.9.0 → counted_float-0.9.1}/README.md +3 -3
  4. {counted_float-0.9.0 → counted_float-0.9.1}/pyproject.toml +1 -1
  5. {counted_float-0.9.0 → counted_float-0.9.1}/LICENSE +0 -0
  6. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/__init__.py +0 -0
  7. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/__init__.py +0 -0
  8. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/benchmarking/__init__.py +0 -0
  9. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/benchmarking/_flops_benchmark_suite.py +0 -0
  10. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/benchmarking/_flops_micro_benchmark.py +0 -0
  11. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/benchmarking/_micro_benchmark.py +0 -0
  12. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/benchmarking/_models.py +0 -0
  13. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/benchmarking/_time_utils.py +0 -0
  14. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/compatibility/__init__.py +0 -0
  15. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/compatibility/_numba.py +0 -0
  16. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/compatibility/_strenum.py +0 -0
  17. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/__init__.py +0 -0
  18. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/_builtin_data.py +0 -0
  19. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/_context_managers.py +0 -0
  20. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/_counted_float.py +0 -0
  21. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/_global_counter.py +0 -0
  22. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/config/__init__.py +0 -0
  23. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/config/_config.py +0 -0
  24. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/config/_defaults.py +0 -0
  25. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/models/__init__.py +0 -0
  26. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/models/_base.py +0 -0
  27. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/models/_flop_counts.py +0 -0
  28. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/models/_flop_type.py +0 -0
  29. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/models/_flop_weights.py +0 -0
  30. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/models/_flops_benchmark_result.py +0 -0
  31. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/models/_fpu_instruction.py +0 -0
  32. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/counting/models/_fpu_specs.py +0 -0
  33. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/benchmarks/arm/apple/m3_max_macbook_pro_16.json +0 -0
  34. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/benchmarks/x86/intel/gen12_i7_1265u.json +0 -0
  35. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/benchmarks/x86/intel/gen7_i5_7200u.json +0 -0
  36. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/arm/arm_v7a_cortex_a9.json +0 -0
  37. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/arm/arm_v8_cortex_a55.json +0 -0
  38. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/arm/arm_v8_cortex_a76.json +0 -0
  39. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/arm/arm_v9_cortex_x1.json +0 -0
  40. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/arm/arm_v9_cortex_x2.json +0 -0
  41. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/arm/arm_v9_cortex_x3.json +0 -0
  42. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/x86/amd/zen3_r7_5800x.json +0 -0
  43. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/x86/amd/zen4_r9_7900x.json +0 -0
  44. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/x86/amd/zen5_r7_9800x3d.json +0 -0
  45. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/x86/intel/gen09_coffee_lake.json +0 -0
  46. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/x86/intel/gen10_cannon_lake.json +0 -0
  47. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/data/specs/x86/intel/gen11_tiger_lake.json +0 -0
  48. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/utils/__init__.py +0 -0
  49. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/utils/_geo_mean.py +0 -0
  50. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/_core/utils/_missing_data.py +0 -0
  51. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/benchmarking/__init__.py +0 -0
  52. {counted_float-0.9.0 → counted_float-0.9.1}/counted_float/config/__init__.py +0 -0
@@ -30,4 +30,7 @@ Thumbs.db
30
30
 
31
31
  # IDE files
32
32
  .idea
33
- .vscode
33
+ .vscode
34
+
35
+ # other local files
36
+ .local
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: counted-float
3
- Version: 0.9.0
3
+ Version: 0.9.1
4
4
  Summary: Count floating-point operations in Python code & benchmark relative flop costs.
5
5
  Project-URL: Source, https://github.com/bertpl/counted-float
6
6
  Project-URL: ChangeLog, https://github.com/bertpl/counted-float/blob/develop/RELEASE_NOTES.md
@@ -18,9 +18,9 @@ Description-Content-Type: text/markdown
18
18
 
19
19
  <!--START_SECTION:images-->
20
20
  ![shields.io-python-versions](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)
21
- ![genbadge-test-count](https://bertpl.github.io/counted-float/version_artifacts/v0.9.0/badge-test-count.svg)
22
- ![genbadge-test-coverage](https://bertpl.github.io/counted-float/version_artifacts/v0.9.0/badge-coverage.svg)
23
- ![counted_float logo](https://bertpl.github.io/counted-float/version_artifacts/v0.9.0/splash.webp)
21
+ ![genbadge-test-count](https://bertpl.github.io/counted-float/version_artifacts/v0.9.1/badge-test-count.svg)
22
+ ![genbadge-test-coverage](https://bertpl.github.io/counted-float/version_artifacts/v0.9.1/badge-coverage.svg)
23
+ ![counted_float logo](https://bertpl.github.io/counted-float/version_artifacts/v0.9.1/splash.webp)
24
24
  <!--END_SECTION:images-->
25
25
 
26
26
  # counted-float
@@ -1,8 +1,8 @@
1
1
  <!--START_SECTION:images-->
2
2
  ![shields.io-python-versions](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)
3
- ![genbadge-test-count](https://bertpl.github.io/counted-float/version_artifacts/v0.9.0/badge-test-count.svg)
4
- ![genbadge-test-coverage](https://bertpl.github.io/counted-float/version_artifacts/v0.9.0/badge-coverage.svg)
5
- ![counted_float logo](https://bertpl.github.io/counted-float/version_artifacts/v0.9.0/splash.webp)
3
+ ![genbadge-test-count](https://bertpl.github.io/counted-float/version_artifacts/v0.9.1/badge-test-count.svg)
4
+ ![genbadge-test-coverage](https://bertpl.github.io/counted-float/version_artifacts/v0.9.1/badge-coverage.svg)
5
+ ![counted_float logo](https://bertpl.github.io/counted-float/version_artifacts/v0.9.1/splash.webp)
6
6
  <!--END_SECTION:images-->
7
7
 
8
8
  # counted-float
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "counted-float"
3
- version = "0.9.0"
3
+ version = "0.9.1"
4
4
  description = "Count floating-point operations in Python code & benchmark relative flop costs."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes