Hemos 2019. 11. 1. 09:52

Billion FLOPs
gigaFLOPS

darknet
bflops = ((2.0*l.n*l.size*l.size*l.c/1.groups)*1.out_h*1.out_w) / 1000000000.)
2.0: two different types of instruction

l.n:filters / l.size:filter size / l.c: channels / l.out_h : output height / l.out_w:output width


FLOPS floating point Operations Per Second
: 컴퓨터 성능을 수치로 나타낼 때 주로 사용되는 단위.
초당 부동소수점 연산이라는 의미로 컴퓨터가 1초동안 수행할 수 있는 부동소수점 연산의 횟수를 기준으로 삼는다.

플롭스 연산식은 다음과 같이 계산됨*

*"Nodes, Sockets, Cores and FLOPS, Oh, My" by Dr. Mark R. Fernandez, Ph.D

https://github.com/pjreddie/darknet/issues/1039