29 references to GetLower
Microsoft.ML.CpuMath (13)
AvxIntrinsics.cs (12)
92Vector128<float> tmp = x.GetLower(); 235Vector128<float> sum = Sse.Add(res0.GetLower(), GetHigh(in res0)); 1058return Sse.AddScalar(result.GetLower(), GetHigh(result)).ToScalar(); 1080Vector128<float> resultPadded = Sse.AddScalar(result256.GetLower(), GetHigh(result256)); 1125Vector128<float> resultPadded = Sse.AddScalar(result256.GetLower(), GetHigh(result256)); 1172Vector128<float> resultPadded = Sse.AddScalar(result256.GetLower(), GetHigh(result256)); 1218Vector128<float> resultPadded = Sse.AddScalar(result256.GetLower(), GetHigh(result256)); 1265Vector128<float> resultPadded = Sse.MaxScalar(result256.GetLower(), GetHigh(result256)); 1311Vector128<float> resultPadded = Sse.MaxScalar(result256.GetLower(), GetHigh(result256)); 1362Vector128<float> resultPadded = Sse.AddScalar(result256.GetLower(), GetHigh(result256)); 1419Vector128<float> resultPadded = Sse.AddScalar(result256.GetLower(), GetHigh(result256)); 1474Vector128<float> sqDistanceVectorPadded = Sse.AddScalar(sqDistanceVector256.GetLower(), GetHigh(sqDistanceVector256));
FactorizationMachine\AvxIntrinsics.cs (1)
143Sse.StoreScalar(&latentResponse, y.GetLower()); // The lowest slot is the response value.
System.Numerics.Tensors (9)
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IBinaryOperator.cs (1)
2724HorizontalAggregate<T, TAggregate>(TAggregate.Invoke(x.GetLower(), x.GetUpper()));
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IIndexOfOperator.cs (2)
107Vector128<T> resultLower = result.GetLower(); 108Vector128<T> indexLower = resultIndex.GetLower();
System\Numerics\Tensors\netcore\TensorPrimitives.FloatHelpers.cs (4)
14Vector256.Create(ApplyScalar<TOperator>(floats.GetLower()), ApplyScalar<TOperator>(floats.GetUpper())); 23Vector256.Create(ApplyScalar<TOperator>(doubles.GetLower()), ApplyScalar<TOperator>(doubles.GetUpper())); 45(Vector128<float> firstLower, Vector128<float> secondLower) = Apply2xScalar<TOperator>(floats.GetLower()); 81(Vector128<double> firstLower, Vector128<double> secondLower) = Apply2xScalar<TOperator>(doubles.GetLower());
System\Numerics\Tensors\netcore\TensorPrimitives.LeadingZeroCount.cs (1)
131return Vector256.Create(Invoke(x.GetLower()), Invoke(x.GetUpper()));
System\Numerics\Tensors\netcore\TensorPrimitives.TrailingZeroCount.cs (1)
56return Vector256.Create(Invoke(x.GetLower()), Invoke(x.GetUpper()));
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (1)
2613result = (TVectorSingle)(object)Vector128.Narrow(value.GetLower(), value.GetUpper());
src\libraries\System.Private.CoreLib\src\System\SearchValues\Strings\Helpers\StringSearchValuesHelper.cs (3)
198Vector128<ushort> different = Vector128.LoadUnsafe(ref matchStart) ^ Value256.GetLower(); 220Vector128<ushort> different = (Vector128.LoadUnsafe(ref matchStart) & ToUpperMask256.GetLower()) ^ Value256.GetLower();
src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Utility.cs (3)
1857asciiVector.GetLower().StoreUnsafe(ref asciiBuffer, 0); 1883asciiVector.GetLower().StoreUnsafe(ref asciiBuffer, currentOffsetInElements); 1936asciiVector.GetLower().StoreUnsafe(ref asciiBuffer, currentOffsetInElements);