mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 17:57:27 +00:00
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:
parent
74b9db940a
commit
3d4cdc19fb
10 changed files with 287 additions and 119 deletions
|
|
@ -99,6 +99,7 @@ PythonOpsResolver::PythonOpsResolver() {
|
|||
AddQuantize();
|
||||
AddReadVariable();
|
||||
AddReduceMax();
|
||||
AddReduceMin();
|
||||
AddRelu();
|
||||
AddRelu6();
|
||||
AddReshape();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue