29 references to Invoke
System.Numerics.Tensors (29)
System\Numerics\Tensors\netcore\TensorPrimitives.CosineSimilarity.cs (3)
365
dotProductVector = MultiplyAddEstimateOperator<T>.
Invoke
(xVec, yVec, dotProductVector);
366
xSumOfSquaresVector = MultiplyAddEstimateOperator<T>.
Invoke
(xVec, xVec, xSumOfSquaresVector);
367
ySumOfSquaresVector = MultiplyAddEstimateOperator<T>.
Invoke
(yVec, yVec, ySumOfSquaresVector);
System\Numerics\Tensors\netcore\TensorPrimitives.Tan.cs (26)
206
Vector512<float> dn = MultiplyAddEstimateOperator<float>.
Invoke
(uxMasked, Vector512.Create(2 / float.Pi), Vector512.Create(AlmHuge));
211
f = MultiplyAddEstimateOperator<float>.
Invoke
(dn, Vector512.Create(-float.Pi / 2), f);
212
f = MultiplyAddEstimateOperator<float>.
Invoke
(dn, Vector512.Create(Pi_Tail2), f);
213
f = MultiplyAddEstimateOperator<float>.
Invoke
(dn, Vector512.Create(Pi_Tail3), f);
220
Vector512<float> a1 = MultiplyAddEstimateOperator<float>.
Invoke
(Vector512.Create(C2), f2, Vector512.Create(C1));
221
Vector512<float> a2 = MultiplyAddEstimateOperator<float>.
Invoke
(Vector512.Create(C4), f2, Vector512.Create(C3));
222
Vector512<float> a3 = MultiplyAddEstimateOperator<float>.
Invoke
(Vector512.Create(C6), f2, Vector512.Create(C5));
223
Vector512<float> b1 = MultiplyAddEstimateOperator<float>.
Invoke
(a2, f4, a1);
224
Vector512<float> b2 = MultiplyAddEstimateOperator<float>.
Invoke
(f8, a3, f12 * Vector512.Create(C7));
225
Vector512<float> poly = MultiplyAddEstimateOperator<float>.
Invoke
(f * f2, b1 + b2, f);
364
Vector512<double> dn = MultiplyAddEstimateOperator<double>.
Invoke
(uxMasked, Vector512.Create(2 / double.Pi), Vector512.Create(AlmHuge));
370
f = MultiplyAddEstimateOperator<double>.
Invoke
(dn, Vector512.Create(-double.Pi / 2), f);
371
f = MultiplyAddEstimateOperator<double>.
Invoke
(dn, Vector512.Create(-HalfPi2), f);
372
f = MultiplyAddEstimateOperator<double>.
Invoke
(dn, Vector512.Create(-HalfPi3), f);
383
Vector512<double> a1 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector512.Create(C3), g, Vector512.Create(C1));
384
Vector512<double> a2 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector512.Create(C7), g, Vector512.Create(C5));
385
Vector512<double> a3 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector512.Create(C11), g, Vector512.Create(C9));
386
Vector512<double> a4 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector512.Create(C15), g, Vector512.Create(C13));
387
Vector512<double> a5 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector512.Create(C19), g, Vector512.Create(C17));
388
Vector512<double> a6 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector512.Create(C23), g, Vector512.Create(C21));
389
Vector512<double> a7 = MultiplyAddEstimateOperator<double>.
Invoke
(Vector512.Create(C27), g, Vector512.Create(C25));
390
Vector512<double> b1 = MultiplyAddEstimateOperator<double>.
Invoke
(g, a1, g3 * a2);
391
Vector512<double> b2 = MultiplyAddEstimateOperator<double>.
Invoke
(g5, a3, g7 * a4);
392
Vector512<double> b3 = MultiplyAddEstimateOperator<double>.
Invoke
(g9, a5, g11 * a6);
393
Vector512<double> q = MultiplyAddEstimateOperator<double>.
Invoke
(g13, a7, b1 + b2 + b3);
394
Vector512<double> poly = MultiplyAddEstimateOperator<double>.
Invoke
(f, q, f);