aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/java/maven/tensorflow-android/pom-android.xml.template
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-08-01 17:44:35 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-08-01 18:00:48 -0700
commit4a4b6f7b3e43a176e26ac586340f6af798df5447 (patch)
tree2006abf19b28290eb187bb230221670dd2194c33 /tensorflow/java/maven/tensorflow-android/pom-android.xml.template
parent40b2946a57945a4be15feaf25b89db6b52b33806 (diff)
Merged commit includes the following changes:
163914294 by annarev: Refactors build target for gradients_impl to allow code to depend on the gradient generation but not the gradients themselves. -- 163913011 by A. Unique TensorFlower: Use an LLVM-IR version of vector hyperbolic tangent. This lets us: - Inline routine where it is called, eliminated call overhead. - Use AVX instructions in JITed code even if Tensorflow was not built with -mavx. -- 163909534 by A. Unique TensorFlower: Add tensorflow-android to standard TF maven artifacts. -- 163908704 by A. Unique TensorFlower: Go: Update generated wrapper functions for TensorFlow ops. -- 163907709 by A. Unique TensorFlower: Update ops-related pbtxt files. -- 163907497 by A. Unique TensorFlower: Remove old TensorFlow Serving landing page in prepartion for new TF Serving landing page. Fix bad leftnav. -- 163906225 by alive: Refactors build target for gradients_impl to allow code to depend on the gradient generation but not the gradients themselves. -- PiperOrigin-RevId: 163914294
Diffstat (limited to 'tensorflow/java/maven/tensorflow-android/pom-android.xml.template')
-rw-r--r--tensorflow/java/maven/tensorflow-android/pom-android.xml.template29
1 files changed, 29 insertions, 0 deletions
diff --git a/tensorflow/java/maven/tensorflow-android/pom-android.xml.template b/tensorflow/java/maven/tensorflow-android/pom-android.xml.template
new file mode 100644
index 0000000000..5cbd0c898d
--- /dev/null
+++ b/tensorflow/java/maven/tensorflow-android/pom-android.xml.template
@@ -0,0 +1,29 @@
+<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>
+
+ <groupId>org.tensorflow</groupId>
+ <artifactId>tensorflow-android</artifactId>
+ <version>${version}</version>
+ <packaging>aar</packaging>
+
+ <name>TensorFlow AAR for Android Inference Library and Java API</name>
+ <url>https://github.com/tensorflow/tensorflow/</url>
+ <parent>
+ <groupId>org.tensorflow</groupId>
+ <artifactId>parentpom</artifactId>
+ <version>${version}</version>
+ <relativePath>../</relativePath>
+ </parent>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.build.number>${build_number}</project.build.number>
+ <project.build.commitid>${build_commit_id}</project.build.commitid>
+ <project.build.type>${build_type}</project.build.type>
+ <project.build.url>${build_url}</project.build.url>
+ </properties>
+
+</project>