| 112 | class OpOutputs { |
| 113 | public: |
| 114 | explicit OpOutputs(const TfLiteIntArray* indexes) { |
| 115 | for (int index : TfLiteIntArrayView(indexes)) { |
| 116 | outputs_.push_back(index); |
| 117 | } |
| 118 | vector_.resize(outputs_.size()); |
| 119 | } |
| 120 | ~OpOutputs() { ResetTensorHandles(); } |
| 121 | |
| 122 | // Stores information about which of the tensors in this class are also |
nothing calls this directly
no test coverage detected