From f34fc8f2d1d6aa46b6844958031d079a6c7a8d79 Mon Sep 17 00:00:00 2001 From: seongwoo chae Date: Wed, 3 Jul 2024 14:46:35 +0900 Subject: [PATCH] [tflite2circle] Support more data types (#13341) This commit support more data types. ONE-DCO-1.0-Signed-off-by: seongwoo --- compiler/tflite2circle/src/TFLTensorType.lst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler/tflite2circle/src/TFLTensorType.lst b/compiler/tflite2circle/src/TFLTensorType.lst index dc1c982fb2f..213ad156d59 100644 --- a/compiler/tflite2circle/src/TFLTensorType.lst +++ b/compiler/tflite2circle/src/TFLTensorType.lst @@ -14,4 +14,8 @@ TFL_TENSORTYPE(BOOL) TFL_TENSORTYPE(INT16) TFL_TENSORTYPE(COMPLEX64) TFL_TENSORTYPE(INT8) +TFL_TENSORTYPE(FLOAT64) +TFL_TENSORTYPE(UINT64) +TFL_TENSORTYPE(UINT32) +TFL_TENSORTYPE(UINT16) TFL_TENSORTYPE(INT4)