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

Adding INT64 Tensor support.

parent 88f6e241
No related branches found
No related tags found
1 merge request!31Adding INT64 Tensor support
...@@ -177,6 +177,8 @@ static Registrar<Tensor> registrarTensorImpl_cpu_Float16( ...@@ -177,6 +177,8 @@ static Registrar<Tensor> registrarTensorImpl_cpu_Float16(
{"cpu", DataType::Float16}, Aidge::TensorImpl_cpu<half_float::half>::create); {"cpu", DataType::Float16}, Aidge::TensorImpl_cpu<half_float::half>::create);
static Registrar<Tensor> registrarTensorImpl_cpu_Int32( static Registrar<Tensor> registrarTensorImpl_cpu_Int32(
{"cpu", DataType::Int32}, Aidge::TensorImpl_cpu<int>::create); {"cpu", DataType::Int32}, Aidge::TensorImpl_cpu<int>::create);
static Registrar<Tensor> registrarTensorImpl_cpu_Int64(
{"cpu", DataType::Int64}, Aidge::TensorImpl_cpu<long>::create);
} // namespace } // namespace
} // namespace Aidge } // namespace Aidge
......
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