| 39 | } |
| 40 | |
| 41 | void EagerOperation::ConsumeInput(tensorflow::TensorHandle* h) { |
| 42 | inputs_.push_back(h); |
| 43 | attrs_.NumInputs(static_cast<int>(inputs_.size())); |
| 44 | } |
| 45 | |
| 46 | string EagerOperation::DebugString() const { |
| 47 | string out; |
no test coverage detected