counted-float 1.0.4__tar.gz → 1.0.5__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.
- {counted_float-1.0.4 → counted_float-1.0.5}/PKG-INFO +4 -4
- {counted_float-1.0.4 → counted_float-1.0.5}/README.md +3 -3
- {counted_float-1.0.4 → counted_float-1.0.5}/pyproject.toml +1 -1
- {counted_float-1.0.4 → counted_float-1.0.5}/.gitignore +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/LICENSE +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/_cli.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/counted_float/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/counted_float/_counted_float_benchmark.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/flops/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/flops/_array_generator.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/flops/_flops_benchmark_suite.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/flops/_flops_micro_benchmark.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/micro/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/micro/_micro_benchmark.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/compatibility/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/compatibility/_numba.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/_builtin_data.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/_context_managers.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/_counted_float.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/_global_counter.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/config/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/config/_config.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/config/_defaults.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_base.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flop_counts.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flop_type.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flop_weights.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flops_benchmark_meta_data.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flops_benchmark_result.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flops_benchmark_type.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_instruction_latencies.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_micro_benchmark_result.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/utils/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/utils/_cpu_freq.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/utils/_formatting.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/utils/_geo_mean.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/utils/_latency.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/utils/_missing_data.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/utils/_rounding.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/utils/_timer.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/benchmarking/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/config/__init__.py +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/benchmarks/apple_m1_github_actions.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/benchmarks/apple_m3_max_mbp16.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/benchmarks/apple_m3_mba15.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/benchmarks/aws_graviton_2_neoverse_n1_ec2_m6g_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/benchmarks/aws_graviton_3_neoverse_v1_ec2_m7g_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/specs/arm_cortex_a76.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/specs/arm_cortex_x1.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/specs/arm_neoverse_n1.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/specs/arm_neoverse_v1.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/benchmarks/aws_graviton_4_neoverse_v2_ec2_m8g_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/benchmarks/azure_cobalt_100_neoverse_n2_github_actions.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/specs/arm_cortex_x2.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/specs/arm_cortex_x3.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/specs/arm_neoverse_n2.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/specs/arm_neoverse_v2.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_2/benchmarks/apple_m4_pro_mbp16.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_2/specs/arm_cortex_x4.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_2/specs/arm_cortex_x925.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_2/specs/arm_neoverse_v3.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2017_zen1/benchmarks/amd_ryzen_1700x.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2017_zen1/other/analysis_uops_info_zen1+.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2020_zen3/benchmark/amd_epyc_7763_linux_github.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2020_zen3/benchmark/amd_epyc_7763_windows_github.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2020_zen3/other/analysis_agner_fog_r7_5800x.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2020_zen3/other/analysis_uops_info_zen3.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2022_zen4/benchmark/amd_epyc_9r14_ec2_m7a_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2022_zen4/other/analysis_agner_fog_r9_7900x.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2022_zen4/other/analysis_uops_info_zen4.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2022_zen4/other/specs_amd.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2024_zen5/benchmark/amd_epyc_9r45_ec2_m8a_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2024_zen5/other/analysis_agner_fog_r7_9800x3d.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/amd/2024_zen5/other/specs_amd.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2017_coffee_lake_gen_8/benchmarks/intel_i7_8550U_windows.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2017_coffee_lake_gen_8/benchmarks/intel_i7_8700B_macos_github_actions.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2017_coffee_lake_gen_8/other/analysis_agner_fog_coffee_lake.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2017_coffee_lake_gen_8/other/analysis_uops_info_coffee_lake.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2019_sunny_cove_gen_10/benchmarks/intel_xeon_8375c_ice_lake_ec2_m6i_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2019_sunny_cove_gen_10/other/analysis_agner_fog_ice_lake.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2019_sunny_cove_gen_10/other/analysis_uops_info_ice_lake.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2019_sunny_cove_gen_10/other/analysis_uops_info_tiger_lake.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2021_golden_cove_gen_12/benchmarks/intel_xeon_8488c_sapphire_rapids_ec2_m7i_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2021_golden_cove_gen_12/other/analysis_uops_info_alder_lake_p.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2021_golden_cove_gen_12/other/specs_intel.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2022_raptor_cove_gen_13_14/benchmarks/intel_xeon_8559c_emerald_rapids_ec2_i7i_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2022_raptor_cove_gen_13_14/other/specs_intel.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2023_redwood_cove_ultra_1/benchmarks/intel_xeon_6975p_granite_rapids_ec2_m8i_xlarge.json +0 -0
- {counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/x86/intel/2023_redwood_cove_ultra_1/other/specs_intel.json +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: counted-float
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
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/main/CHANGELOG.md
|
|
@@ -20,9 +20,9 @@ Requires-Dist: numba>=0.50; extra == 'numba'
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
|
|
22
22
|

|
|
23
|
-

|
|
24
|
+

|
|
25
|
+

|
|
26
26
|
|
|
27
27
|
# counted-float
|
|
28
28
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|

|
|
2
|
-

|
|
3
|
+

|
|
4
|
+

|
|
5
5
|
|
|
6
6
|
# counted-float
|
|
7
7
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/flops/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/benchmarking/micro/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/_context_managers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/counting/config/_defaults.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flops_benchmark_meta_data.py
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flops_benchmark_result.py
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_flops_benchmark_type.py
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_instruction_latencies.py
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/_core/models/_micro_benchmark_result.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/specs/arm_cortex_a76.json
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/specs/arm_cortex_x1.json
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/specs/arm_neoverse_n1.json
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v8_x/specs/arm_neoverse_v1.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/specs/arm_cortex_x2.json
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/specs/arm_cortex_x3.json
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/specs/arm_neoverse_n2.json
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_0/specs/arm_neoverse_v2.json
RENAMED
|
File without changes
|
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_2/specs/arm_cortex_x4.json
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_2/specs/arm_cortex_x925.json
RENAMED
|
File without changes
|
{counted_float-1.0.4 → counted_float-1.0.5}/counted_float/data/arm/v9_2/specs/arm_neoverse_v3.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|