| 69 | } while (0) |
| 70 | |
| 71 | bool IsFloat(TfLiteType type) { |
| 72 | switch (type) { |
| 73 | case kTfLiteFloat32: |
| 74 | return true; |
| 75 | default: |
| 76 | return false; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | bool IsFloatOrUInt8(TfLiteType type) { |
| 81 | switch (type) { |
no outgoing calls
no test coverage detected