aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitignore
Commit message (Collapse)AuthorAge
* Move bazel.rc to workspace root to support bazel-0.18.0Gravatar Jason Zaman2018-09-28
| | | | | | | | | | | Bazel 0.18.0 will contain a change for which rc files it accepts. https://github.com/bazelbuild/bazel/commit/ec83598cb6ee4136166bb562a24dc5dfa58921db https://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>
* Merge pull request #21209 from kingofthebongo2008:ignore_cmake_build_artifacts_2Gravatar TensorFlower Gardener2018-08-24
|\ | | | | | | PiperOrigin-RevId: 210203692
* | Add whl file to .gitignore.Gravatar Yifei Feng2018-08-22
| |
| * ignore cmake build artifactsGravatar Stefan Dyulgerov2018-07-28
|/
* Update .gitignore for cmake generated fileGravatar Yong Tang2018-06-30
| | | | | | | | | | | | | | | | | | | | | | | | | 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>
* [CMAKE] Improve cmake build for MKL and MKL-DNN on Windows (#19715)Gravatar Tang, Wenyi2018-06-20
| | | | | | | | | | | | | | | | | | | | * improve mkl compilation on Win, w/o mkl installation needed * add environment to mkl dynamic libraries * put path change into python api generation command * fix mkldnn mistakes * add path environment when executing python to generate api __init__.py * fix typo error * fix typo * add TODO comment * add TODO comment
* Update .gitignore for cmake generated filesGravatar Yong Tang2018-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* update Android libs (#15055)Gravatar hannesa22017-12-10
|
* Update .gitignoreGravatar Robin Richtsfeld2017-12-08
|
* Ios (#14521)Gravatar Pete Warden2017-11-13
| | | | | | | | | | | | | | * 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 relevant for iOS sample apps (#13809)Gravatar Christian Grail2017-10-18
| | | | | | * gitignore: ignore build files relavant for ios sample apps * Add extra linespace at the end
* Add fast_tensor_util.cpp to .gitignore (#13749)Gravatar Yong Tang2017-10-16
| | | | | | | | | | | | | | | | | | | | | 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>
* Add cmake generated files/dirs in Linux to .gitignoreGravatar Yong Tang2017-09-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* Add option for build more python tests in Cmake (#11853)Gravatar raymondxyang2017-08-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Add `.idea/**` into .gitignore for JetBrains IDEGravatar asdf20142017-08-08
|
* Tidy up opensouce mkl build.Gravatar Gunhan Gulsoy2017-07-21
| | | | | | Closes #11212 PiperOrigin-RevId: 162713588
* Merge changes from github.Gravatar Benoit Steiner2017-05-11
| | | | PiperOrigin-RevId: 155709893
* Removing unnecessary lines from gitignoreGravatar A. Unique TensorFlower2017-05-05
| | | | Change: 155210210
* Fix issue related to empty bazel.rc file.Gravatar A. Unique TensorFlower2017-05-02
| | | | Change: 154840138
* Merge changes from github.Gravatar A. Unique TensorFlower2017-04-04
| | | | Change: 152200430
* Merge changes from github.Gravatar Martin Wicke2017-03-23
| | | | Change: 151046259
* Merge changes from github.Gravatar Vijay Vasudevan2017-02-17
| | | | Change: 147897309
* Merge changes from github.Gravatar Benoit Steiner2016-11-09
| | | | Change: 138675832
* Sync hidden files.Gravatar A. Unique TensorFlower2016-10-24
| | | | Change: 137077262
* Ignore Bazel directories in .gitignoreGravatar Justine Tunney2016-10-18
| | | | | | | | 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
* TensorFlow: upstream changes to git.Gravatar Manjunath Kudlur2015-12-04
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