15 references to AddMultInto
Microsoft.ML.Core.Tests (1)
UnitTests\TestVBuffer.cs (1)
692VectorUtils.AddMultInto(in a, c, in b, ref actualDst);
Microsoft.ML.StandardTrainers (14)
Optimizer\DifferentiableFunction.cs (8)
219VectorUtils.AddMultInto(in x, Eps, in dir, ref newX); 222VectorUtils.AddMultInto(in x, -Eps, in dir, ref newX); 266VectorUtils.AddMultInto(in x, Eps, in dir, ref newX); 269VectorUtils.AddMultInto(in x, -Eps, in dir, ref newX); 305VectorUtils.AddMultInto(in x, Eps, in dir, ref newX); 308VectorUtils.AddMultInto(in x, -Eps, in dir, ref newX); 340VectorUtils.AddMultInto(in x, scaledEps, in dir, ref newX); 343VectorUtils.AddMultInto(in x, -scaledEps, in dir, ref newX);
Optimizer\L1Optimizer.cs (1)
166VectorUtils.AddMultInto(in _x, alpha, in _dir, ref _newX);
Optimizer\Optimizer.cs (4)
357VectorUtils.AddMultInto(in _newX, -1, in _x, ref nextS); 358VectorUtils.AddMultInto(in _newGrad, -1, in _grad, ref nextY); 404VectorUtils.AddMultInto(in _x, alpha, in _dir, ref _newX); 485VectorUtils.AddMultInto(in _x, alpha, in _dir, ref _newX);
Optimizer\SgdOptimizer.cs (1)
331VectorUtils.AddMultInto(in _point, step, in _dir, ref _newPoint);