/******************************************************************************** * 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 * ********************************************************************************/ #ifndef AIDGE_CORE_OPERATOR_MUL_H_ #define AIDGE_CORE_OPERATOR_MUL_H_ #include <memory> #include <string> #include <vector> #include "aidge/utils/Registrar.hpp" #include "aidge/operator/OperatorTensor.hpp" #include "aidge/backend/OperatorImpl.hpp" #include "aidge/data/Tensor.hpp" #include "aidge/graph/Node.hpp" #include "aidge/utils/Types.h" namespace Aidge { /** * @brief Tensor element-wise multiplication. */ 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"; Mul_Op() : OperatorTensor(Type, 2, 0, 1) {} /** * @brief Copy-constructor. Copy the operator attributes and its output tensor(s), * but not its input tensors (the new operator has no input associated). * @param op Operator to copy. */ Mul_Op(const Mul_Op& op) : OperatorTensor(op) { mImpl = op.mImpl ? Registrar<Mul_Op>::create(op.mOutputs[0]->getImpl()->backend())(*this) : nullptr; } /** * @brief Clone the operator using its copy-constructor. * @see Operator::Mul_Op */ std::shared_ptr<Operator> clone() const override { return std::make_shared<Mul_Op>(*this); } void computeOutputDims() override final; void setBackend(const std::string& name, int device = 0) override { mImpl = Registrar<Mul_Op>::create(name)(*this); mOutputs[0]->setBackend(name, device); // FIXME: temporary workaround getInput(0)->setBackend(name, device); getInput(1)->setBackend(name, device); } static const std::vector<std::string> getInputsName(){ return {"data_input"}; } static const std::vector<std::string> getOutputsName(){ return {"data_output"}; } }; inline std::shared_ptr<Node> Mul(const std::string& name = "") { return std::make_shared<Node>(std::make_shared<Mul_Op>(), name); } } // namespace Aidge #endif /* AIDGE_CORE_OPERATOR_MUL_H_ */