| Commit message (Collapse) | Author | Age |
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
| |
* gitignore: ignore build files relavant for ios sample apps
* Add extra linespace at the end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
| |
Closes #11212
PiperOrigin-RevId: 162713588
|
|
|
|
| |
PiperOrigin-RevId: 155709893
|
|
|
|
| |
Change: 155210210
|
|
|
|
| |
Change: 154840138
|
|
|
|
| |
Change: 152200430
|
|
|
|
| |
Change: 151046259
|
|
|
|
| |
Change: 147897309
|
|
|
|
| |
Change: 138675832
|
|
|
|
| |
Change: 137077262
|
|
|
|
|
|
|
|
| |
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
|