ultralytics-thop 2.0.9__tar.gz → 2.0.11__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 (22) hide show
  1. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/PKG-INFO +2 -1
  2. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/pyproject.toml +2 -1
  3. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/thop/__init__.py +1 -1
  4. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/ultralytics_thop.egg-info/PKG-INFO +2 -1
  5. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/LICENSE +0 -0
  6. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/README.md +0 -0
  7. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/setup.cfg +0 -0
  8. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/tests/test_conv2d.py +0 -0
  9. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/tests/test_matmul.py +0 -0
  10. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/tests/test_relu.py +0 -0
  11. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/tests/test_utils.py +0 -0
  12. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/thop/fx_profile.py +0 -0
  13. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/thop/profile.py +0 -0
  14. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/thop/rnn_hooks.py +0 -0
  15. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/thop/utils.py +0 -0
  16. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/thop/vision/__init__.py +0 -0
  17. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/thop/vision/basic_hooks.py +0 -0
  18. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/thop/vision/calc_func.py +0 -0
  19. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/ultralytics_thop.egg-info/SOURCES.txt +0 -0
  20. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/ultralytics_thop.egg-info/dependency_links.txt +0 -0
  21. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/ultralytics_thop.egg-info/requires.txt +0 -0
  22. {ultralytics_thop-2.0.9 → ultralytics_thop-2.0.11}/ultralytics_thop.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultralytics-thop
3
- Version: 2.0.9
3
+ Version: 2.0.11
4
4
  Summary: Ultralytics THOP package for fast computation of PyTorch model FLOPs and parameters.
5
5
  Author-email: Ligeng Zhu <ligeng.zhu+github@gmail.com>
6
6
  Maintainer-email: Ultralytics <hello@ultralytics.com>
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.9
22
22
  Classifier: Programming Language :: Python :: 3.10
23
23
  Classifier: Programming Language :: Python :: 3.11
24
24
  Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
25
26
  Classifier: Topic :: Software Development
26
27
  Classifier: Topic :: Scientific/Engineering
27
28
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
@@ -20,7 +20,7 @@
20
20
  # For comprehensive documentation and usage instructions, visit: https://github.com/ultralytics/thop
21
21
 
22
22
  [build-system]
23
- requires = ["setuptools>=57.0.0", "wheel"]
23
+ requires = ["setuptools>=70.0.0", "wheel"]
24
24
  build-backend = "setuptools.build_meta"
25
25
 
26
26
  [project]
@@ -49,6 +49,7 @@ classifiers = [
49
49
  "Programming Language :: Python :: 3.10",
50
50
  "Programming Language :: Python :: 3.11",
51
51
  "Programming Language :: Python :: 3.12",
52
+ "Programming Language :: Python :: 3.13",
52
53
  "Topic :: Software Development",
53
54
  "Topic :: Scientific/Engineering",
54
55
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
@@ -1,4 +1,4 @@
1
- __version__ = "2.0.9"
1
+ __version__ = "2.0.11"
2
2
 
3
3
 
4
4
  import torch
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultralytics-thop
3
- Version: 2.0.9
3
+ Version: 2.0.11
4
4
  Summary: Ultralytics THOP package for fast computation of PyTorch model FLOPs and parameters.
5
5
  Author-email: Ligeng Zhu <ligeng.zhu+github@gmail.com>
6
6
  Maintainer-email: Ultralytics <hello@ultralytics.com>
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.9
22
22
  Classifier: Programming Language :: Python :: 3.10
23
23
  Classifier: Programming Language :: Python :: 3.11
24
24
  Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
25
26
  Classifier: Topic :: Software Development
26
27
  Classifier: Topic :: Scientific/Engineering
27
28
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence