We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f90197 commit 8b5d1e2Copy full SHA for 8b5d1e2
test/Microsoft.ML.Predictor.Tests/TestPredictors.cs
@@ -274,6 +274,11 @@ public void BinaryClassifierLogisticRegressionTest()
274
[TestCategory("Binary")]
275
public void BinaryClassifierSymSgdTest()
276
{
277
+ // Linux uses a version of MKL that doesn't support conditional numerical reproducibility the same way as
278
+ // Windows runs.
279
+ if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
280
+ return;
281
+
282
//Results sometimes go out of error tolerance on OS X.
283
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
284
return;
0 commit comments