Skip to main content

A tool to count the FLOPs of PyTorch model.

Project description

THOP: PyTorch-OpCounter

How to install

  • Through PyPi

    pip install thop

  • Using GitHub (always latest)

    pip install --upgrade git+https://github.com/Lyken17/pytorch-OpCounter.git

How to use

  • Basic usage

    from torchvision.models import resnet50
    from thop import profile
    model = resnet50()
    input = torch.randn(1, 3, 224, 224)
    flops, params = profile(model, inputs=(input, ))
    
  • Define the rule for 3rd party module.

    class YourModule(nn.Module):
        # your definition
    def count_your_model(model, x, y):
        # your rule here
    
    input = torch.randn(1, 3, 224, 224)
    flops, params = profile(model, inputs=(input, ), 
                            custom_ops={YourModule: count_your_model})
    

Results on Recent Models

Model Params(M) FLOPs(G)
alexnet 58.27 0.77
densenet121 7.61 2.71
densenet161 27.35 7.34
densenet169 13.49 3.22
densenet201 19.09 4.11
resnet101 42.49 7.34
resnet152 57.40 10.82
resnet18 11.15 1.70
resnet34 20.79 3.43
resnet50 24.37 3.86
Model Params(M) FLOPs(G)
squeezenet1_0 1.19 1.01
squeezenet1_1 1.18 0.48
vgg11 126.71 7.98
vgg11_bn 126.71 8.01
vgg13 126.88 11.82
vgg13_bn 126.89 11.86
vgg16 131.95 16.12
vgg16_bn 131.96 16.17
vgg19 137.01 20.43
vgg19_bn 137.02 20.49

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

thop-0.0.23-1908021457.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

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

thop-0.0.23.post1908021457-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file thop-0.0.23-1908021457.tar.gz.

File metadata

  • Download URL: thop-0.0.23-1908021457.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.26.0 CPython/3.6.5

File hashes

Hashes for thop-0.0.23-1908021457.tar.gz
Algorithm Hash digest
SHA256 3a20dddd777f93d3b1eb810c3af4ff0e6dc6c6f02051e9c7f621e1ced73e0ea0
MD5 4c82a7c87bf3b25099dd36980c85b283
BLAKE2b-256 f49a29eb75e1bac704024e721ed4b958aea0e424c33bc1c2fd6182d3673d9311

See more details on using hashes here.

File details

Details for the file thop-0.0.23.post1908021457-py3-none-any.whl.

File metadata

  • Download URL: thop-0.0.23.post1908021457-py3-none-any.whl
  • Upload date:
  • Size: 4.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.26.0 CPython/3.6.5

File hashes

Hashes for thop-0.0.23.post1908021457-py3-none-any.whl
Algorithm Hash digest
SHA256 6beeaaf69843c253c91b27e0c6affb32d7ffd28f4b2184bb191c90a1942778f2
MD5 f1641eeab812bd869096f205f6232d2c
BLAKE2b-256 d40f7b35dc30299b89ac294159e8a8eeb9c0e3247f193cfc84cbc5f62eeafb40

See more details on using hashes here.

Supported by

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