in arm_common the reserve tensor is not used
| 12 | namespace { |
| 13 | //! in arm_common the reserve tensor is not used |
| 14 | void output_canonizer(const CheckerHelper::TensorValueArray& arr) { |
| 15 | const TensorND& reserve = arr.back(); |
| 16 | TensorND& modif_reserve = const_cast<TensorND&>(reserve); |
| 17 | modif_reserve.layout = TensorLayout(); |
| 18 | } |
| 19 | } // namespace |
| 20 | |
| 21 | TEST_F(ARM_COMMON, LSTMCell) { |
nothing calls this directly
no test coverage detected