diff --git a/include/aidge/operator/MatMul.hpp b/include/aidge/operator/MatMul.hpp index ff22823fd9c620b133c1f9a1200e463f71b49e92..9e7e7e43a52afdc93a0f3a0430ae64010abb11dc 100644 --- a/include/aidge/operator/MatMul.hpp +++ b/include/aidge/operator/MatMul.hpp @@ -58,22 +58,22 @@ public: * @brief Copy-constructor. Copy the operator parameters and its output tensor(s), but not its input tensors (the new operator has no input associated). * @param op Operator to copy. */ - Matmul_Op(const Matmul_Op& op) + MatMul_Op(const MatMul_Op& op) : Operator(Type), Parameterizable_(op), mOutput(std::make_shared<Tensor>(*op.mOutput)) { // cpy-ctor setDatatype(op.mOutput->dataType()); - mImpl = op.mImpl ? Registrar<Matmul_Op>::create(mOutput->getImpl()->backend())(*this) : nullptr; + mImpl = op.mImpl ? Registrar<MatMul_Op>::create(mOutput->getImpl()->backend())(*this) : nullptr; } /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Matmul_Op + * @see Operator::MatMul_Op */ std::shared_ptr<Operator> clone() const override { - return std::make_shared<Matmul_Op>(*this); + return std::make_shared<MatMul_Op>(*this); } void associateInput(const IOIndex_t inputIdx, std::shared_ptr<Data> data) override final { diff --git a/include/aidge/operator/MetaOperator.hpp b/include/aidge/operator/MetaOperator.hpp index 9e12b159888923cfea10dd02b7b267a46abcb3b7..327361de4fc278efbf6cc1afe4c140c7994fe61e 100644 --- a/include/aidge/operator/MetaOperator.hpp +++ b/include/aidge/operator/MetaOperator.hpp @@ -34,7 +34,7 @@ public: /** * @brief Clone the operator using its copy-constructor. - * @see Operator::Matmul_Op + * @see Operator::MatMul_Op */ std::shared_ptr<Operator> clone() const override { return std::make_shared<MetaOperator>(*this);