165 references to FloatUtils
Microsoft.ML.AutoML (1)
Microsoft.ML.Core (7)
Microsoft.ML.Core.Tests (14)
UnitTests\CoreBaseTestClass.cs (10)
66return FloatUtils.GetBits(x) == FloatUtils.GetBits(y) || Math.Abs(x - y) < DoubleEps;
111return GetComparerVec<Single>(r1, r2, col, size, (x, y) => FloatUtils.GetBits(x) == FloatUtils.GetBits(y));
114return GetComparerVec<Double>(r1, r2, col, size, (x, y) => FloatUtils.GetBits(x) == FloatUtils.GetBits(y));
154return GetComparerOne<Single>(r1, r2, col, (x, y) => FloatUtils.GetBits(x) == FloatUtils.GetBits(y));
157return GetComparerOne<Double>(r1, r2, col, (x, y) => FloatUtils.GetBits(x) == FloatUtils.GetBits(y));
Microsoft.ML.Data (29)
Microsoft.ML.Ensemble (4)
Microsoft.ML.FastTree (4)
Microsoft.ML.ImageAnalytics (16)
Microsoft.ML.KMeansClustering (8)
Microsoft.ML.Mkl.Components (8)
Microsoft.ML.PCA (11)
Microsoft.ML.Predictor.Tests (3)
Microsoft.ML.Recommender (1)
Microsoft.ML.StandardTrainers (22)
Microsoft.ML.TestFramework (14)
DataPipe\TestDataPipeBase.cs (12)
905return GetComparerOne<float>(r1, r2, col, (x, y) => FloatUtils.GetBits(x) == FloatUtils.GetBits(y));
912return GetComparerOne<double>(r1, r2, col, (x, y) => FloatUtils.GetBits(x) == FloatUtils.GetBits(y));
956return GetComparerVec<float>(r1, r2, col, size, (x, y) => FloatUtils.GetBits(x) == FloatUtils.GetBits(y));
963return GetComparerVec<double>(r1, r2, col, size, (x, y) => FloatUtils.GetBits(x) == FloatUtils.GetBits(y));
989return FloatUtils.GetBits(x) == FloatUtils.GetBits(y) || Math.Abs(x - y) < DoubleEps;
997return FloatUtils.GetBits(x) == FloatUtils.GetBits(y) || Math.Abs(x - y) < SingleEps;
Microsoft.ML.TimeSeries (7)
Microsoft.ML.Transforms (16)