From ae009d00476d01e3567494269b6cd3db1ed4495d Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Mon, 26 Aug 2024 10:58:08 +0200 Subject: [PATCH] Preparatory work: changed Registrable template --- include/aidge/data/Tensor.hpp | 2 +- include/aidge/hook/Hook.hpp | 4 ++-- include/aidge/operator/Add.hpp | 2 +- include/aidge/operator/AvgPooling.hpp | 2 +- include/aidge/operator/BatchNorm.hpp | 2 +- include/aidge/operator/Cast.hpp | 2 +- include/aidge/operator/Concat.hpp | 2 +- include/aidge/operator/Conv.hpp | 2 +- include/aidge/operator/ConvDepthWise.hpp | 2 +- include/aidge/operator/Div.hpp | 2 +- include/aidge/operator/Erf.hpp | 2 +- include/aidge/operator/FC.hpp | 2 +- include/aidge/operator/Fold.hpp | 2 +- include/aidge/operator/Gather.hpp | 2 +- include/aidge/operator/GenericOperator.hpp | 2 +- include/aidge/operator/GlobalAveragePooling.hpp | 4 ++-- include/aidge/operator/GridSample.hpp | 2 +- include/aidge/operator/Identity.hpp | 2 +- include/aidge/operator/LeakyReLU.hpp | 2 +- include/aidge/operator/Ln.hpp | 2 +- include/aidge/operator/MatMul.hpp | 2 +- include/aidge/operator/MaxPooling.hpp | 2 +- include/aidge/operator/Memorize.hpp | 2 +- include/aidge/operator/MetaOperator.hpp | 2 +- include/aidge/operator/Move.hpp | 2 +- include/aidge/operator/Mul.hpp | 2 +- include/aidge/operator/Pad.hpp | 2 +- include/aidge/operator/Pow.hpp | 2 +- include/aidge/operator/Producer.hpp | 4 ++-- include/aidge/operator/ReLU.hpp | 2 +- include/aidge/operator/ReduceMean.hpp | 2 +- include/aidge/operator/Reshape.hpp | 2 +- include/aidge/operator/Resize.hpp | 2 +- include/aidge/operator/Scaling.hpp | 2 +- include/aidge/operator/Shape.hpp | 2 +- include/aidge/operator/ShiftGELU.hpp | 2 +- include/aidge/operator/ShiftMax.hpp | 2 +- include/aidge/operator/Sigmoid.hpp | 2 +- include/aidge/operator/Slice.hpp | 2 +- include/aidge/operator/Softmax.hpp | 2 +- include/aidge/operator/Split.hpp | 2 +- include/aidge/operator/Sqrt.hpp | 2 +- include/aidge/operator/Sub.hpp | 2 +- include/aidge/operator/Tanh.hpp | 2 +- include/aidge/operator/Transpose.hpp | 2 +- include/aidge/operator/Unfold.hpp | 2 +- include/aidge/stimuli/Stimulus.hpp | 2 +- include/aidge/utils/Registrar.hpp | 12 ++++++------ python_binding/data/pybind_Tensor.cpp | 2 +- 49 files changed, 57 insertions(+), 57 deletions(-) diff --git a/include/aidge/data/Tensor.hpp b/include/aidge/data/Tensor.hpp index 3ee64ceca..f8b1c8812 100644 --- a/include/aidge/data/Tensor.hpp +++ b/include/aidge/data/Tensor.hpp @@ -36,7 +36,7 @@ namespace Aidge { * Contains a pointer to an actual contiguous implementation of data. */ class Tensor : public Data, - public Registrable<Tensor, std::tuple<std::string, DataType>, std::shared_ptr<TensorImpl>(DeviceIdx_t device, std::vector<DimSize_t> dims)> { + public Registrable<Tensor, std::tuple<std::string, DataType>, std::function<std::shared_ptr<TensorImpl>(DeviceIdx_t device, std::vector<DimSize_t> dims)>> { private: DataType mDataType = DataType::Float32; /** enum to specify data type. */ DataFormat mDataFormat = DataFormat::Default; /** enum to specify data format. */ diff --git a/include/aidge/hook/Hook.hpp b/include/aidge/hook/Hook.hpp index 5e00db5d6..5edf231d5 100644 --- a/include/aidge/hook/Hook.hpp +++ b/include/aidge/hook/Hook.hpp @@ -24,8 +24,8 @@ namespace Aidge { class Operator; -class Hook : public Registrable<Hook, std::tuple<std::string>, std::shared_ptr<Hook>(const std::shared_ptr<Operator>)> { -//class Hook : public Registrable<Hook, std::tuple<std::string>, std::shared_ptr<Hook>(const std::shared_ptr<Operator>)>{ +class Hook : public Registrable<Hook, std::tuple<std::string>, std::function<std::shared_ptr<Hook>(const std::shared_ptr<Operator>)>> { +//class Hook : public Registrable<Hook, std::tuple<std::string>, std::function<std::shared_ptr<Hook>(const std::shared_ptr<Operator>)>>{ protected: const std::shared_ptr<Operator> mOperator; diff --git a/include/aidge/operator/Add.hpp b/include/aidge/operator/Add.hpp index 97db47672..b35a01923 100644 --- a/include/aidge/operator/Add.hpp +++ b/include/aidge/operator/Add.hpp @@ -24,7 +24,7 @@ namespace Aidge { class Add_Op : public OperatorTensor, - public Registrable<Add_Op, std::string, std::shared_ptr<OperatorImpl>(const Add_Op&)> { + public Registrable<Add_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Add_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/AvgPooling.hpp b/include/aidge/operator/AvgPooling.hpp index b2f4ce925..6fc7b596a 100644 --- a/include/aidge/operator/AvgPooling.hpp +++ b/include/aidge/operator/AvgPooling.hpp @@ -28,7 +28,7 @@ enum class AvgPoolingAttr { StrideDims, KernelDims }; template <DimIdx_t DIM> class AvgPooling_Op : public OperatorTensor, - public Registrable<AvgPooling_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const AvgPooling_Op<DIM> &)> { + public Registrable<AvgPooling_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const AvgPooling_Op<DIM> &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/BatchNorm.hpp b/include/aidge/operator/BatchNorm.hpp index 7f1f63c68..f09b52de4 100644 --- a/include/aidge/operator/BatchNorm.hpp +++ b/include/aidge/operator/BatchNorm.hpp @@ -28,7 +28,7 @@ enum class BatchNormAttr { Epsilon, Momentum }; template <DimIdx_t DIM> class BatchNorm_Op : public OperatorTensor, - public Registrable<BatchNorm_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const BatchNorm_Op<DIM> &)> { + public Registrable<BatchNorm_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const BatchNorm_Op<DIM> &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Cast.hpp b/include/aidge/operator/Cast.hpp index fd12f551a..58969c0e1 100644 --- a/include/aidge/operator/Cast.hpp +++ b/include/aidge/operator/Cast.hpp @@ -33,7 +33,7 @@ public: enum class CastAttr { TargetType }; class Cast_Op : public OperatorTensor, - public Registrable<Cast_Op, std::string, std::unique_ptr<OperatorImpl>(const Cast_Op&)> { + public Registrable<Cast_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Cast_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Concat.hpp b/include/aidge/operator/Concat.hpp index 46cd3a5a3..97db803c6 100644 --- a/include/aidge/operator/Concat.hpp +++ b/include/aidge/operator/Concat.hpp @@ -37,7 +37,7 @@ public: enum class ConcatAttr { Axis }; class Concat_Op : public OperatorTensor, - public Registrable<Concat_Op, std::string, std::shared_ptr<OperatorImpl>(const Concat_Op&)> { + public Registrable<Concat_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Concat_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Conv.hpp b/include/aidge/operator/Conv.hpp index 7366472d2..1a32b14b8 100644 --- a/include/aidge/operator/Conv.hpp +++ b/include/aidge/operator/Conv.hpp @@ -34,7 +34,7 @@ enum class ConvAttr { StrideDims, DilationDims, KernelDims }; template <DimIdx_t DIM> class Conv_Op : public OperatorTensor, - public Registrable<Conv_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const Conv_Op<DIM> &)> { + public Registrable<Conv_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Conv_Op<DIM> &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/ConvDepthWise.hpp b/include/aidge/operator/ConvDepthWise.hpp index 63d8e8419..a4665239f 100644 --- a/include/aidge/operator/ConvDepthWise.hpp +++ b/include/aidge/operator/ConvDepthWise.hpp @@ -33,7 +33,7 @@ enum class ConvDepthWiseAttr { StrideDims, DilationDims, KernelDims }; template <DimIdx_t DIM> class ConvDepthWise_Op : public OperatorTensor, - public Registrable<ConvDepthWise_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const ConvDepthWise_Op<DIM> &)> { + public Registrable<ConvDepthWise_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const ConvDepthWise_Op<DIM> &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Div.hpp b/include/aidge/operator/Div.hpp index b16a5e673..22fed0371 100644 --- a/include/aidge/operator/Div.hpp +++ b/include/aidge/operator/Div.hpp @@ -25,7 +25,7 @@ namespace Aidge { class Div_Op : public OperatorTensor, - public Registrable<Div_Op, std::string, std::shared_ptr<OperatorImpl>(const Div_Op&)> { + public Registrable<Div_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Div_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Erf.hpp b/include/aidge/operator/Erf.hpp index b6cc8f30c..b5c4d80bc 100644 --- a/include/aidge/operator/Erf.hpp +++ b/include/aidge/operator/Erf.hpp @@ -25,7 +25,7 @@ namespace Aidge { class Erf_Op : public OperatorTensor, - public Registrable<Erf_Op, std::string, std::shared_ptr<OperatorImpl>(const Erf_Op&)> { + public Registrable<Erf_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Erf_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/FC.hpp b/include/aidge/operator/FC.hpp index f1996fbae..cfd2747a7 100644 --- a/include/aidge/operator/FC.hpp +++ b/include/aidge/operator/FC.hpp @@ -27,7 +27,7 @@ namespace Aidge { class FC_Op : public OperatorTensor, public Registrable<FC_Op, std::string, - std::shared_ptr<OperatorImpl>(const FC_Op &)> { + std::function<std::shared_ptr<OperatorImpl>(const FC_Op &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Fold.hpp b/include/aidge/operator/Fold.hpp index aebe3879b..bbf838b0b 100644 --- a/include/aidge/operator/Fold.hpp +++ b/include/aidge/operator/Fold.hpp @@ -34,7 +34,7 @@ enum class FoldAttr { OutputDims, StrideDims, DilationDims, KernelDims }; template <DimIdx_t DIM> class Fold_Op : public OperatorTensor, - public Registrable<Fold_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const Fold_Op<DIM> &)> { + public Registrable<Fold_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Fold_Op<DIM> &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Gather.hpp b/include/aidge/operator/Gather.hpp index f2e3b0fe8..2122e89ac 100644 --- a/include/aidge/operator/Gather.hpp +++ b/include/aidge/operator/Gather.hpp @@ -36,7 +36,7 @@ enum class GatherAttr { Axis, Indices, GatheredShape }; class Gather_Op : public OperatorTensor, public Registrable<Gather_Op, std::string, - std::shared_ptr<OperatorImpl>(const Gather_Op&)> { + std::function<std::shared_ptr<OperatorImpl>(const Gather_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/GenericOperator.hpp b/include/aidge/operator/GenericOperator.hpp index 41516a397..106168c54 100644 --- a/include/aidge/operator/GenericOperator.hpp +++ b/include/aidge/operator/GenericOperator.hpp @@ -26,7 +26,7 @@ namespace Aidge { class GenericOperator_Op : public OperatorTensor, - public Registrable<GenericOperator_Op, std::string, std::unique_ptr<OperatorImpl>(std::shared_ptr<GenericOperator_Op>)> { + public Registrable<GenericOperator_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(std::shared_ptr<GenericOperator_Op>)>> { private: using ComputeDimsFunc = std::function<std::vector<std::vector<size_t>>(const std::vector<std::vector<size_t>>&)>; diff --git a/include/aidge/operator/GlobalAveragePooling.hpp b/include/aidge/operator/GlobalAveragePooling.hpp index 734e12344..4c139e63d 100644 --- a/include/aidge/operator/GlobalAveragePooling.hpp +++ b/include/aidge/operator/GlobalAveragePooling.hpp @@ -32,8 +32,8 @@ namespace Aidge { class GlobalAveragePooling_Op : public OperatorTensor, public Registrable<GlobalAveragePooling_Op, std::string, - std::shared_ptr<OperatorImpl>( - const GlobalAveragePooling_Op &)> { + std::function<std::shared_ptr<OperatorImpl>( + const GlobalAveragePooling_Op &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/GridSample.hpp b/include/aidge/operator/GridSample.hpp index af44a5df5..b5c99f027 100644 --- a/include/aidge/operator/GridSample.hpp +++ b/include/aidge/operator/GridSample.hpp @@ -29,7 +29,7 @@ enum class GridSampleAttr { Mode, PaddingMode, AlignCorners }; template <DimIdx_t DIM> class GridSample_Op : public OperatorTensor, - public Registrable<GridSample_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const GridSample_Op<DIM>&)> { + public Registrable<GridSample_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const GridSample_Op<DIM>&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Identity.hpp b/include/aidge/operator/Identity.hpp index 622d6290a..69ab82963 100644 --- a/include/aidge/operator/Identity.hpp +++ b/include/aidge/operator/Identity.hpp @@ -35,7 +35,7 @@ namespace Aidge { * */ class Identity_Op : public OperatorTensor, - public Registrable<Identity_Op, std::string, std::unique_ptr<OperatorImpl>(const Identity_Op&)> { + public Registrable<Identity_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Identity_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/LeakyReLU.hpp b/include/aidge/operator/LeakyReLU.hpp index 30d171eab..a6188221d 100644 --- a/include/aidge/operator/LeakyReLU.hpp +++ b/include/aidge/operator/LeakyReLU.hpp @@ -29,7 +29,7 @@ enum class LeakyReLUAttr { }; class LeakyReLU_Op : public OperatorTensor, - public Registrable<LeakyReLU_Op, std::string, std::shared_ptr<OperatorImpl>(const LeakyReLU_Op&)> { + public Registrable<LeakyReLU_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const LeakyReLU_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Ln.hpp b/include/aidge/operator/Ln.hpp index c6a9ec4c8..e606f670a 100755 --- a/include/aidge/operator/Ln.hpp +++ b/include/aidge/operator/Ln.hpp @@ -26,7 +26,7 @@ namespace Aidge { class Ln_Op : public OperatorTensor, - public Registrable<Ln_Op, std::string, std::unique_ptr<OperatorImpl>(const Ln_Op&)> { + public Registrable<Ln_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Ln_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/MatMul.hpp b/include/aidge/operator/MatMul.hpp index f81fb7bd0..25a60a429 100644 --- a/include/aidge/operator/MatMul.hpp +++ b/include/aidge/operator/MatMul.hpp @@ -26,7 +26,7 @@ namespace Aidge { class MatMul_Op : public OperatorTensor, public Registrable<MatMul_Op, std::string, - std::shared_ptr<OperatorImpl>(const MatMul_Op &)> { + std::function<std::shared_ptr<OperatorImpl>(const MatMul_Op &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/MaxPooling.hpp b/include/aidge/operator/MaxPooling.hpp index 3b7473a6a..ff0208aa9 100644 --- a/include/aidge/operator/MaxPooling.hpp +++ b/include/aidge/operator/MaxPooling.hpp @@ -33,7 +33,7 @@ enum class MaxPoolingAttr { StrideDims, KernelDims, CeilMode }; template <DimIdx_t DIM> class MaxPooling_Op : public OperatorTensor, - public Registrable<MaxPooling_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const MaxPooling_Op<DIM> &)> { + public Registrable<MaxPooling_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const MaxPooling_Op<DIM> &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Memorize.hpp b/include/aidge/operator/Memorize.hpp index a1d90f06f..8adac69f8 100644 --- a/include/aidge/operator/Memorize.hpp +++ b/include/aidge/operator/Memorize.hpp @@ -37,7 +37,7 @@ public: enum class MemorizeAttr { ScheduleStep, ForwardStep, EndStep }; class Memorize_Op : public OperatorTensor, - public Registrable<Memorize_Op, std::string, std::unique_ptr<OperatorImpl>(const Memorize_Op&)> { + public Registrable<Memorize_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Memorize_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/MetaOperator.hpp b/include/aidge/operator/MetaOperator.hpp index 69f2120d9..dc9f0e8ad 100644 --- a/include/aidge/operator/MetaOperator.hpp +++ b/include/aidge/operator/MetaOperator.hpp @@ -27,7 +27,7 @@ namespace Aidge { class MetaOperator_Op : public OperatorTensor, - public Registrable<MetaOperator_Op, std::array<std::string, 2>, std::unique_ptr<OperatorImpl>(const MetaOperator_Op &)> { + public Registrable<MetaOperator_Op, std::array<std::string, 2>, std::function<std::unique_ptr<OperatorImpl>(const MetaOperator_Op &)>> { public: // outputs shared with micro-graph output Tensors // Micro-graph handling: diff --git a/include/aidge/operator/Move.hpp b/include/aidge/operator/Move.hpp index 990891141..2aed78f99 100644 --- a/include/aidge/operator/Move.hpp +++ b/include/aidge/operator/Move.hpp @@ -31,7 +31,7 @@ public: }; class Move_Op : public OperatorTensor, - public Registrable<Move_Op, std::tuple<std::string, std::string>, std::unique_ptr<OperatorImpl>(const Move_Op&)> { + public Registrable<Move_Op, std::tuple<std::string, std::string>, std::function<std::unique_ptr<OperatorImpl>(const Move_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Mul.hpp b/include/aidge/operator/Mul.hpp index 35a4b7e06..519d4e1f9 100644 --- a/include/aidge/operator/Mul.hpp +++ b/include/aidge/operator/Mul.hpp @@ -28,7 +28,7 @@ namespace Aidge { * @brief Tensor element-wise multiplication. */ class Mul_Op : public OperatorTensor, - public Registrable<Mul_Op, std::string, std::shared_ptr<OperatorImpl>(const Mul_Op&)> { + public Registrable<Mul_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Mul_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Pad.hpp b/include/aidge/operator/Pad.hpp index bdb5330a6..d47549151 100644 --- a/include/aidge/operator/Pad.hpp +++ b/include/aidge/operator/Pad.hpp @@ -29,7 +29,7 @@ enum class PadBorderType { Constant, Edge, Reflect, Wrap }; template <DimIdx_t DIM> class Pad_Op : public OperatorTensor, - public Registrable<Pad_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const Pad_Op<DIM> &)> { + public Registrable<Pad_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Pad_Op<DIM> &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Pow.hpp b/include/aidge/operator/Pow.hpp index eaf4297fd..d38cb1a33 100644 --- a/include/aidge/operator/Pow.hpp +++ b/include/aidge/operator/Pow.hpp @@ -25,7 +25,7 @@ namespace Aidge { class Pow_Op : public OperatorTensor, - public Registrable<Pow_Op, std::string, std::shared_ptr<OperatorImpl>(const Pow_Op&)> { + public Registrable<Pow_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Pow_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Producer.hpp b/include/aidge/operator/Producer.hpp index 257a6965b..2b3d7684c 100644 --- a/include/aidge/operator/Producer.hpp +++ b/include/aidge/operator/Producer.hpp @@ -30,8 +30,8 @@ enum class ProdAttr { Constant }; class Producer_Op : public OperatorTensor, - public Registrable<Producer_Op, std::string, std::shared_ptr<OperatorImpl>( - const Producer_Op &)> { + public Registrable<Producer_Op, std::string, std::function<std::shared_ptr<OperatorImpl>( + const Producer_Op &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/ReLU.hpp b/include/aidge/operator/ReLU.hpp index cc714c461..350f30bc7 100644 --- a/include/aidge/operator/ReLU.hpp +++ b/include/aidge/operator/ReLU.hpp @@ -26,7 +26,7 @@ namespace Aidge { class ReLU_Op : public OperatorTensor, - public Registrable<ReLU_Op, std::string, std::shared_ptr<OperatorImpl>(const ReLU_Op&)> { + public Registrable<ReLU_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ReLU_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/ReduceMean.hpp b/include/aidge/operator/ReduceMean.hpp index 07beb0a39..ec7a0d4cd 100644 --- a/include/aidge/operator/ReduceMean.hpp +++ b/include/aidge/operator/ReduceMean.hpp @@ -29,7 +29,7 @@ namespace Aidge { enum class ReduceMeanAttr { Axes, KeepDims }; class ReduceMean_Op : public OperatorTensor, - public Registrable<ReduceMean_Op, std::string, std::shared_ptr<OperatorImpl>(const ReduceMean_Op &)> { + public Registrable<ReduceMean_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ReduceMean_Op &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Reshape.hpp b/include/aidge/operator/Reshape.hpp index 5bd9b3e8d..16d14a19c 100644 --- a/include/aidge/operator/Reshape.hpp +++ b/include/aidge/operator/Reshape.hpp @@ -32,7 +32,7 @@ public: enum class ReshapeAttr { Shape, AllowZero }; class Reshape_Op : public OperatorTensor, - public Registrable<Reshape_Op, std::string, std::shared_ptr<OperatorImpl>(const Reshape_Op&)> { + public Registrable<Reshape_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Reshape_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Resize.hpp b/include/aidge/operator/Resize.hpp index 622a1ff1b..e3551d72d 100644 --- a/include/aidge/operator/Resize.hpp +++ b/include/aidge/operator/Resize.hpp @@ -25,7 +25,7 @@ namespace Aidge { class Resize_Op : public OperatorTensor, - public Registrable<Resize_Op, std::string, std::shared_ptr<OperatorImpl>(const Resize_Op&)>{ + public Registrable<Resize_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Resize_Op&)>>{ public: static const std::string Type; diff --git a/include/aidge/operator/Scaling.hpp b/include/aidge/operator/Scaling.hpp index 311dc0202..15393755f 100644 --- a/include/aidge/operator/Scaling.hpp +++ b/include/aidge/operator/Scaling.hpp @@ -30,7 +30,7 @@ enum class ScalingAttr { class Scaling_Op : public OperatorTensor, - public Registrable<Scaling_Op, std::string, std::shared_ptr<OperatorImpl>(const Scaling_Op&)> { + public Registrable<Scaling_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Scaling_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Shape.hpp b/include/aidge/operator/Shape.hpp index d76a9fd06..ebe345d15 100644 --- a/include/aidge/operator/Shape.hpp +++ b/include/aidge/operator/Shape.hpp @@ -36,7 +36,7 @@ enum class ShapeAttr { Start, End }; class Shape_Op : public OperatorTensor, public Registrable<Shape_Op, std::string, - std::shared_ptr<OperatorImpl>(const Shape_Op&)> { + std::function<std::shared_ptr<OperatorImpl>(const Shape_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/ShiftGELU.hpp b/include/aidge/operator/ShiftGELU.hpp index 4d3000750..d157a9202 100644 --- a/include/aidge/operator/ShiftGELU.hpp +++ b/include/aidge/operator/ShiftGELU.hpp @@ -28,7 +28,7 @@ namespace Aidge { class ShiftGELU_Op : public OperatorTensor, - public Registrable<ShiftGELU_Op, std::string, std::shared_ptr<OperatorImpl>(const ShiftGELU_Op&)> { + public Registrable<ShiftGELU_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ShiftGELU_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/ShiftMax.hpp b/include/aidge/operator/ShiftMax.hpp index d75e6559f..c37948625 100644 --- a/include/aidge/operator/ShiftMax.hpp +++ b/include/aidge/operator/ShiftMax.hpp @@ -28,7 +28,7 @@ namespace Aidge { class ShiftMax_Op : public OperatorTensor, - public Registrable<ShiftMax_Op, std::string, std::shared_ptr<OperatorImpl>(const ShiftMax_Op&)> { + public Registrable<ShiftMax_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const ShiftMax_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Sigmoid.hpp b/include/aidge/operator/Sigmoid.hpp index b3204240c..a18fc6df0 100644 --- a/include/aidge/operator/Sigmoid.hpp +++ b/include/aidge/operator/Sigmoid.hpp @@ -26,7 +26,7 @@ namespace Aidge { class Sigmoid_Op : public OperatorTensor, - public Registrable<Sigmoid_Op, std::string, std::unique_ptr<OperatorImpl>(const Sigmoid_Op&)> { + public Registrable<Sigmoid_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Sigmoid_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Slice.hpp b/include/aidge/operator/Slice.hpp index 241e165a0..5eba32c1d 100644 --- a/include/aidge/operator/Slice.hpp +++ b/include/aidge/operator/Slice.hpp @@ -29,7 +29,7 @@ enum class SliceAttr { Starts, Ends, Axes, Steps }; class Slice_Op : public OperatorTensor, - public Registrable<Slice_Op, std::string, std::shared_ptr<OperatorImpl>(const Slice_Op &)> { + public Registrable<Slice_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Slice_Op &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Softmax.hpp b/include/aidge/operator/Softmax.hpp index c221a67e3..eb21cac38 100644 --- a/include/aidge/operator/Softmax.hpp +++ b/include/aidge/operator/Softmax.hpp @@ -29,7 +29,7 @@ enum class SoftmaxAttr { Axis }; class Softmax_Op : public OperatorTensor, public Registrable<Softmax_Op, std::string, - std::shared_ptr<OperatorImpl>(const Softmax_Op&)> { + std::function<std::shared_ptr<OperatorImpl>(const Softmax_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Split.hpp b/include/aidge/operator/Split.hpp index 661f9e32d..66d23547d 100644 --- a/include/aidge/operator/Split.hpp +++ b/include/aidge/operator/Split.hpp @@ -34,7 +34,7 @@ enum class SplitAttr { Axis, Split }; class Split_Op : public OperatorTensor, - public Registrable<Split_Op, std::string, std::shared_ptr<OperatorImpl>(const Split_Op &)> { + public Registrable<Split_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Split_Op &)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Sqrt.hpp b/include/aidge/operator/Sqrt.hpp index ce4aaafc9..e3c7ba28c 100644 --- a/include/aidge/operator/Sqrt.hpp +++ b/include/aidge/operator/Sqrt.hpp @@ -26,7 +26,7 @@ namespace Aidge { class Sqrt_Op : public OperatorTensor, public Registrable<Sqrt_Op, std::string, - std::shared_ptr<OperatorImpl>(const Sqrt_Op&)> { + std::function<std::shared_ptr<OperatorImpl>(const Sqrt_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Sub.hpp b/include/aidge/operator/Sub.hpp index bb29ba678..a7c3fd16f 100644 --- a/include/aidge/operator/Sub.hpp +++ b/include/aidge/operator/Sub.hpp @@ -25,7 +25,7 @@ namespace Aidge { class Sub_Op : public OperatorTensor, - public Registrable<Sub_Op, std::string, std::shared_ptr<OperatorImpl>(const Sub_Op&)> { + public Registrable<Sub_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Sub_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Tanh.hpp b/include/aidge/operator/Tanh.hpp index fd05bf7c4..9731fc9c1 100644 --- a/include/aidge/operator/Tanh.hpp +++ b/include/aidge/operator/Tanh.hpp @@ -24,7 +24,7 @@ namespace Aidge { class Tanh_Op : public OperatorTensor, - public Registrable<Tanh_Op, std::string, std::unique_ptr<OperatorImpl>(const Tanh_Op&)> { + public Registrable<Tanh_Op, std::string, std::function<std::unique_ptr<OperatorImpl>(const Tanh_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Transpose.hpp b/include/aidge/operator/Transpose.hpp index 375d6e098..ba96a6c69 100644 --- a/include/aidge/operator/Transpose.hpp +++ b/include/aidge/operator/Transpose.hpp @@ -36,7 +36,7 @@ public: enum class TransposeAttr { OutputDimsOrder }; class Transpose_Op : public OperatorTensor, - public Registrable<Transpose_Op, std::string, std::shared_ptr<OperatorImpl>(const Transpose_Op&)> { + public Registrable<Transpose_Op, std::string, std::function<std::shared_ptr<OperatorImpl>(const Transpose_Op&)>> { public: static const std::string Type; diff --git a/include/aidge/operator/Unfold.hpp b/include/aidge/operator/Unfold.hpp index 3fda7c214..63b802595 100644 --- a/include/aidge/operator/Unfold.hpp +++ b/include/aidge/operator/Unfold.hpp @@ -41,7 +41,7 @@ enum class UnfoldAttr { StrideDims, DilationDims, KernelDims }; template <DimIdx_t DIM> class Unfold_Op : public OperatorTensor, - public Registrable<Unfold_Op<DIM>, std::string, std::shared_ptr<OperatorImpl>(const Unfold_Op<DIM> &)> { + public Registrable<Unfold_Op<DIM>, std::string, std::function<std::shared_ptr<OperatorImpl>(const Unfold_Op<DIM> &)>> { public: static const std::string Type; diff --git a/include/aidge/stimuli/Stimulus.hpp b/include/aidge/stimuli/Stimulus.hpp index 80e7c76d4..3def790b6 100644 --- a/include/aidge/stimuli/Stimulus.hpp +++ b/include/aidge/stimuli/Stimulus.hpp @@ -26,7 +26,7 @@ namespace Aidge { * @brief Stimulus. A class wrapping a data sample. Stimulus has two functioning modes. The first mode enables to load data samples from a dataPath and optionnaly store the data in-memory. The second mode enables to store a data sample that was already loaded in memory. * @details When Stimulus is used in the first mode, the loading function is determined automaticaly based on the backend and the file extension. */ -class Stimulus : public Registrable<Stimulus, std::tuple<std::string, std::string>, std::unique_ptr<StimulusImpl>(const std::string&)> { +class Stimulus : public Registrable<Stimulus, std::tuple<std::string, std::string>, std::function<std::unique_ptr<StimulusImpl>(const std::string&)>> { private: /// Stimulus data path const std::string mDataPath; diff --git a/include/aidge/utils/Registrar.hpp b/include/aidge/utils/Registrar.hpp index 872c3f6b5..1d76d859e 100644 --- a/include/aidge/utils/Registrar.hpp +++ b/include/aidge/utils/Registrar.hpp @@ -37,21 +37,21 @@ template <class DerivedClass, class Key, class Func> // curiously rucurring temp class Registrable { public: typedef Key registrar_key; - typedef std::function<Func> registrar_type; + typedef Func registrar_type; - static std::map<Key, std::function<Func>>& registry() + static std::map<Key, Func>& registry() { #ifdef PYBIND #define _CRT_SECURE_NO_WARNINGS if (Py_IsInitialized()){ std::string name = std::string("registrar_")+typeid(Registrable<DerivedClass, Key, Func>).name(); - static auto shared_data = reinterpret_cast<std::map<Key, std::function<Func>> *>(py::get_shared_data(name)); + static auto shared_data = reinterpret_cast<std::map<Key, Func> *>(py::get_shared_data(name)); if (!shared_data) - shared_data = static_cast<std::map<Key, std::function<Func>> *>(py::set_shared_data(name, new std::map<Key, std::function<Func>>())); + shared_data = static_cast<std::map<Key, Func> *>(py::set_shared_data(name, new std::map<Key, Func>())); return *shared_data; } #endif // PYBIND - static std::map<Key, std::function<Func>> rMap; + static std::map<Key, Func> rMap; return rMap; } @@ -77,7 +77,7 @@ struct Registrar { static auto create(const registrar_key& key) { AIDGE_ASSERT(exists(key), "missing or invalid registrar key: {} for registrable object {}\nDid you include/import the corresponding module?\nIf so, it is possible that the object is not yet supported.", key, typeid(C).name()); - return C::registry()[key]; + return C::registry().at(key); } static std::vector<registrar_key> getKeys(){ std::vector<registrar_key> keys; diff --git a/python_binding/data/pybind_Tensor.cpp b/python_binding/data/pybind_Tensor.cpp index d4d6edc9c..8f96c28d4 100644 --- a/python_binding/data/pybind_Tensor.cpp +++ b/python_binding/data/pybind_Tensor.cpp @@ -25,7 +25,7 @@ namespace Aidge { using registrableTensor = Registrable<Tensor, std::tuple<std::string, DataType>, - std::shared_ptr<TensorImpl>(DeviceIdx_t device, std::vector<DimSize_t> dims)>; + std::function<std::shared_ptr<TensorImpl>(DeviceIdx_t device, std::vector<DimSize_t> dims)>>; using pyTensorClass = py::class_<Tensor, std::shared_ptr<Tensor>, -- GitLab