Skip to content
Snippets Groups Projects
Commit 968b2bda authored by Thibault Allenet's avatar Thibault Allenet
Browse files

Add aidge datatypes : int16_t uint16_t int8_t uint8_t

parent ef539ba7
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!4Dataloader
......@@ -63,6 +63,10 @@ template <> const Aidge::DataType NativeType<double>::type = Aidge::DataType::Fl
template <> const Aidge::DataType NativeType<float>::type = Aidge::DataType::Float32;
template <> const Aidge::DataType NativeType<long>::type = Aidge::DataType::Int64;
template <> const Aidge::DataType NativeType<int>::type = Aidge::DataType::Int32;
template <> const Aidge::DataType NativeType<int16_t>::type = Aidge::DataType::Int16;
template <> const Aidge::DataType NativeType<u_int16_t>::type = Aidge::DataType::UInt16;
template <> const Aidge::DataType NativeType<int8_t>::type = Aidge::DataType::Int8;
template <> const Aidge::DataType NativeType<uint8_t>::type = Aidge::DataType::UInt8;
template <>
const char* const EnumStrings<Aidge::DataType>::data[]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment