7 references to Exp2Operator
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\TensorPrimitives.Exp10M1.cs (1)
39
public static bool Vectorizable =>
Exp2Operator
<T>.Vectorizable;
System\Numerics\Tensors\netcore\TensorPrimitives.Exp2.cs (2)
27
if (typeof(T) == typeof(Half) && TryUnaryInvokeHalfAsInt16<T,
Exp2Operator
<float>>(x, destination))
32
InvokeSpanIntoSpan<T,
Exp2Operator
<T>>(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Exp2M1.cs (4)
39
public static bool Vectorizable =>
Exp2Operator
<T>.Vectorizable;
42
public static Vector128<T> Invoke(Vector128<T> x) =>
Exp2Operator
<T>.Invoke(x) - Vector128<T>.One;
43
public static Vector256<T> Invoke(Vector256<T> x) =>
Exp2Operator
<T>.Invoke(x) - Vector256<T>.One;
44
public static Vector512<T> Invoke(Vector512<T> x) =>
Exp2Operator
<T>.Invoke(x) - Vector512<T>.One;