7 references to _n
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\TensorPrimitives.RootN.cs (7)
33
public T Invoke(T x) => T.RootN(x,
_n
);
39
return ExpOperator<float>.Invoke(LogOperator<float>.Invoke(x.AsSingle()) / Vector128.Create((float)
_n
)).As<float, T>();
44
return ExpOperator<double>.Invoke(LogOperator<double>.Invoke(x.AsDouble()) / Vector128.Create((double)
_n
)).As<double, T>();
52
return ExpOperator<float>.Invoke(LogOperator<float>.Invoke(x.AsSingle()) / Vector256.Create((float)
_n
)).As<float, T>();
57
return ExpOperator<double>.Invoke(LogOperator<double>.Invoke(x.AsDouble()) / Vector256.Create((double)
_n
)).As<double, T>();
65
return ExpOperator<float>.Invoke(LogOperator<float>.Invoke(x.AsSingle()) / Vector512.Create((float)
_n
)).As<float, T>();
70
return ExpOperator<double>.Invoke(LogOperator<double>.Invoke(x.AsDouble()) / Vector512.Create((double)
_n
)).As<double, T>();