Skip to main content

Ultralytics logo

English | 简体中文

🚀 THOP: PyTorch-OpCounter

THOP profiles PyTorch models by counting Multiply-Accumulate Operations (MACs) and parameters. It is lightweight, easy to extend, and maintained by Ultralytics.

THOP CI Ultralytics Actions Ultralytics Discord Ultralytics Forums Ultralytics Reddit

📄 Description

THOP measures a model with one forward pass, making it useful for comparing architecture complexity before training or deployment. It includes counting rules for common convolutional, normalization, pooling, activation, linear, and recurrent layers, with support for custom rules.

📦 Installation

PyPI - Version Downloads PyPI - Python Version

pip install ultralytics-thop

To install the latest development version:

pip install --upgrade git+https://github.com/ultralytics/thop.git

🛠️ How to Use

Basic Usage

Pass the model and a tuple of example inputs to profile():

import torch
from torchvision.models import resnet50

from thop import profile

model = resnet50()
inputs = (torch.randn(1, 3, 224, 224),)
macs, params = profile(model, inputs=inputs)

print(f"MACs: {macs}, Parameters: {params}")
# Expected output: MACs: 4133742592.0, Parameters: 25557032.0

For image models, pass the target-size input and the model stride to estimate MACs from smaller stride-aligned profiles. profile() retains a single-profile fast path for spatial-only models, fits two points when size-independent operations may be present, and falls back to the target input when the smaller inputs are unsuitable:

inputs = (torch.randn(1, 3, 640, 640),)
macs, params = profile(model, inputs=inputs, stride=32)

Calls that omit stride retain the exact profiling behavior shown in the basic example.

Define Custom Rules for Third-Party Modules

Map an unsupported module type to a forward-hook function. The hook receives the module, its inputs, and its output, then adds the operation count to module.total_ops. Parameters need no hook — they are read from the module tree. A rule covers subclasses of the type it is registered for, the nearest registered ancestor winning, so an entry for nn.Conv2d also counts an nn.Conv2d subclass. A subclass whose forward computes something different needs its own entry, or it is counted as its base.

import torch
from torch import nn

from thop import profile


def count_silu(module, inputs, output):
    """Count one operation per output element as a simple example."""
    module.total_ops += output.numel()


model = nn.Sequential(nn.Conv2d(3, 64, 3, padding=1), nn.SiLU())
inputs = (torch.randn(1, 3, 224, 224),)
macs, params = profile(model, inputs=inputs, custom_ops={nn.SiLU: count_silu})

print(f"Custom MACs: {macs}, Parameters: {params}")
# Expected output: Custom MACs: 89915392.0, Parameters: 1792.0

Improve Output Readability

Use clever_format() to convert raw counts into human-readable values:

import torch
from torchvision.models import resnet50

from thop import clever_format, profile

model = resnet50()
inputs = (torch.randn(1, 3, 224, 224),)
macs, params = profile(model, inputs=inputs)
macs_readable, params_readable = clever_format([macs, params], "%.3f")

print(f"Formatted MACs: {macs_readable}, Formatted Parameters: {params_readable}")
# Expected output: Formatted MACs: 4.134G, Formatted Parameters: 25.557M

📊 Results of Recent Models

The following detection models were profiled at 640 × 640 from their fused architecture definitions using ultralytics==8.4.106. Install that version, then run python benchmark/evaluate_famous_models.py to reproduce the table without downloading model weights. FLOPs are often approximated as twice the MAC count.

Model size
(pixels)
params
(M)
MACs
(B)
YOLOv8n 640 3.15 4.37
YOLOv8s 640 11.16 14.30
YOLOv8m 640 25.89 39.47
YOLOv8l 640 43.67 82.57
YOLOv8x 640 68.20 128.90
YOLO11n 640 2.62 3.24
YOLO11s 640 9.44 10.73
YOLO11m 640 20.09 33.99
YOLO11l 640 25.34 43.46
YOLO11x 640 56.92 97.45
YOLO26n 640 2.41 2.68
YOLO26s 640 9.50 10.34
YOLO26m 640 20.41 34.09
YOLO26l 640 24.81 43.21
YOLO26x 640 55.73 96.93

🤝 Contribute

We thrive on community collaboration! THOP wouldn't be the tool it is without contributions from developers like you. Please see our Contributing Guide to get started. We also welcome your feedback—share your experience by completing our Survey. A huge Thank You 🙏 to everyone who contributes!

Ultralytics open-source contributors

We look forward to your contributions to help make the Ultralytics ecosystem even better!

📜 License

Ultralytics offers two licensing options to suit different needs:

  • AGPL-3.0 License: This OSI-approved open-source license is perfect for students, researchers, and enthusiasts. It encourages open collaboration and knowledge sharing. See the LICENSE file for full details.
  • Ultralytics Enterprise License: For development and production use, this license enables seamless integration of Ultralytics software and AI models into business products and services, including internal tools, automated workflows, and production deployments, bypassing the open-source requirements of AGPL-3.0. To get started, please contact us via Ultralytics Licensing.

📞 Contact

For bug reports and feature requests related to THOP, please visit GitHub Issues. For questions, discussions, and community support, join our active communities on Discord, Reddit, and the Ultralytics Community Forums. We're here to help with all things Ultralytics!


Ultralytics GitHub space Ultralytics LinkedIn space Ultralytics Twitter space Ultralytics YouTube space Ultralytics TikTok space Ultralytics BiliBili space Ultralytics Discord

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ultralytics_thop-2.1.2.tar.gz (33.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ultralytics_thop-2.1.2-py3-none-any.whl (27.1 kB view details)

Uploaded Python 3

File details

Details for the file ultralytics_thop-2.1.2.tar.gz.

File metadata

  • Download URL: ultralytics_thop-2.1.2.tar.gz
  • Upload date:
  • Size: 33.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for ultralytics_thop-2.1.2.tar.gz
Algorithm Hash digest
SHA256 c8b6f6585bf2ec0b2532234a9c705dda03a870a3471e2303f0fee206be37754e
MD5 4e9b4a24d739d9fa12382f6b23f96790
BLAKE2b-256 7ca9afec62e7a4a0fbda1d2f4f1e5af81b035501ae4da2f289e7cdb6c47c2f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultralytics_thop-2.1.2.tar.gz:

Publisher: publish.yml on ultralytics/thop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultralytics_thop-2.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for ultralytics_thop-2.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d74f650a1ce19b69228a0a92c739f000ebe67228f2aac32fd070c664ae7b7b06
MD5 9f97ebf49d2b7f646b5aaa7e530d9f0a
BLAKE2b-256 f519e22f1ba5edad9ad8c3d0933b70a91444caeccb41b3f6e4741538faa28bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultralytics_thop-2.1.2-py3-none-any.whl:

Publisher: publish.yml on ultralytics/thop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page