facebookresearch / fvcore

Collection of common code that's shared among different research projects in FAIR computer vision team.
Apache License 2.0
2k stars 226 forks source link

support div mul add #142

Open yokosyun opened 10 months ago

yokosyun commented 10 months ago

why not support div mul add?

    "aten::div": elementwise_flop_counter(1, 0),
    "aten::mul": elementwise_flop_counter(1, 0),
    "aten::add": elementwise_flop_counter(1, 0),

and is it correct if I want to support them?