| 376 | protected: |
| 377 | // Returns the number of inputs. |
| 378 | int64 num_inputs() const SHARED_LOCKS_REQUIRED(mu_) { |
| 379 | int64 num_inputs = 0; |
| 380 | for (auto& input : inputs_) { |
| 381 | // Inputs for which autotuning is disabled are excluded. |
| 382 | if (input->autotune()) { |
| 383 | ++num_inputs; |
| 384 | } |
| 385 | } |
| 386 | return num_inputs; |
| 387 | } |
| 388 | |
| 389 | // Creates a clone of this node. |
| 390 | virtual std::shared_ptr<Node> Clone(std::shared_ptr<Node> output) const |
nothing calls this directly
no test coverage detected