10 references to Invoke
System.Numerics.Tensors (10)
System\Numerics\Tensors\netcore\TensorPrimitives.Cbrt.cs (2)
63
return ExpOperator<float>.
Invoke
(LogOperator<float>.Invoke(x.AsSingle()) / Vector512.Create(3f)).As<float, T>();
68
return ExpOperator<double>.
Invoke
(LogOperator<double>.Invoke(x.AsDouble()) / Vector512.Create(3d)).As<double, T>();
System\Numerics\Tensors\netcore\TensorPrimitives.Cosh.cs (2)
122
Vector512<float> z = ExpOperator<float>.
Invoke
(y - Vector512.Create((float)Single_LOGV));
131
Vector512<double> z = ExpOperator<double>.
Invoke
(y - Vector512.Create(Double_LOGV));
System\Numerics\Tensors\netcore\TensorPrimitives.ExpM1.cs (1)
37
public static Vector512<T> Invoke(Vector512<T> x) => ExpOperator<T>.
Invoke
(x) - Vector512<T>.One;
System\Numerics\Tensors\netcore\TensorPrimitives.Pow.cs (2)
96
return ExpOperator<float>.
Invoke
(y.AsSingle() * LogOperator<float>.Invoke(x.AsSingle())).As<float, T>();
101
return ExpOperator<double>.
Invoke
(y.AsDouble() * LogOperator<double>.Invoke(x.AsDouble())).As<double, T>();
System\Numerics\Tensors\netcore\TensorPrimitives.Sigmoid.cs (1)
43
public static Vector512<T> Invoke(Vector512<T> x) => Vector512.Create(T.One) / (Vector512.Create(T.One) + ExpOperator<T>.
Invoke
(-x));
System\Numerics\Tensors\netcore\TensorPrimitives.Sinh.cs (2)
112
Vector512<float> z = ExpOperator<float>.
Invoke
(y - Vector512.Create((float)Single_LOGV));
123
Vector512<double> z = ExpOperator<double>.
Invoke
(y - Vector512.Create(Double_LOGV));