You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for example:
I got one conv = nn.Conv2d(3, 32, kernel_size=7, stride=2, padding=3)
ptflops output is : 4.91 GMac
(conv): Conv2d(0.005 M, 0.158% Params, 4.91 GMac, 1.879% MACs, 3, 32, kernel_size=(7, 7), stride=(2, 2), padding=(3, 3))
We know by hand that conv operetor has a force of 4.877GFLPS.【2kkCinCoutHoutWout】
So I want to know if the library has the wrong units
The text was updated successfully, but these errors were encountered:
I suspect ptflops confused MACS with FLOPS.
for example:
I got one conv = nn.Conv2d(3, 32, kernel_size=7, stride=2, padding=3)
ptflops output is : 4.91 GMac
(conv): Conv2d(0.005 M, 0.158% Params, 4.91 GMac, 1.879% MACs, 3, 32, kernel_size=(7, 7), stride=(2, 2), padding=(3, 3))
We know by hand that conv operetor has a force of 4.877GFLPS.【2kkCinCoutHoutWout】
So I want to know if the library has the wrong units
The text was updated successfully, but these errors were encountered: