Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions engine/engine-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@
</build>

<dependencies>
<!-- START Netlib for Intel MKL dependencies -->
<!-- START Netlib for Intel MKL dependencies
<dependency>
<groupId>com.github.fommil.netlib</groupId>
<artifactId>all</artifactId>
<type>pom</type>
</dependency>
<!-- END Netlib dependencies -->
END Netlib dependencies -->
<dependency>
<groupId>org.trustedanalytics.atk</groupId>
<artifactId>module-loader</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import org.trustedanalytics.atk.engine._
import com.typesafe.config.ConfigFactory
import org.apache.commons.lang3.exception.ExceptionUtils
import scala.reflect.io.Directory

import com.github.fommil.netlib
/**
* The Yarn Job that runs a SparkCommandPlugin.
*
Expand Down Expand Up @@ -118,6 +118,9 @@ object SparkCommandJob {
* @param args command line arguments.
*/
def main(args: Array[String]) = {
println(netlib.BLAS.getInstance().getClass().getName())
println(netlib.LAPACK.getInstance().getClass().getName())

if (args.length < 1) {
usage()
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ export MAVEN_OPTS="-Xmx512m -XX:PermSize=256m"
<version>${dep.daal.version}</version>
</dependency>
<!-- END Intel DAAL dependencies -->
<!-- START Netlib for Intel MKL dependencies -->
<!-- START Netlib for Intel MKL dependencies
<dependency>
<groupId>com.github.fommil.netlib</groupId>
<artifactId>all</artifactId>
Expand All @@ -781,7 +781,7 @@ export MAVEN_OPTS="-Xmx512m -XX:PermSize=256m"
</exclusion>
</exclusions>
</dependency>
<!-- END Netlib dependencies -->
END Netlib dependencies -->
<dependency>
<groupId>org.trustedanalytics.atk</groupId>
<artifactId>event-api</artifactId>
Expand Down