Add REDUCE_MIN to reduce kernel (#3113)

@tensorflow/micro

Add the REDUCE_MiN operator to the reduce kernel.
Refactor reduce kernel to decrease number of methods in tflite namespace. Add REDUCE_MIN unit tests.
Fix unit test axis data to match tensor shape.
Make Xtensa reduce kernel use reference common code for REDUCE_MIN.
Update all op resolvers.

bug=fixes #3108
This commit is contained in:
David Davis 2025-08-05 15:11:17 -07:00 committed by GitHub
parent 74b9db940a
commit 3d4cdc19fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 287 additions and 119 deletions

View file

@ -99,6 +99,7 @@ PythonOpsResolver::PythonOpsResolver() {
AddQuantize();
AddReadVariable();
AddReduceMax();
AddReduceMin();
AddRelu();
AddRelu6();
AddReshape();