Skip to content

Commit

Permalink
[SYSTEMML-1630] Remove confusing warning for disabled native BLAS
Browse files Browse the repository at this point in the history
  • Loading branch information
Niketan Pansare committed May 26, 2017
1 parent 7ba17c7 commit fd41f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/sysml/utils/NativeHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ else if(userSpecifiedBLAS.equals("openblas")) {
LOG.warn("Time to load native blas: " + timeToLoadInMilliseconds + " milliseconds.");
}
else {
LOG.warn("Using internal Java BLAS as native BLAS support the configuration 'native.blas'=" + userSpecifiedBLAS + ".");
LOG.debug("Using internal Java BLAS as native BLAS support the configuration 'native.blas'=" + userSpecifiedBLAS + ".");
}
attemptedLoading = true;
}
Expand Down

0 comments on commit fd41f02

Please sign in to comment.