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 d0fe25f commit 21bd1ffCopy full SHA for 21bd1ff
test/Microsoft.ML.Predictor.Tests/TestPredictors.cs
@@ -283,6 +283,11 @@ public void BinaryClassifierLogisticRegressionTest()
283
[Trait("Category", "SkipInCI")]
284
public void BinaryClassifierSymSgdTest()
285
{
286
+ // Linux uses a version of MKL that doesn't support conditional numerical reproducibility the same way as
287
+ // Windows runs.
288
+ if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
289
+ return;
290
+
291
//Results sometimes go out of error tolerance on OS X.
292
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
293
return;
0 commit comments