corepointer commented on a change in pull request #1063:
URL: https://github.com/apache/systemds/pull/1063#discussion_r493466336
##########
File path: src/main/java/org/apache/sysds/utils/NativeHelper.java
##########
@@ -146,7 +146,20 @@ private static boolean isSupportedArchitecture() {
LOG.info("Unsupported architecture for native BLAS:" +
SystemUtils.OS_ARCH);
return false;
}
-
+
+ /**
+ * Note: we only support Windows and Linux at the moment.
+ *
+ * @return true if operating system is supported
+ */
+ private static boolean isSupportedOS() {
+ if(SystemUtils.IS_OS_LINUX || SystemUtils.IS_OS_WINDOWS) {
Review comment:
We don't have Mac support anymore. We can put it on the wish list in
JIRA :wink:
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]