This commit is contained in:
Relintai 2023-04-24 08:57:59 +02:00
parent e98602b878
commit 2e0870a4c3

View File

@ -327,6 +327,11 @@ public:
return true;
}
// New apis should look like this:
//Ref<MLPPVector> substract(const Ref<MLPPVector> &b);
//void substracted(const Ref<MLPPVector> &b);
//void subtraction(const Ref<MLPPVector> &a, const Ref<MLPPVector> &b); -> result is in this (subtractionv like)
Ref<MLPPVector> flattenmnv(const Vector<Ref<MLPPVector>> &A);
Ref<MLPPVector> hadamard_productnv(const Ref<MLPPVector> &a, const Ref<MLPPVector> &b);