Skip to content

Instantly share code, notes, and snippets.

View AlexDBlack's full-sized avatar

Alex Black AlexDBlack

  • Melbourne, Australia
View GitHub Profile
Installing OpenBLAS on Windows x64 + linking to netlib-java (tested on Windows 8.1)
Following build instructions as per https://github.com/xianyi/OpenBLAS/wiki/Installation-Guide but with some additional details + details for linking with netlib-java
git clone https://github.com/xianyi/OpenBLAS.git
into c:/Temp/ for example
Using MSYS + MinGW-w64:
MSYS as per the recommended version in OpenBLAS guide. Extract to c:/msys
MinGW-w64: rubenvb 64-bit version http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/rubenvb/gcc-4.7-release/
@AlexDBlack
AlexDBlack / pom.xml
Created October 16, 2018 00:59
DL4J examples sample standalone project - modified for using snapshots - https://deeplearning4j.org/docs/latest/deeplearning4j-config-snapshots
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Group-ID, artifact ID and version of the project. You can modify these as you want -->
<groupId>org.deeplearning4j</groupId>
<artifactId>deeplearning4j-examples</artifactId>
<version>1.0.0-beta2</version>