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