16 references to Exp
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorOperation.cs (6)
1040
destination = T.
Exp
(x);
1917
destination = T.One / (T.One + T.
Exp
(-x));
1978
destination += T.
Exp
(x);
1985
destination += T.
Exp
(x[i]);
1996
destination = T.
Exp
(x) / y;
2003
destination[i] = T.
Exp
(x[i]) / y;
System\Numerics\Tensors\netcore\TensorPrimitives.Exp.cs (1)
47
public static T Invoke(T x) => T.
Exp
(x);
System\Numerics\Tensors\netcore\TensorPrimitives.Sigmoid.cs (1)
45
public static T Invoke(T x) => T.One / (T.One + T.
Exp
(-x));
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
633
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1286
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
951
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />
src\libraries\System.Private.CoreLib\src\System\Numerics\IExponentialFunctions.cs (1)
20
static virtual TSelf ExpM1(TSelf x) => TSelf.
Exp
(x) - TSelf.One;
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1032
T value = T.
Exp
(vector.GetElementUnsafe(index));
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
958
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
1478
T value = T.
Exp
(vector.GetElementUnsafe(index));
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
628
/// <inheritdoc cref="IExponentialFunctions{TSelf}.
Exp
" />