| 542 | } |
| 543 | |
| 544 | void CSession::ResetOutputValues() { |
| 545 | for (size_t i = 0; i < output_values_.size(); ++i) { |
| 546 | if (output_values_[i] != nullptr) TF_DeleteTensor(output_values_[i]); |
| 547 | } |
| 548 | output_values_.clear(); |
| 549 | } |
nothing calls this directly
no test coverage detected