aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
Commit message (Collapse)AuthorAge
...
* Merge changes from github.Gravatar Martin Wicke2016-12-14
| | | | Change: 142074581
* Merge changes from github.Gravatar Andrew Harp2016-12-08
| | | | | | | | Additionally: - change single quotes to double quotes to make path rewriting easier - guard windows lib reference with PLATFORM_WINDOWS - fixed failing kmeans test Change: 141515942
* Merge changes from github.Gravatar Benoit Steiner2016-11-09
| | | | Change: 138675832
* Automatically build SWIG from sourceGravatar Justine Tunney2016-10-20
| | | | | | | | | | This change allows Bazel to fetch and build SWIG rather than getting it from the system. This change also improves the i/o performance of the SWIG build, makes it hermetically sealed, and ensures tf_py_wrap_cc() can function correctly across Bazel repositories. CC: #4983 Change: 136783531
* Merge changes from github.Gravatar Patrick Nguyen2016-10-20
| | | | Change: 136750267
* Merge changes from github.Gravatar A. Unique TensorFlower2016-10-10
| | | | Change: 135698415
* Merge changes from github.Gravatar Jonathan Hseu2016-09-29
| | | | Change: 134721831
* HDFS supportGravatar Jonathan Hseu2016-09-19
| | | | | | | | Notes: - The test is tagged as manual, and you must download the Hadoop distribution to run it. - We ask during ./configure whether to include HDFS support. - Copied hdfs.h from Hadoop here in third_party. It's licensed Apache 2.0. Change: 133615494
* Include sha hash in python variable __version__Gravatar Andrew Selle2016-09-06
| | | | | | | | | | | | | | It is necessary to symlink in files from .git/ in order to make bazel aware of changes to the current head. As it is this is not completely reliable when git repositories are in a dirty index state. First class support for bazel git a reported bug but not a high priority. ./configure sets up the symlinks by calling the gen_git_source.py a bazel genrule calls gen_git_source.py to generate version_info.cc Also changed cmake and make to build this properly. Change: 132328009
* Merge changes from github.Gravatar A. Unique TensorFlower2016-08-26
| | | | Change: 131437429
* Merge changes from github.Gravatar A. Unique TensorFlower2016-08-25
| | | | Change: 131310818
* Add Mac GPU whl artifacts and build history to OSS README.mdGravatar Shanqing Cai2016-07-22
| | | | | | Also * A minor wording fix in the configure script Change: 128194769
* Merge changes from github.Gravatar A. Unique TensorFlower2016-06-30
| | | | Change: 126335170
* Merge changes from github.Gravatar Vijay Vasudevan2016-05-27
| | | | Change: 123427036
* File system implementation for Google Cloud Storage.Gravatar A. Unique TensorFlower2016-05-11
| | | | | This code implements a file system for file paths starting with gs:// using the HTTP API to Google Cloud Storage. No authentication is implemented yet, so only GCS objects with public access can be used. Change: 122126085
* Merge changes from github.Gravatar A. Unique TensorFlower2016-05-05
| | | | Change: 121586635
* Check for protobuf submodule in configureGravatar Shanqing Cai2016-04-28
| | | | | so that the builds can fail fast in cases where the --recurse-submodules flag is missed during git clone. Change: 121039992
* Merge changes from github.Gravatar Vijay Vasudevan2016-03-29
| | | | Change: 118532471
* Rollforward of "Merge changes from github."Gravatar Geoffrey Irving2016-03-16
| | | | Change: 117375570
* Rollback of: "Merge changes from github."Gravatar Vijay Vasudevan2016-03-16
| | | | Change: 117304114
* Merge changes from github.Gravatar Martin Wicke2016-03-16
| | | | Change: 117301677
* Fix dependencies bugsGravatar Eugene Brevdo2016-03-11
| | | | Change: 116925769
* TensorFlow: perl command in configure script was not properly replacingGravatar Vijay Vasudevan2016-02-25
| | | | | | | the cuda/cudnn version strings in build_config.bzl Addresses issue mentioned in #1052 Change: 115599314
* Merge changes from github.Gravatar Vijay Vasudevan2016-02-17
| | | | Change: 114882676
* Use cc_binary rather than cc_library to reduce size of native library in APK ↵Gravatar A. Unique TensorFlower2016-01-29
| | | | | | from 5.5mb to 3.2mb (compressed). Change: 113369407
* Running our linter on a lot of files.Gravatar Vijay Vasudevan2016-01-24
| | | | Change: 112920860
* Refer to cuDNN v2 by its proper name, not CUDNN 6.5 V2, as requested by NVIDIA.Gravatar Martin Wicke2016-01-14
| | | | Change: 112120651
* TensorFlow: Upstream changes to git.Gravatar Vijay Vasudevan2015-12-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change 109240606 Fix typo Change 109240358 Fix bug in Concat's shape inference due to legacy scalar handling. The shape function was inadvertently converting outputs of unknown shape (rank=None) to vectors of unknown length (rank=1), due to inability to distinguish between legacy scalars and vectors, because `max(1, None)` is 1. Change 109237152 Remove numarray requirement in python_config. Change 109234003 Fix typo in elu documentation. Change 109232946 Python must now be configured via ./configure script Change 109232134 Backported fixes to the tensor comparison operators from the public Eigen repository Change 109231761 Test invalid inputs to softmax_cross_entropy_with_logits. Change 109230218 Backported fixes to the tensor comparison operators from the public Eigen repository Change 109229915 Correct comments in seq2seq to show the right input types for embedding models. (Thanks to hugman@github for bringing this up.) Change 109229118 Fix resize_images example in documentation and allow resize_images to run on a single image with partially-known shape. Change 109228940 Fix demo and node add/remove button spacing Change 109227909 Include Elu in the NN docs. Change 109227059 Adds variable_op_scope and makes variable_scope always add a name_scope. This creates an op scope for variables that makes it easy to create independent operations with a default name by making that name unique for the current scope and it allows explicit names that are not made unique. Change 109224492 Streamline yuv -> rgb conversion to be done in one pass in native code. The entire process now takes ~2ms (including the ByteBuffer.get() calls), down from 10+ ms when the arrays were being interleaved in Java prior to conversion. Also abstracting common yuv->rgb color conversion into helper method. Change 109224389 Add ability to move nodes in and out of auxiliary nodes in graph. Change 109217177 Update generated Op docs. Change 109215030 Implementation of the ELU activation function: http://arxiv.org/abs/1511.07289 Change 109209848 When GPUBFCAllocator runs out of memory, also log a summary of chunks in use by size. Change 109206569 Switched to the public version of the Eigen::sign method since it supports complex numbers. Change 109199813 Modify tensorflow.SequenceExample to support multiple-length sequences. Base CL: 109241553
* TensorFlow: Minor updates to docs, BUILD, GPU config / perf, etc.Gravatar Vijay Vasudevan2015-11-12
| | | | | | | | | | | | | | | | | | Changes: - Updates to op documentation and index by Josh - More changes to BUILD files for python 3 support by @girving - Fix to Eigen to use DenseIndex everywhere by @jiayq - Enable configuration for cuda compute capability by @zheng-xq, including updates to docs. - Route aggregation method through optimizer by schuster - Updates to install instructions for bazel 0.1.1. Base CL: 107702099
* TensorFlow: Upstream changes to git.Gravatar Manjunath Kudlur2015-11-08
| | | | | | | Changes: - Doc type fixes. Base CL: 107356208
* TensorFlow: Initial commit of TensorFlow library.Gravatar Manjunath Kudlur2015-11-06
TensorFlow is an open source software library for numerical computation using data flow graphs. Base CL: 107276108