Created
March 25, 2017 08:49
-
-
Save Joshuaalbert/399f33ab59de0a29720f1f101e639152 to your computer and use it in GitHub Desktop.
cuda Error Launch Failure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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"> | |
| <groupId>com.tactico</groupId> | |
| <artifactId>backtestTM</artifactId> | |
| <version>1.0</version> | |
| <modelVersion>4.0.0</modelVersion> | |
| <name>BacktestTM</name> | |
| <properties> | |
| <nd4j.backend>nd4j-cuda-8.0</nd4j.backend> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <shadedClassifier>bin</shadedClassifier> | |
| <java.version>1.8</java.version> | |
| <nd4j.version>0.8.1-SNAPSHOT</nd4j.version> | |
| <dl4j.version>0.8.1-SNAPSHOT</dl4j.version> | |
| <datavec.version>0.8.1</datavec.version> | |
| <arbiter.version>0.0.0.8</arbiter.version> | |
| <dropwizard.version>0.8.0</dropwizard.version> | |
| <maven-shade-plugin.version>2.4.3</maven-shade-plugin.version> | |
| <exec-maven-plugin.version>1.4.0</exec-maven-plugin.version> | |
| </properties> | |
| <dependencies> | |
| <!-- ND4J backend. You need one in every DL4J project. Normally define artifactId as either "nd4j-native" or "nd4j-cuda-7.5" --> | |
| <dependency> | |
| <groupId>org.nd4j</groupId> | |
| <artifactId>${nd4j.backend}</artifactId> | |
| <version>${nd4j.version}</version> | |
| </dependency> | |
| <!-- Core DL4J functionality --> | |
| <dependency> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>deeplearning4j-core</artifactId> | |
| <version>${dl4j.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>deeplearning4j-nlp</artifactId> | |
| <version>${dl4j.version}</version> | |
| </dependency> | |
| <!-- deeplearning4j-ui is used for HistogramIterationListener + visualization: see http://deeplearning4j.org/visualization --> | |
| <dependency> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>deeplearning4j-ui_2.11</artifactId> | |
| <version>${dl4j.version}</version> | |
| </dependency> | |
| <!-- Arbiter: used for hyperparameter optimization examples --> | |
| <dependency> | |
| <groupId>org.deeplearning4j</groupId> | |
| <artifactId>arbiter-deeplearning4j</artifactId> | |
| <version>${arbiter.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.dropwizard</groupId> | |
| <artifactId>dropwizard-client</artifactId> | |
| <version>${dropwizard.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.dropwizard</groupId> | |
| <artifactId>dropwizard-assets</artifactId> | |
| <version>${dropwizard.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.dropwizard</groupId> | |
| <artifactId>dropwizard-forms</artifactId> | |
| <version>${dropwizard.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.dropwizard</groupId> | |
| <artifactId>dropwizard-views-freemarker</artifactId> | |
| <version>${dropwizard.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.dropwizard</groupId> | |
| <artifactId>dropwizard-views-mustache</artifactId> | |
| <version>${dropwizard.version}</version> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>exec-maven-plugin</artifactId> | |
| <version>${exec-maven-plugin.version}</version> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>exec</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <configuration> | |
| <executable>java</executable> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-shade-plugin</artifactId> | |
| <version>${maven-shade-plugin.version}</version> | |
| <configuration> | |
| <shadedArtifactAttached>true</shadedArtifactAttached> | |
| <shadedClassifierName>${shadedClassifier}</shadedClassifierName> | |
| <createDependencyReducedPom>true</createDependencyReducedPom> | |
| <filters> | |
| <filter> | |
| <artifact>*:*</artifact> | |
| <excludes> | |
| <exclude>org/datanucleus/**</exclude> | |
| <exclude>META-INF/*.SF</exclude> | |
| <exclude>META-INF/*.DSA</exclude> | |
| <exclude>META-INF/*.RSA</exclude> | |
| </excludes> | |
| </filter> | |
| </filters> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>shade</goal> | |
| </goals> | |
| <configuration> | |
| <transformers> | |
| <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | |
| <resource>reference.conf</resource> | |
| </transformer> | |
| <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> | |
| <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | |
| </transformer> | |
| </transformers> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.5.1</version> | |
| <configuration> | |
| <source>${java.version}</source> | |
| <target>${java.version}</target> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment