Swall0w / torchstat

Model analyzer in PyTorch
MIT License
1.47k stars 142 forks source link

docs(README.md): rename flops #41

Open tpoisonooo opened 2 years ago

tpoisonooo commented 2 years ago

rename flops to FMul . This word is too misleading ....

FLOPS is used to describe hardware computing power, AKA float operation per second.

For deep learning model, we use MACs/ macc / Mul / FLOP, every metric has different calculation algorithm.

If you use FLOP, the code should count fmul+fadd, not only fmla or fmul.