10 references to Sqrt
Microsoft.ML.CpuMath (1)
FactorizationMachine\AvxIntrinsics.cs (1)
184pw[j] -= learningRate / MathF.Sqrt(phw[j]) * g;
System.Numerics.Tensors (2)
System\Numerics\Tensors\TensorPrimitives.Single.cs (2)
206return MathF.Sqrt(Aggregate<SubtractSquaredOperator_Single, AddOperator_Single>(x, y)); 696MathF.Sqrt(SumOfSquares(x));
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2187public static Half Sqrt(Half x) => (Half)MathF.Sqrt((float)x);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (5)
1471return (T)(object)(byte)MathF.Sqrt((byte)(object)value); 1479return (T)(object)(short)MathF.Sqrt((short)(object)value); 1499return (T)(object)(sbyte)MathF.Sqrt((sbyte)(object)value); 1503return (T)(object)(float)MathF.Sqrt((float)(object)value); 1507return (T)(object)(ushort)MathF.Sqrt((ushort)(object)value);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1688public static float Sqrt(float x) => MathF.Sqrt(x);