Bazel-0.18.0 adds a try-import option that will non-fatally try and
import a file. Use this for the configure options so that .bazelrc does
not need to change. ./configure rewriting .bazelrc makes using the git
repo annoying because the file is changed.
The allowed bazel range is now 0.18.0-0.20.0 inclusive. The env var
TF_IGNORE_MAX_BAZEL_VERSION can be set to skip the max bazel version
check.
Also optionally import a /.bazelrc.user file that is gitignored so
user-specific options can go in there.
Fixes: https://github.com/tensorflow/tensorflow/issues/22762
Fixes: https://github.com/tensorflow/tensorflow/pull/22906
Signed-off-by: Jason Zaman <jason@perfinion.com>
This change moves //tensorflow/contrib/lite to //tensorflow/lite in preparation
for TensorFlow 2.0's deprecation of contrib/. If you refer to TF Lite build
targets or headers, you will need to update them manually. If you use TF Lite
from the TensorFlow python package, "tf.contrib.lite" now points to "tf.lite".
Please update your imports as soon as possible.
For more details, see https://groups.google.com/a/tensorflow.org/forum/#!topic/tflite/iIIXOTOFvwQ
@angersson and @aselle are conducting this migration. Please contact them if
you have any further questions.
PiperOrigin-RevId: 219536476
This reverts commit a74a3217f7.
Bazel-0.18.0 is changing where it searches for .bazelrc files.
Originally it was removing /tools/bazel.rc and only using /.bazelrc.
This causes issues for gitignoring /.bazelrc and 0.18.0 has temporarily
added tools/bazel.rc back to the list until 0.19. The long term solution
is to use try-import but that statement is new in 0.18 and we are not
going to bump TF's minimum right away. When 0.19 is out things will need
to be changed back and the minimum bumped to 0.18.
Fixes: https://github.com/tensorflow/tensorflow/issues/22762
Fixes: https://github.com/tensorflow/tensorflow/pull/22906
Signed-off-by: Jason Zaman <jason@perfinion.com>
Bazel 0.18.0 will contain a change for which rc files it accepts.
ec83598cb6https://github.com/bazelbuild/bazel/issues/4502
Old bazel used to read %workspace%/tools/bazel.rc. New bazel will not
read that and instead will only read %workspace%/.bazelrc.
Signed-off-by: Jason Zaman <jason@perfinion.com>
While running cmake in Linux:
```
tensorflow/tools/ci_build/ci_build.sh CMAKE tensorflow/tools/ci_build/builds/cmake.sh
```
the following file is generated and left out:
```
ubuntu@ubuntu:~/tensorflow$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
estimator_api_init_files_list.txt
nothing added to commit but untracked files present (use "git add" to track)
```
This fix add `/estimator_api_init_files_list.txt`
in gitignore so that it will not be picked by `git add -A`.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
After running cmake on Linux with:
```
tensorflow/tools/ci_build/ci_build.sh CMAKE tensorflow/tools/ci_build/builds/cmake.sh
```
the following file is left:
```
ubuntu@ubuntu:~/tensorflow$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
api_init_files_list.txt
nothing added to commit but untracked files present (use "git add" to track)
ubuntu@ubuntu:~/tensorflow$
```
This fix updates the .gitignore file so that cmake generated files
is not added with git inadvertently.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Initial implementation of Makefile build for TensorFlow Lite
* Added support to TF Lite makefile build
* Added iOS support to TF Lite makefile build
* Added simple iOS example application for TF Lite
* Added copyright header to file
* Added optimization flag and cleaned up code
While working on building TensorFlow I noticed that a file
`fast_tensor_util.cpp` is generated:
```sh
ubuntu@ubuntu:~/tensorflow$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
tensorflow/python/framework/fast_tensor_util.cpp
nothing added to commit but untracked files present (use "git add" to track)
ubuntu@ubuntu:~/tensorflow$
```
This fix adds `fast_tensor_util.cpp` to .gitignore so that
it will not be added inadvertently when adding commit with `git add -A`.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This fix adds cmake generated files in Linux to .gitignore
Before this fix, after:
```
$ tensorflow/tools/ci_build/ci_build.sh CMAKE tensorflow/tools/ci_build/builds/cmake.sh
```
The following files/dirs are left out:
```
ubuntu@ubuntu:~/tensorflow$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
build/
tensorflow/core/util/version_info.cc
nothing added to commit but untracked files present (use "git add" to track)
ubuntu@ubuntu:~/tensorflow$
```
This fix addresses the above issue.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Ignore Windows built project
* Fix deprecated methods in tf.contrib.python
* Fix regex match for Windows build in contrib.keras
* Fix Regex match for Windows build in session_bundle
* * Fix deprecated methods
* Fix regex match for Windows
* Fix compatibility issue with Python 3.x
* Add missing ops into Windows build for test
* Enabled more testcases for Windows build
* Clean code and fix typo
* Add conditional cmake mode for enabling more unit testcase
* Add Cmake mode for major Contrib packages
* Add supplementary info in RAEDME for new cmake option
* * Update tf_tests after testing with TF 1.3
* Clean code and resolve conflicts
* Fix unsafe regex matches and format code
* Update exclude list after testing with latest master branch
* Fix missing module
If I check out TensorFlow to a directory named tensorflow-clean
then Bazel is going to create a subdirectory named
bazel-tensorflow-clean. So we really need to have a wildcard
pattern.
Change: 136559940
Change 109418220
Update WORKSPACE to use gmock.BUILD from google/protobuf instead of a duplicate.
Update google/protobuf's commit hash to include damieng@'s commit.
Change 109417314
TensorFlow: add .gitignore to ignore some in-tree modified files.
Change 109400051
Optionally build full TensorFlow for Android.
1. --define ANDROID_TYPES=__ANDROID_TYPES_FULL__ to register ops
for all types, not just float. Today this increases codesize
by ~700K when compiled for ARM, though only for clients who
request full type support.
2. Add more ops to android_extended_ops, sufficient to train on
the linear regression baseball codelab.
Change 109388118
Fix the option changed in templatize. Oops.
Change 109382553
Allows setting a function name in an op's attr in the py frontend.
Change 109380896
Remove assert_same_graph in favor of op_scope. Change the latter to handle tensor-like objects such as SparseTensor, IndexedSlices, and Variable.
Base CL: 109418322