| 84 | } |
| 85 | |
| 86 | bool HasDynamicTensor(const TfLiteContext& context, |
| 87 | const TfLiteIntArray* int_array) { |
| 88 | return HasDynamicTensorImpl(context, TfLiteIntArrayView{int_array}); |
| 89 | } |
| 90 | |
| 91 | // Gets the legacy TfLiteQuantizationParams from the current TfLiteQuantization. |
| 92 | TfLiteQuantizationParams GetLegacyQuantization( |
no test coverage detected