1

Eg:

_TFProfRoot (--/3163.86b flops)
InceptionResnetV2/InceptionResnetV2/Mixed_6a/Branch_1/Conv2d_0b_3x3/convolution (173.41b/173.41b flops)

What does b flops mean? I guess m flops means mega flops. But, what does 'b' flops mean? Apparently, b flops is bigger than m flops since I know that model analysis report prints flops values in descending order.

kgangadhar
  • 4,886
  • 5
  • 36
  • 54

1 Answers1

1

It means billions :)

quoted from source: "return strings::Printf("%.2fb", n / 1000000000.0);"

Peter
  • 108
  • 2