29 references to Invoke
System.Numerics.Tensors (29)
System\Numerics\Tensors\netcore\TensorPrimitives.CosineSimilarity.cs (3)
349
dotProductVector = MultiplyAddEstimateOperator<T>.
Invoke
(xVec, yVec, dotProductVector);
350
xSumOfSquaresVector = MultiplyAddEstimateOperator<T>.
Invoke
(xVec, xVec, xSumOfSquaresVector);
351
ySumOfSquaresVector = MultiplyAddEstimateOperator<T>.
Invoke
(yVec, yVec, ySumOfSquaresVector);
System\Numerics\Tensors\netcore\TensorPrimitives.Tan.cs (26)
136
Vector128<float> dn = MultiplyAddEstimateOperator<float>.
Invoke
(uxMasked, Vector128.Create(2 / float.Pi), Vector128.Create(AlmHuge));
141
f = MultiplyAddEstimateOperator<float>.
Invoke
(dn, Vector128.Create(-float.Pi / 2), f);
142
f = MultiplyAddEstimateOperator<float>.
Invoke
(dn, Vector128.Create(Pi_Tail2), f);
143
f = MultiplyAddEstimateOperator<float>.
Invoke
(dn, Vector128.Create(Pi_Tail3), f);
150
Vector128<float> a1 = MultiplyAddEstimateOperator<float>.
Invoke
(Vector128.Create(C2), f2, Vector128.Create(C1));
151
Vector128<float> a2 = MultiplyAddEstimateOperator<float>.
Invoke
(Vector128.Create(C4), f2, Vector128.Create(C3));
152
Vector128<float> a3 = MultiplyAddEstimateOperator<float>.
Invoke
(Vector128.Create(C6), f2, Vector128.Create(C5));
153
Vector128<float> b1 = MultiplyAddEstimateOperator<float>.
Invoke
(a2, f4, a1);
154
Vector128<float> b2 = MultiplyAddEstimateOperator<float>.
Invoke
(f8, a3, f12 * Vector128.Create(C7));
155
Vector128<float> poly = MultiplyAddEstimateOperator<float>.
Invoke
(f * f2, b1 + b2, f);
270
Vector128<double> dn = MultiplyAddEstimateOperator<double>.
Invoke
(uxMasked, Vector128.Create(2 / double.Pi), Vector128.Create(AlmHuge));
276
f = MultiplyAddEstimateOperator<double>.
Invoke
(dn, Vector128.Create(-double.Pi / 2), f);
277
f = MultiplyAddEstimateOperator<double>.
Invoke
(dn, Vector128.Create(-HalfPi2), f);
278
f = MultiplyAddEstimateOperator<double>.
Invoke
(dn, Vector128.Create(-HalfPi3), f);
289
Vector128<double> a1 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector128.Create(C3), g, Vector128.Create(C1));
290
Vector128<double> a2 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector128.Create(C7), g, Vector128.Create(C5));
291
Vector128<double> a3 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector128.Create(C11), g, Vector128.Create(C9));
292
Vector128<double> a4 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector128.Create(C15), g, Vector128.Create(C13));
293
Vector128<double> a5 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector128.Create(C19), g, Vector128.Create(C17));
294
Vector128<double> a6 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector128.Create(C23), g, Vector128.Create(C21));
295
Vector128<double> a7 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector128.Create(C27), g, Vector128.Create(C25));
296
Vector128<double> b1 = MultiplyAddEstimateOperator<double>.
Invoke
(g, a1, g3 * a2);
297
Vector128<double> b2 = MultiplyAddEstimateOperator<double>.
Invoke
(g5, a3, g7 * a4);
298
Vector128<double> b3 = MultiplyAddEstimateOperator<double>.
Invoke
(g9, a5, g11 * a6);
299
Vector128<double> q = MultiplyAddEstimateOperator<double>.
Invoke
(g13, a7, b1 + b2 + b3);
300
Vector128<double> poly = MultiplyAddEstimateOperator<double>.
Invoke
(f, q, f);