From 8949651e4620cff0b0aafb2e3f39f609de103450 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 5 Dec 2023 10:31:17 +0000 Subject: [PATCH] Change 'const char*' with 'const std::string' in every operator #2 --- include/aidge/operator/Add.hpp | 6 +++--- include/aidge/operator/AvgPooling.hpp | 5 ++++- include/aidge/operator/BatchNorm.hpp | 5 ++++- include/aidge/operator/Concat.hpp | 2 +- include/aidge/operator/Conv.hpp | 5 ++++- include/aidge/operator/ConvDepthWise.hpp | 5 ++++- include/aidge/operator/Div.hpp | 2 +- include/aidge/operator/FC.hpp | 2 +- include/aidge/operator/GenericOperator.hpp | 4 ++-- include/aidge/operator/Identity.hpp | 4 +++- include/aidge/operator/LeakyReLU.hpp | 2 +- include/aidge/operator/MatMul.hpp | 2 +- include/aidge/operator/MaxPooling.hpp | 5 ++++- include/aidge/operator/Mul.hpp | 2 +- include/aidge/operator/Operator.hpp | 2 +- include/aidge/operator/OperatorTensor.hpp | 2 +- include/aidge/operator/Pad.hpp | 5 ++++- include/aidge/operator/Pow.hpp | 2 +- include/aidge/operator/Producer.hpp | 2 +- include/aidge/operator/ReLU.hpp | 2 +- include/aidge/operator/Scaling.hpp | 2 +- include/aidge/operator/Slice.hpp | 5 ++++- include/aidge/operator/Softmax.hpp | 2 +- include/aidge/operator/Sqrt.hpp | 2 +- include/aidge/operator/Sub.hpp | 2 +- src/operator/Add.cpp | 16 ++++++++++++++++ src/operator/Concat.cpp | 16 ++++++++++++++++ src/operator/Div.cpp | 3 +++ src/operator/FC.cpp | 16 ++++++++++++++++ src/operator/Identity.cpp | 16 ++++++++++++++++ src/operator/LeakyReLU.cpp | 16 ++++++++++++++++ src/operator/MatMul.cpp | 16 ++++++++++++++++ src/operator/Pow.cpp | 2 ++ src/operator/Producer.cpp | 16 ++++++++++++++++ src/operator/ReLU.cpp | 16 ++++++++++++++++ src/operator/Scaling.cpp | 16 ++++++++++++++++ src/operator/Softmax.cpp | 16 ++++++++++++++++ src/operator/Sqrt.cpp | 16 ++++++++++++++++ src/operator/Sub.cpp | 2 ++ 39 files changed, 234 insertions(+), 28 deletions(-) create mode 100644 src/operator/Add.cpp create mode 100644 src/operator/Concat.cpp create mode 100644 src/operator/FC.cpp create mode 100644 src/operator/Identity.cpp create mode 100644 src/operator/LeakyReLU.cpp create mode 100644 src/operator/MatMul.cpp create mode 100644 src/operator/Producer.cpp create mode 100644 src/operator/ReLU.cpp create mode 100644 src/operator/Scaling.cpp create mode 100644 src/operator/Softmax.cpp create mode 100644 src/operator/Sqrt.cpp diff --git a/include/aidge/operator/Add.hpp b/include/aidge/operator/Add.hpp index 0c2854029..c53cd7a53 100644 --- a/include/aidge/operator/Add.hpp +++ b/include/aidge/operator/Add.hpp @@ -30,7 +30,7 @@ namespace Aidge { class Add_Op : public OperatorTensor, public Registrable<Add_Op, std::string, std::unique_ptr<OperatorImpl>(const Add_Op&)> { public: - static constexpr const char* Type = "Add"; + static const std::string Type; Add_Op(const IOIndex_t nbIn) : OperatorTensor(Type, nbIn, 0, 1) @@ -86,10 +86,10 @@ public: } } - static const std::vector<std::string> getInputsName(){ + static const std::vector<std::string> getInputsName() { return {"data_input_0", "data_input_n"}; } - static const std::vector<std::string> getOutputsName(){ + static const std::vector<std::string> getOutputsName() { return {"data_output"}; } }; diff --git a/include/aidge/operator/AvgPooling.hpp b/include/aidge/operator/AvgPooling.hpp index f0f9f6c54..64f583ac2 100644 --- a/include/aidge/operator/AvgPooling.hpp +++ b/include/aidge/operator/AvgPooling.hpp @@ -36,7 +36,7 @@ class AvgPooling_Op : public OperatorTensor, std::array<DimSize_t, DIM>> { public: - static constexpr const char *Type = "AvgPooling"; + static const std::string Type; AvgPooling_Op() = delete; @@ -146,6 +146,9 @@ public: } }; +template <DimIdx_t DIM> +const std::string AvgPooling_Op<DIM>::Type = "AvgPooling"; + template <std::array<DimSize_t, 1>::size_type DIM> inline std::shared_ptr<Node> AvgPooling(const std::array<DimSize_t, DIM> &kernel_dims, const std::string& name = "", diff --git a/include/aidge/operator/BatchNorm.hpp b/include/aidge/operator/BatchNorm.hpp index 09a9bb9ef..3613aa12b 100644 --- a/include/aidge/operator/BatchNorm.hpp +++ b/include/aidge/operator/BatchNorm.hpp @@ -33,7 +33,7 @@ class BatchNorm_Op : public OperatorTensor, public Registrable<BatchNorm_Op<DIM>, std::string, std::unique_ptr<OperatorImpl>(const BatchNorm_Op<DIM> &)>, public StaticAttributes<BatchNormAttr, float, float> { public: - static constexpr const char *Type = "BatchNorm"; + static const std::string Type; BatchNorm_Op() = delete; @@ -113,6 +113,9 @@ public: } }; +template <DimIdx_t DIM> +const std::string BatchNorm_Op<DIM>::Type = "BatchNorm"; + template <DimSize_t DIM> inline std::shared_ptr<Node> BatchNorm(const float epsilon = 1.0e-5F, const float momentum = 0.1F, diff --git a/include/aidge/operator/Concat.hpp b/include/aidge/operator/Concat.hpp index 01d590aa7..391191f66 100644 --- a/include/aidge/operator/Concat.hpp +++ b/include/aidge/operator/Concat.hpp @@ -32,7 +32,7 @@ class Concat_Op : public OperatorTensor, public Registrable<Concat_Op, std::string, std::unique_ptr<OperatorImpl>(const Concat_Op&)>, public StaticAttributes<ConcatAttr, DimSize_t> { public: - static constexpr const char* Type = "Concat"; + static const std::string Type; using Attributes_ = StaticAttributes<ConcatAttr, DimSize_t>; template <ConcatAttr e> diff --git a/include/aidge/operator/Conv.hpp b/include/aidge/operator/Conv.hpp index 4f0fb1ea2..8129e49f0 100644 --- a/include/aidge/operator/Conv.hpp +++ b/include/aidge/operator/Conv.hpp @@ -36,7 +36,7 @@ class Conv_Op : public OperatorTensor, DimSize_t, std::array<DimSize_t, DIM>> { public: - static constexpr const char *Type = "Conv"; + static const std::string Type; Conv_Op() = delete; @@ -186,6 +186,9 @@ public: } }; +template <DimIdx_t DIM> +const std::string Conv_Op<DIM>::Type = "Conv"; + template <std::array<DimSize_t, 1>::size_type DIM> inline std::shared_ptr<Node> Conv(DimSize_t inChannels, DimSize_t outChannels, diff --git a/include/aidge/operator/ConvDepthWise.hpp b/include/aidge/operator/ConvDepthWise.hpp index ca6401e0e..98ecfa8c8 100644 --- a/include/aidge/operator/ConvDepthWise.hpp +++ b/include/aidge/operator/ConvDepthWise.hpp @@ -37,7 +37,7 @@ class ConvDepthWise_Op : public OperatorTensor, DimSize_t, std::array<DimSize_t, DIM>> { public: - static constexpr const char *Type = "ConvDepthWise"; + static const std::string Type; ConvDepthWise_Op() = delete; @@ -168,6 +168,9 @@ public: } }; +template <DimIdx_t DIM> +const std::string ConvDepthWise_Op<DIM>::Type = "ConvDepthWise"; + template <std::array<DimSize_t, 1>::size_type DIM> inline std::shared_ptr<Node> ConvDepthWise(const DimSize_t nbChannels, const std::array<DimSize_t, DIM> &kernelDims, diff --git a/include/aidge/operator/Div.hpp b/include/aidge/operator/Div.hpp index ba76c0bde..a3c0eca67 100644 --- a/include/aidge/operator/Div.hpp +++ b/include/aidge/operator/Div.hpp @@ -29,7 +29,7 @@ class Div_Op : public OperatorTensor, public Registrable<Div_Op, std::string, std::unique_ptr<OperatorImpl>(const Div_Op&)> { public: - static constexpr const char* Type = "Div"; + static const std::string Type; Div_Op() : OperatorTensor(Type, 2, 0, 1) {} diff --git a/include/aidge/operator/FC.hpp b/include/aidge/operator/FC.hpp index 4cece292c..764642f49 100644 --- a/include/aidge/operator/FC.hpp +++ b/include/aidge/operator/FC.hpp @@ -35,7 +35,7 @@ class FC_Op : public OperatorTensor, std::unique_ptr<OperatorImpl>(const FC_Op &)>, public StaticAttributes<FCAttr, DimSize_t, bool> { public: - static constexpr const char* Type = "FC"; + static const std::string Type; FC_Op() = delete; diff --git a/include/aidge/operator/GenericOperator.hpp b/include/aidge/operator/GenericOperator.hpp index 505c53449..0d0008c63 100644 --- a/include/aidge/operator/GenericOperator.hpp +++ b/include/aidge/operator/GenericOperator.hpp @@ -36,7 +36,7 @@ private: ComputeDimsFunc mComputeOutputDims; public: - GenericOperator_Op(const char *type, IOIndex_t nbData, IOIndex_t nbParam, IOIndex_t nbOut) + GenericOperator_Op(const std::string& type, IOIndex_t nbData, IOIndex_t nbParam, IOIndex_t nbOut) : OperatorTensor(type, nbData, nbParam, nbOut) {} @@ -125,7 +125,7 @@ public: * @param name (optional) name of the Operator. * @return std::shared_ptr<Node> Node associated with the Generic Operator. */ -inline std::shared_ptr<Node> GenericOperator(const char *type, IOIndex_t nbData, IOIndex_t nbParam, IOIndex_t nbOut, +inline std::shared_ptr<Node> GenericOperator(const std::string& type, IOIndex_t nbData, IOIndex_t nbParam, IOIndex_t nbOut, const std::string& name = "") { return std::make_shared<Node>(std::make_shared<GenericOperator_Op>(type, nbData, nbParam, nbOut), name); } diff --git a/include/aidge/operator/Identity.hpp b/include/aidge/operator/Identity.hpp index c5cd9bb62..c0be78646 100644 --- a/include/aidge/operator/Identity.hpp +++ b/include/aidge/operator/Identity.hpp @@ -37,7 +37,7 @@ namespace Aidge { class Identity_Op : public OperatorTensor, public Registrable<Identity_Op, std::string, std::unique_ptr<OperatorImpl>(const Identity_Op&)> { public: - static constexpr const char* Type = "Identity"; + static const std::string Type; Identity_Op() : OperatorTensor(Type, 1, 0, 0) @@ -105,9 +105,11 @@ public: } void setBackend(const std::string& name) override final { // setBackend do nothing, Identity node has no backend it just pass the same Tensor + (void) name; } void setDataType(const DataType& dataType) const override final { // setDatatype do nothing, Identity node has no backend it just pass the same Tensor + (void) dataType; } static const std::vector<std::string> getInputsName(){ diff --git a/include/aidge/operator/LeakyReLU.hpp b/include/aidge/operator/LeakyReLU.hpp index 800c8c61d..eee573332 100644 --- a/include/aidge/operator/LeakyReLU.hpp +++ b/include/aidge/operator/LeakyReLU.hpp @@ -33,7 +33,7 @@ class LeakyReLU_Op : public OperatorTensor, public Registrable<LeakyReLU_Op, std::string, std::unique_ptr<OperatorImpl>(const LeakyReLU_Op&)>, public StaticAttributes<LeakyReLUAttr, float> { public: - static constexpr const char* Type = "LeakyReLU"; + static const std::string Type; LeakyReLU_Op() = delete; diff --git a/include/aidge/operator/MatMul.hpp b/include/aidge/operator/MatMul.hpp index 23c12d458..cf9305d0d 100644 --- a/include/aidge/operator/MatMul.hpp +++ b/include/aidge/operator/MatMul.hpp @@ -35,7 +35,7 @@ class MatMul_Op : public OperatorTensor, std::unique_ptr<OperatorImpl>(const MatMul_Op &)>, public StaticAttributes<MatMulAttr, DimSize_t> { public: - static constexpr const char* Type = "MatMul"; + static const std::string Type; MatMul_Op() = delete; diff --git a/include/aidge/operator/MaxPooling.hpp b/include/aidge/operator/MaxPooling.hpp index ad50a27a9..4235aee0b 100644 --- a/include/aidge/operator/MaxPooling.hpp +++ b/include/aidge/operator/MaxPooling.hpp @@ -36,7 +36,7 @@ class MaxPooling_Op : public OperatorTensor, std::array<DimSize_t, DIM>, bool> { public: - static constexpr const char *Type = "MaxPooling"; + static const std::string Type; MaxPooling_Op() = delete; @@ -120,6 +120,9 @@ public: } }; +template <DimIdx_t DIM> +const std::string MaxPooling_Op<DIM>::Type = "MaxPooling"; + template <std::array<DimSize_t, 1>::size_type DIM> inline std::shared_ptr<Node> MaxPooling(const std::array<DimSize_t, DIM> &kernel_dims, const std::string& name = "", diff --git a/include/aidge/operator/Mul.hpp b/include/aidge/operator/Mul.hpp index 5b9ab4eb8..01b199e4e 100644 --- a/include/aidge/operator/Mul.hpp +++ b/include/aidge/operator/Mul.hpp @@ -31,7 +31,7 @@ namespace Aidge { class Mul_Op : public OperatorTensor, public Registrable<Mul_Op, std::string, std::unique_ptr<OperatorImpl>(const Mul_Op&)> { public: - static constexpr const char* Type = "Mul"; + static const std::string Type; Mul_Op() : OperatorTensor(Type, 2, 0, 1) {} diff --git a/include/aidge/operator/Operator.hpp b/include/aidge/operator/Operator.hpp index b0f8435bd..1fd8172b5 100644 --- a/include/aidge/operator/Operator.hpp +++ b/include/aidge/operator/Operator.hpp @@ -44,7 +44,7 @@ private: public: Operator() = delete; - Operator(const char* type, const IOIndex_t nbData, const IOIndex_t nbParam, const IOIndex_t nbOut, const OperatorType operatorType = OperatorType::Data) + Operator(const std::string& type, const IOIndex_t nbData, const IOIndex_t nbParam, const IOIndex_t nbOut, const OperatorType operatorType = OperatorType::Data) : mType(type), mOperatorType(operatorType), mNbData(nbData), diff --git a/include/aidge/operator/OperatorTensor.hpp b/include/aidge/operator/OperatorTensor.hpp index a55d7ac28..218a380f2 100644 --- a/include/aidge/operator/OperatorTensor.hpp +++ b/include/aidge/operator/OperatorTensor.hpp @@ -40,7 +40,7 @@ protected: public: OperatorTensor() = delete; - OperatorTensor(const char* type, const IOIndex_t nbData, const IOIndex_t nbParam, + OperatorTensor(const std::string& type, const IOIndex_t nbData, const IOIndex_t nbParam, const IOIndex_t nbOut) : Operator(type, nbData, nbParam, nbOut, OperatorType::Tensor), mInputs(std::vector<std::shared_ptr<Tensor>>(nbData + nbParam, nullptr)), diff --git a/include/aidge/operator/Pad.hpp b/include/aidge/operator/Pad.hpp index 279b8b3d2..38829bab6 100644 --- a/include/aidge/operator/Pad.hpp +++ b/include/aidge/operator/Pad.hpp @@ -37,7 +37,7 @@ class Pad_Op : public OperatorTensor, PadBorderType, double> { public: - static constexpr const char *Type = "Pad"; + static const std::string Type; Pad_Op() = delete; @@ -113,6 +113,9 @@ public: } }; +template <DimIdx_t DIM> +const std::string Pad_Op<DIM>::Type = "Pad"; + template <std::array<DimSize_t, 1>::size_type DIM> inline std::shared_ptr<Node> Pad(const std::array<DimSize_t, 2*DIM> &beginEndTuples, const std::string& name = "", diff --git a/include/aidge/operator/Pow.hpp b/include/aidge/operator/Pow.hpp index 0b0ae82f0..97bad75dc 100644 --- a/include/aidge/operator/Pow.hpp +++ b/include/aidge/operator/Pow.hpp @@ -29,7 +29,7 @@ namespace Aidge { class Pow_Op : public OperatorTensor, public Registrable<Pow_Op, std::string, std::unique_ptr<OperatorImpl>(const Pow_Op&)> { public: - static constexpr const char* Type = "Pow"; + static const std::string Type; Pow_Op() : OperatorTensor(Type, 2, 0, 1) {} diff --git a/include/aidge/operator/Producer.hpp b/include/aidge/operator/Producer.hpp index fb6a20403..d6060dd6c 100644 --- a/include/aidge/operator/Producer.hpp +++ b/include/aidge/operator/Producer.hpp @@ -29,7 +29,7 @@ class Producer_Op public Registrable<Producer_Op, std::string, std::unique_ptr<OperatorImpl>( const Producer_Op &)> { public: - static constexpr const char* Type = "Producer"; + static const std::string Type; template <std::size_t DIM> Producer_Op(const std::array<DimSize_t, DIM>& dims) diff --git a/include/aidge/operator/ReLU.hpp b/include/aidge/operator/ReLU.hpp index 3444c25fc..825e86f47 100644 --- a/include/aidge/operator/ReLU.hpp +++ b/include/aidge/operator/ReLU.hpp @@ -28,7 +28,7 @@ namespace Aidge { class ReLU_Op : public OperatorTensor, public Registrable<ReLU_Op, std::string, std::unique_ptr<OperatorImpl>(const ReLU_Op&)> { public: - static constexpr const char* Type = "ReLU"; + static const std::string Type; ReLU_Op() : OperatorTensor(Type, 1, 0, 1) {} diff --git a/include/aidge/operator/Scaling.hpp b/include/aidge/operator/Scaling.hpp index fd6d6bcfc..2c4a5c5dc 100644 --- a/include/aidge/operator/Scaling.hpp +++ b/include/aidge/operator/Scaling.hpp @@ -32,7 +32,7 @@ class Scaling_Op : public OperatorTensor, public Registrable<Scaling_Op, std::string, std::unique_ptr<OperatorImpl>(const Scaling_Op&)>, public StaticAttributes<ScalingAttr, float, size_t, bool> { public: - static constexpr const char* Type = "Scaling"; + static const std::string Type; Scaling_Op() = delete; diff --git a/include/aidge/operator/Slice.hpp b/include/aidge/operator/Slice.hpp index 7bdbd8099..b449f91af 100644 --- a/include/aidge/operator/Slice.hpp +++ b/include/aidge/operator/Slice.hpp @@ -32,7 +32,7 @@ class Slice_Op public Registrable<Slice_Op<DIM>, std::string, std::unique_ptr<OperatorImpl>(const Slice_Op<DIM> &)>, public StaticAttributes<SliceAttr, std::size_t, std::array<DimSize_t, DIM>> { public: - static constexpr const char *Type = "Slice"; + static const std::string Type; Slice_Op() = delete; @@ -111,6 +111,9 @@ public: } }; +template <DimIdx_t DIM> +const std::string Slice_Op<DIM>::Type = "Slice"; + template <std::size_t DIM> inline std::shared_ptr<Node> Slice(std::size_t beginningPos, std::array<DimSize_t, DIM> sliceDims, const std::string &name = "") { diff --git a/include/aidge/operator/Softmax.hpp b/include/aidge/operator/Softmax.hpp index cc19cb821..f7a1201f5 100644 --- a/include/aidge/operator/Softmax.hpp +++ b/include/aidge/operator/Softmax.hpp @@ -29,7 +29,7 @@ namespace Aidge { class Softmax_Op : public OperatorTensor, public Registrable<Softmax_Op, std::string, std::unique_ptr<OperatorImpl>(const Softmax_Op&)> { public: - static constexpr const char* Type = "Softmax"; + static const std::string Type; Softmax_Op() : OperatorTensor(Type, 1, 0, 1) {} diff --git a/include/aidge/operator/Sqrt.hpp b/include/aidge/operator/Sqrt.hpp index a4069b59b..d4c95d294 100644 --- a/include/aidge/operator/Sqrt.hpp +++ b/include/aidge/operator/Sqrt.hpp @@ -34,7 +34,7 @@ public: const std::shared_ptr<Tensor> mOutput = std::make_shared<Tensor>(); public: - static constexpr const char* Type = "Sqrt"; + static const std::string Type; Sqrt_Op() : OperatorTensor(Type, 1, 0, 1) {} diff --git a/include/aidge/operator/Sub.hpp b/include/aidge/operator/Sub.hpp index becf98926..5d52102d9 100644 --- a/include/aidge/operator/Sub.hpp +++ b/include/aidge/operator/Sub.hpp @@ -34,7 +34,7 @@ public: const std::shared_ptr<Tensor> mOutput = std::make_shared<Tensor>(); public: - static constexpr const char* Type = "Sub"; + static const std::string Type; Sub_Op() : OperatorTensor(Type, 2, 0, 1) {} diff --git a/src/operator/Add.cpp b/src/operator/Add.cpp new file mode 100644 index 000000000..4e638fd86 --- /dev/null +++ b/src/operator/Add.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/Add.hpp" + +const std::string Aidge::Add_Op::Type = "Add"; \ No newline at end of file diff --git a/src/operator/Concat.cpp b/src/operator/Concat.cpp new file mode 100644 index 000000000..eafcd1264 --- /dev/null +++ b/src/operator/Concat.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/Concat.hpp" + +const std::string Aidge::Concat_Op::Type = "Concat"; \ No newline at end of file diff --git a/src/operator/Div.cpp b/src/operator/Div.cpp index 273eac2e8..85db3ac6e 100644 --- a/src/operator/Div.cpp +++ b/src/operator/Div.cpp @@ -11,6 +11,7 @@ #include <cassert> #include <cstddef> +#include <string> #include <vector> #include <utility> @@ -19,6 +20,8 @@ #include "aidge/utils/Types.h" #include "aidge/utils/ErrorHandling.hpp" +const std::string Aidge::Div_Op::Type = "Div"; + void Aidge::Div_Op::computeOutputDims() { // check inputs have been associated if (!getInput(0) || !getInput(1)) { diff --git a/src/operator/FC.cpp b/src/operator/FC.cpp new file mode 100644 index 000000000..32114f5bf --- /dev/null +++ b/src/operator/FC.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/FC.hpp" + +const std::string Aidge::FC_Op::Type = "FC"; \ No newline at end of file diff --git a/src/operator/Identity.cpp b/src/operator/Identity.cpp new file mode 100644 index 000000000..f57906dd4 --- /dev/null +++ b/src/operator/Identity.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/Identity.hpp" + +const std::string Aidge::Identity_Op::Type = "Identity"; \ No newline at end of file diff --git a/src/operator/LeakyReLU.cpp b/src/operator/LeakyReLU.cpp new file mode 100644 index 000000000..32e050ee1 --- /dev/null +++ b/src/operator/LeakyReLU.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/LeakyReLU.hpp" + +const std::string Aidge::LeakyReLU_Op::Type = "LeakyReLU"; \ No newline at end of file diff --git a/src/operator/MatMul.cpp b/src/operator/MatMul.cpp new file mode 100644 index 000000000..666ed3921 --- /dev/null +++ b/src/operator/MatMul.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/MatMul.hpp" + +const std::string Aidge::MatMul_Op::Type = "MatMul"; \ No newline at end of file diff --git a/src/operator/Pow.cpp b/src/operator/Pow.cpp index c213a47a4..de1f0c369 100644 --- a/src/operator/Pow.cpp +++ b/src/operator/Pow.cpp @@ -19,6 +19,8 @@ #include "aidge/utils/Types.h" #include "aidge/utils/ErrorHandling.hpp" +const std::string Aidge::Pow_Op::Type = "Pow"; + void Aidge::Pow_Op::computeOutputDims() { // check inputs have been associated if (!getInput(0) || !getInput(1)) { diff --git a/src/operator/Producer.cpp b/src/operator/Producer.cpp new file mode 100644 index 000000000..443f2fa7d --- /dev/null +++ b/src/operator/Producer.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/Producer.hpp" + +const std::string Aidge::Producer_Op::Type = "Producer"; \ No newline at end of file diff --git a/src/operator/ReLU.cpp b/src/operator/ReLU.cpp new file mode 100644 index 000000000..0f7874acf --- /dev/null +++ b/src/operator/ReLU.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/ReLU.hpp" + +const std::string Aidge::ReLU_Op::Type = "ReLU"; \ No newline at end of file diff --git a/src/operator/Scaling.cpp b/src/operator/Scaling.cpp new file mode 100644 index 000000000..4c121e126 --- /dev/null +++ b/src/operator/Scaling.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/Scaling.hpp" + +const std::string Aidge::Scaling_Op::Type = "Scaling"; \ No newline at end of file diff --git a/src/operator/Softmax.cpp b/src/operator/Softmax.cpp new file mode 100644 index 000000000..e88ff4bb4 --- /dev/null +++ b/src/operator/Softmax.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/Softmax.hpp" + +const std::string Aidge::Softmax_Op::Type = "Softmax"; \ No newline at end of file diff --git a/src/operator/Sqrt.cpp b/src/operator/Sqrt.cpp new file mode 100644 index 000000000..dbcaba426 --- /dev/null +++ b/src/operator/Sqrt.cpp @@ -0,0 +1,16 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#include <string> + +#include "aidge/operator/Sqrt.hpp" + +const std::string Aidge::Sqrt_Op::Type = "Sqrt"; \ No newline at end of file diff --git a/src/operator/Sub.cpp b/src/operator/Sub.cpp index 8175f1b7a..639eaf798 100644 --- a/src/operator/Sub.cpp +++ b/src/operator/Sub.cpp @@ -19,6 +19,8 @@ #include "aidge/utils/Types.h" #include "aidge/utils/ErrorHandling.hpp" +const std::string Aidge::Sub_Op::Type = "Sub"; + void Aidge::Sub_Op::computeOutputDims() { // check inputs have been associated if (!getInput(0) || !getInput(1)) { -- GitLab