2020-05-21 03:47:12 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-02-01 06:31:20 +01:00
|
|
|
<!--
|
|
|
|
~ /* ******************************************************************************
|
|
|
|
~ *
|
|
|
|
~ *
|
|
|
|
~ * This program and the accompanying materials are made available under the
|
|
|
|
~ * terms of the Apache License, Version 2.0 which is available at
|
|
|
|
~ * https://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
~ *
|
2021-02-01 09:47:29 +01:00
|
|
|
~ * See the NOTICE file distributed with this work for additional
|
|
|
|
~ * information regarding copyright ownership.
|
2021-02-01 06:31:20 +01:00
|
|
|
~ * Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
~ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
~ * License for the specific language governing permissions and limitations
|
|
|
|
~ * under the License.
|
|
|
|
~ *
|
|
|
|
~ * SPDX-License-Identifier: Apache-2.0
|
|
|
|
~ ******************************************************************************/
|
|
|
|
-->
|
|
|
|
|
2020-05-21 03:47:12 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-02-01 06:31:20 +01:00
|
|
|
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>
|
|
|
|
|
2020-05-21 03:47:12 +02:00
|
|
|
<parent>
|
2020-06-25 05:05:08 +02:00
|
|
|
<groupId>org.nd4j</groupId>
|
2021-02-01 06:31:20 +01:00
|
|
|
<artifactId>python4j-parent</artifactId>
|
2020-05-21 03:47:12 +02:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>python4j-numpy</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bytedeco</groupId>
|
|
|
|
<artifactId>numpy-platform</artifactId>
|
|
|
|
<version>${numpy.javacpp.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-native-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-common-tests</artifactId>
|
|
|
|
<version>${nd4j.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-06-16 03:43:10 +02:00
|
|
|
<dependency>
|
2020-06-25 05:05:08 +02:00
|
|
|
<groupId>org.nd4j</groupId>
|
2020-06-16 03:43:10 +02:00
|
|
|
<artifactId>python4j-core</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2020-05-21 03:47:12 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>test-nd4j-native</id>
|
2020-06-16 03:43:10 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-native</artifactId>
|
|
|
|
<version>${nd4j.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.deeplearning4j</groupId>
|
|
|
|
<artifactId>dl4j-test-resources</artifactId>
|
|
|
|
<version>${nd4j.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-03-08 07:25:45 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
|
|
|
<artifactId>nd4j-native</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<configuration>
|
|
|
|
<environmentVariables>
|
|
|
|
|
|
|
|
</environmentVariables>
|
|
|
|
<testSourceDirectory>src/test/java</testSourceDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*.java</include>
|
|
|
|
<include>**/*.java</include>
|
|
|
|
<include>**/Test*.java</include>
|
|
|
|
<include>**/*Test.java</include>
|
|
|
|
<include>**/*TestCase.java</include>
|
|
|
|
</includes>
|
2021-03-15 07:37:55 +01:00
|
|
|
<junitArtifactName>org.junit.jupiter:junit-jupiter</junitArtifactName>
|
2021-03-08 07:25:45 +01:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<org.nd4j.linalg.defaultbackend>
|
|
|
|
org.nd4j.linalg.cpu.nativecpu.CpuBackend
|
|
|
|
</org.nd4j.linalg.defaultbackend>
|
|
|
|
<org.nd4j.linalg.tests.backendstorun>
|
|
|
|
org.nd4j.linalg.cpu.nativecpu.CpuBackend
|
|
|
|
</org.nd4j.linalg.tests.backendstorun>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
<!--
|
|
|
|
Maximum heap size was set to 8g, as a minimum required value for tests run.
|
|
|
|
Depending on a build machine, default value is not always enough.
|
|
|
|
|
|
|
|
For testing large zoo models, this may not be enough (so comment it out).
|
|
|
|
-->
|
2021-03-11 06:22:34 +01:00
|
|
|
<argLine> "</argLine>
|
2021-03-08 07:25:45 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-05-21 03:47:12 +02:00
|
|
|
</profile>
|
2020-06-16 03:43:10 +02:00
|
|
|
|
2020-05-21 03:47:12 +02:00
|
|
|
<profile>
|
2020-07-26 14:59:27 +02:00
|
|
|
<id>test-nd4j-cuda-11.0</id>
|
2020-06-16 03:43:10 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nd4j</groupId>
|
2020-07-26 14:59:27 +02:00
|
|
|
<artifactId>nd4j-cuda-11.0</artifactId>
|
2020-06-16 03:43:10 +02:00
|
|
|
<version>${nd4j.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.deeplearning4j</groupId>
|
|
|
|
<artifactId>dl4j-test-resources</artifactId>
|
|
|
|
<version>${nd4j.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-03-08 07:25:45 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2021-03-17 12:04:53 +01:00
|
|
|
<inherited>true</inherited>
|
2021-03-08 07:25:45 +01:00
|
|
|
<configuration>
|
|
|
|
<environmentVariables>
|
|
|
|
</environmentVariables>
|
|
|
|
<testSourceDirectory>src/test/java</testSourceDirectory>
|
|
|
|
<includes>
|
|
|
|
<include>*.java</include>
|
|
|
|
<include>**/*.java</include>
|
|
|
|
<include>**/Test*.java</include>
|
|
|
|
<include>**/*Test.java</include>
|
|
|
|
<include>**/*TestCase.java</include>
|
|
|
|
</includes>
|
2021-03-15 07:37:55 +01:00
|
|
|
<junitArtifactName>org.junit.jupiter:junit-jupiter</junitArtifactName>
|
2021-03-08 07:25:45 +01:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<org.nd4j.linalg.defaultbackend>
|
|
|
|
org.nd4j.linalg.jcublas.JCublasBackend
|
|
|
|
</org.nd4j.linalg.defaultbackend>
|
|
|
|
<org.nd4j.linalg.tests.backendstorun>
|
|
|
|
org.nd4j.linalg.jcublas.JCublasBackend
|
|
|
|
</org.nd4j.linalg.tests.backendstorun>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
<!--
|
|
|
|
Maximum heap size was set to 6g, as a minimum required value for tests run.
|
|
|
|
Depending on a build machine, default value is not always enough.
|
|
|
|
-->
|
|
|
|
<argLine> -Djava.library.path="${nd4j.basedir}/nd4j-backends/nd4j-backend-impls/nd4j-cuda/target/classes"</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-05-21 03:47:12 +02:00
|
|
|
</profile>
|
|
|
|
</profiles>
|
2021-02-01 06:31:20 +01:00
|
|
|
</project>
|