aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite_mapping.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite_mapping.py')
-rw-r--r--ethosu/vela/tflite_mapping.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethosu/vela/tflite_mapping.py b/ethosu/vela/tflite_mapping.py
index dd52a3ac..8ec01737 100644
--- a/ethosu/vela/tflite_mapping.py
+++ b/ethosu/vela/tflite_mapping.py
@@ -201,7 +201,7 @@ datatype_map_numpy = {
TensorType.FLOAT16: np.float16,
TensorType.FLOAT32: np.float32,
TensorType.FLOAT64: np.float64,
- TensorType.BOOL: np.bool,
+ TensorType.BOOL: bool,
TensorType.COMPLEX64: np.complex64,
TensorType.COMPLEX128: np.complex128,
TensorType.STRING: np.uint8,