| 64 | class OpInputs { |
| 65 | public: |
| 66 | explicit OpInputs(const TfLiteIntArray* indexes) { |
| 67 | for (int index : TfLiteIntArrayView(indexes)) { |
| 68 | inputs_.push_back(index); |
| 69 | } |
| 70 | forwardable_.resize(inputs_.size()); |
| 71 | } |
| 72 | ~OpInputs() {} |
| 73 | |
| 74 | int Size() const { return inputs_.size(); } |
nothing calls this directly
no test coverage detected