Skip to content
Snippets Groups Projects
Commit c7e702f6 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Fix typo ataType -> DataType.

parent b5e1d886
No related branches found
No related tags found
1 merge request!31Adding INT64 Tensor support
Pipeline #36966 failed
......@@ -101,7 +101,7 @@ class TensorImpl_cpu : public TensorImpl {
std::copy(static_cast<const uint16_t*>(src), static_cast<const uint16_t*>(src) + length,
static_cast<T *>(rawPtr()));
break;
case ataType::Int8:
case DataType::Int8:
std::copy(static_cast<const int8_t*>(src), static_cast<const int8_t*>(src) + length,
static_cast<T *>(rawPtr()));
break;
......
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