| 209 | } |
| 210 | |
| 211 | TensorValue mutable_input(int input_index) { |
| 212 | CHECK_LT(input_index, inputs_.size()); |
| 213 | return inputs_[input_index]; |
| 214 | } |
| 215 | // Returns the tensor output for 'output_index'. |
| 216 | // |
| 217 | // REQUIRES: 0 <= output_index < context_->num_outputs() |
no test coverage detected