every time I try to use CUDA 10.1 with G1080 then
java.lang.UnsatisfiedLinkError repeated when I try to run.
if i change the config "
"
...................
i swift my opt system to ubuntu 19.04 then everything is A ok.....
...................
why i can't used GPU model in windows.
get me a help....3Q
Please describe our issue, along with:
Please indicate relevant versions, including, if relevant:
If you'd like to help us fix the issue by contributing some code, but would
like guidance or help in doing so, please mention it!
Can you do 3 things:
nvcc --versionDuplicate of #7781
Add the following dependencies to your pom.xml file:
https://github.com/bytedeco/javacpp-presets/tree/1.5/cuda#the-pomxml-build-file
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.betel</groupId>
<artifactId>jossdeep</artifactId>
<version>0.0.1a</version>
<properties>
<!--nd4j-native-platform CPU GPU nd4j-cuda-10.1-platform -->
<nd4j.backend>nd4j-cuda-10.1-platform</nd4j.backend>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<nd4j.version>1.0.0-beta4</nd4j.version>
<dl4j.version>1.0.0-beta4</dl4j.version>
<datavec.version>1.0.0-beta4</datavec.version>
<arbiter.version>1.0.0-beta4</arbiter.version>
<rl4j.version>1.0.0-beta4</rl4j.version>
<!-- Scala binary version: DL4J's Spark and UI functionality are released with both Scala 2.10 and 2.11 support -->
<scala.binary.version>2.11</scala.binary.version>
</properties>
<dependencies>
<!-- GPU -->
<dependency>
<groupId>org.nd4j</groupId>
<artifactId>${nd4j.backend}</artifactId>
<version>${nd4j.version}</version>
</dependency>
<!-- DL4J core-->
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>deeplearning4j-core</artifactId>
<version>${dl4j.version}</version>
</dependency>
<!--handle datavec-->
<dependency>
<groupId>org.datavec</groupId>
<artifactId>datavec-api</artifactId>
<version>${datavec.version}</version>
</dependency>
<dependency>
<groupId>org.datavec</groupId>
<artifactId>datavec-local</artifactId>
<version>${datavec.version}</version>
</dependency>
<!-- handle org.slf4j.impl.StaticLoggerBinder -->
<!-- handle tar.gz-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.18</version>
</dependency>
<!--handle UI-->
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>deeplearning4j-ui_${scala.binary.version}</artifactId>
<version>${dl4j.version}</version>
</dependency>
</dependencies>
2.Describe how you are running your program - though IDE (eclipse, intellij, netbeans etc) or through maven?
I running my program with intellij IDEA 2019.3 and My maven version is 3.6.1
3.Post the output of nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2019 NVIDIA Corporation
Built on Wed_Apr_24_19:11:20_Pacific_Daylight_Time_2019
Cuda compilation tools, release 10.1, V10.1.168
@jossbetel @saudet already mentioned what you should do to fix this:
Duplicate of #7781
Add the following dependencies to your pom.xml file:
https://github.com/bytedeco/javacpp-presets/tree/1.5/cuda#the-pomxml-build-file
@AlexDBlack 3Q,very much. I work smoothly, then. Thank you for all that you have done.
@saudet And,Thanks too. yeah,I take my hats off to you all.
Most helpful comment
@jossbetel @saudet already mentioned what you should do to fix this: