Compare commits

...

2 Commits

Author SHA1 Message Date
Sai Nishwanth
0deed30d2c
Merge b7e005427c into fb54d8b549 2023-05-22 17:37:49 -05:00
sainishwanth
b7e005427c twml - Changed If statements with match casing in python 2023-04-02 10:00:45 +05:30

View File

@ -45,21 +45,22 @@ class _KeyRecorder(object):
# convert tensorio tensor type to numpy data type.
# also returns element size in bytes.
def _get_data_type(data_type):
if data_type == 'Double':
match data_type:
case 'Double':
return (np.float64, 8)
if data_type == 'Float':
case 'Float':
return (np.float32, 4)
if data_type == 'Int':
case 'Int':
return (np.int32, 4)
if data_type == 'Long':
case 'Long':
return (np.int64, 8)
if data_type == 'Byte':
case 'Byte':
return (np.int8, 1)
case _:
raise ValueError('Unexpected tensorio data type: ' + data_type)