| 676 | } |
| 677 | |
| 678 | int64 float_ops(int64 step) const { |
| 679 | // If not run, return static analysis. |
| 680 | if (execs_.empty()) { |
| 681 | return node_.float_ops(); |
| 682 | } |
| 683 | // Otherwise, return dynamic float_ops. |
| 684 | return node_.float_ops() * run_count(step); |
| 685 | } |
| 686 | const CallStack* call_stack() { return call_stack_.get(); } |
| 687 | string canonical_device() const { return node_.canonical_device(); } |
| 688 | string host_device() const { return node_.host_device(); } |
no test coverage detected