aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitignore
Commit message (Collapse)AuthorAge
* Branch 154885009 (#9604)Gravatar Vijay Vasudevan2017-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Enable grappler to propagate shapes through queues. Change: 154789133 * Add whitelist support in uid of RunConfig. Change: 154794859 * Fix a bunch of bad links and missing docs in contrib. Change: 154820641 * Don't try to refine the shapes for a node if its inference context wasn't successfully built by the AddNode() method. Change: 154838211 * Fix issue related to empty bazel.rc file. Change: 154840138 * Remove overly precise CHECK when rendering debug output for a function. An `_Arg` node can have more than three attrs, because the runtime may (and does) add system-defined attrs (viz. "_output_shapes") that do not change the meaning of the op. Change: 154850526 * Port makefile build breakage Change: 154855106 * [TF:XLA] Try to incorporate Tensorflow node structure for large HLO GraphDefs. This change assumes that a TF subgraph/op does not cross the boundary of a HLO computation and always put top-level TF subgraphs/ops under HLO computations. Change: 154855884 * Added a unit test to check what happens when 2 shapes with known rank but unknown dimensions are merged Change: 154856675 * [XLA] Refactor constant folding operations into a dedicated module Refactor constant folding operations into a dedicated module, and added a new ReplaceInstruction() API to collapse { computation->ReplaceInstruction(); changed=true}. Change: 154857025 * Java: Docs: Update instructions for Windows. Inspired by http://stackoverflow.com/questions/43741775/tensorflow-in-java-running-failed Change: 154859066 * Add more documentation for features and labels. Change: 154859649 * Added link to high-performance models Change: 154860213 * Navigation and index for new performance section documents. Change: 154862215 * Fix shape mismatch between loss and weights. Change: 154862650 * Add examples to TensorShape documentation and ran autoformatter. Change: 154862667 * Move linking of cudnn_plugin, cublas_plugin and cufft_plugin from stream_executor to the ops that need them. Change: 154863520 * Properly track the persistent memory usage of lookup tables. Change: 154866686 * Reset the inputs to ShapeRefiner::RunShapeFn so that it behaves the same every time it's called. To properly handle queues that have populated by several enqueue ops, merge the shapes of the inputs to all the enqueue ops before calling InferenceContext::set_output_handle_shape(). This ensures that we detect incorrect queue setups (where the 2 enqueue ops might generate tensors with incompatible shapes), and that we take all the known shape information instead of that of just one of the enqueue ops. Change: 154866747 * Making sure an error message will be produced by session_manager when a non-tensor object is passed in. Otherwise the 'name' property is missing. Change: 154868022 * Don't needlessly synchronize the CUDA stream in CropAndResize. Make the op Async so we don't block an executor thread while waiting for the result of the box bounds check to be copied back to the host. Change: 154868460 * Add contribution guidelines and standards section to CONTRIBUTING.md Several parts are largely based on the post by @yaroslavvb at: #7443#issuecomment-279182613 Fixes #7443 Change: 154876045 * Final draft Change: 154876563 * Final draft Change: 154876646 * Fix losses documentation. Fix documentation of get_total_loss() to be correct. And add a helpful comment about a common pitfall. Change: 154876822 * [XLA] Second change for HLO interpreter. Extends HloEvaluator to allow evaluation of HLO Computation or single HLO instruction with non-constant operands, by traversing the instruction in post order and keeps track of each instruction along the way as evaluated literals. Change: 154877580 * [tf distributions] Move the remaining whitelisted distributions to core. Change: 154878206 * Add shape to error message. Change: 154880260 * Revert "Fix build issue when `/usr/bin/python` path is not available (#9547)" This reverts commit 95f37ebf0bd46c328266f65bbd16d319c0efab3d.
* Windows: Fix cuda_configure.bzl for Bazel build (#8837)Gravatar Yun Peng2017-03-31
| | | | | | | | | | | | | | | | * Windows: Fix cuda_configure.bzl for Bazel build 1. Remove corresponding action_env before writing it 2. Add quote to environment variables 3. Return a dummpy value for gcc detection on Windows * Use import .tf_configure.bazelrc in .bazelrc * Small fix * More fixes after merge * Add TF_CUDA_CLANG=0 on Windows after merge
* Use .bazelrc to configure optional dependencies (#8218)Gravatar Justine Tunney2017-03-14
| | | | | | | | | | | Rather than having ./configure mutate one of our .bzl files, which dirties the git repository, this change has ./configure put the options for jemalloc, GCS, HDFS, and XLA inside a .bazelrc at the root of the TensorFlow repository. This file is listed in .gitignore. Therefore, running ./configure will no longer cause the git repository to be in a modified state. Fixes #8202
* Fix typo CUDNN_RETURN_IF_FAIL.Gravatar Florian Courtial2017-02-10
|
* Ignore tools/git/gen (#5457)Gravatar Geoffrey Irving2016-11-07
|
* Merge commit for internal changesGravatar Patrick Nguyen2016-10-20
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | * Same as backward-merge: - .gitignore: merged. - tensorflow/contrib/distributions/python/ops/beta.py * contrib/cmake: keep HEAD and /MP option. * port.cc: keep both includes. * tensor_bundle/BUILD: keep additional no-warning flag. * md files: override gitbub with internal change. * tensorflow/stream_executor/dso_loader.cc: delete unused dynload_flags. * tensorflow/tools/pip_package/simple_console_for_windows.py: keep version without carriage returns * tensorflow/configure: keep ours (136269932) * tensorflow.bzl: keep ours (136269932), all 3 places.
| * 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
* | Update gitignore. (#4533)Gravatar haosdent2016-09-22
| | | | | | | | `/tensorflow/tools/git/gen/` would be generated during build and it should be ignored.
* | Add auto-generated version_info.cc to .gitignore. (#4475)Gravatar Derek Murray2016-09-20
| | | | | | | | | | | | * Add auto-generated version_info.cc to .gitignore. * Alphabetical order.
* | Add cuda_configure repository rule to autodetect cuda.Gravatar David Z. Chen2016-08-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change reimplements the CUDA autoconfiguration mechanism in Skylark, providing a `cuda_configure` workspace rule. We keep the same user interface, the ./configure script, but rather than modifying source files within the source tree, `cuda_configure` generates a `@local_config_cuda` workspace containing: * Symlinks to the CUDA headers and libraries * BUILD files generated with the correct CUDA and cuDNN versions * CROSSTOOL config with CUDA include dirs populated * crosstool_wrapper_driver_is_not_gcc wrapper script with compiler paths and CUDA compute capabilities set. * cuda_config.h header file with CUDA versions and compute capabilities set, which can be `#include`d by source files. This change also makes the following fixes to `Dockerfile.gpu`: * Change the `CUDNN_INSTALL_PATH` to point to `/usr/lib/x86_64-linux-gnu` rather than `/usr/local/cuda` since NVIDIA's image installs `libcudnn.so` under `/usr/lib/x86_64-linux-gnu`. * Add env variable to set the minimum compute capability to 3.0. Fixes #2873
* | Added code to raise ValueError ifparent directory of path Saver.save() ↵Gravatar Jakub Kolodziejczyk2016-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | should use doesn't exist. This give user a much more readable error message than previous NotFoundError Added code to raise ValueError ifparent directory of path Saver.save() should use doesn't exist. This give user a much more readable error message than previous NotFoundError Added some comments Removed cached file Added saver test that asserts correct error when saving to path with parent dir missing Cleaned up cached files
* | added cuda/extras and cuda/lib to gitignore (#2182)Gravatar Dr. Kashif Rasul2016-05-01
| | | | | | os OS X these folders need to be gitignored
* | Add __pycache__ to .gitignoreGravatar Geoffrey Irving2016-03-22
| |
* | typos fix and ign temp files in gitignoreGravatar rasbt2016-03-15
| |
* | Remove .pyc file and add *.pyc to .gitignoreGravatar Yuya Kusakabe2016-03-02
| |
* | Add _python_build to .gitignoreGravatar Geoffrey Irving2016-03-01
| | | | | | | | | | The directions for a development build say to make it, so .gitignore should ignore it.
* | First version of CMake build files that compile and link the c++ exampleGravatar Aurelien Geron2016-02-25
| |
* | add cuda links in third_party to gitignoreGravatar Jan Prach2016-02-13
| |
* | Revert "Revert "Python PIP test-on-install""Gravatar Vijay Vasudevan2016-02-04
| | | | | | | | | | | | (Roll forward of the original change) This reverts commit 1ec8cedd50cb708290b2c895b51844dce22cfef5.
* | Revert "Python PIP test-on-install"Gravatar Vijay Vasudevan2016-02-03
| | | | | | | | This reverts commit 4a6d3bddbd3b5697374fe31574900c655de09904.
* | Python PIP test-on-installGravatar Shanqing Cai2016-02-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Addressing jendap's comments Adding --upgrade option to pip install test_on_install: files not installed by required by the unit tests Removing --upgrade flag for "pip install" Renaming test_on_install.sh to pip.sh Getting rid of absolute path /tensorflow and making sure that the whl file and testing working directory are in the workspace. Putting output of individual tests in log files Correcting a blacklisted test Adding progress string Echo log directory Improving error message when container type is incorrect Mac-friendly absolute path function Verbose pip install Adding pip upgrade option More intelligent local python path finding Using longer test log file path in case test file names have duplicates Fixing bug of nonexistent directory for log files Removing ci_test_on_install.sh and other changes Moving the whl and test folder under one common parent folder: pip_test Adding pip_test to .gitignore Printing detailed folder if the .whl file can't be found in it Changing succeeded to PASSED and similar wording changes Adding new line at the end of .gitignore
* | Add tools/python_bin_path.sh to .gitignoreGravatar Geoffrey Irving2016-02-02
| |
* | ci_build: improve user handling inside the containerGravatar Jan Prach2016-01-08
|/ | | | | | | * create use home with .bazelrc * create and use user based on uid instead of user name * add bazel-ci_build-cache to .gitignore * add optional extra ci build parameters
* 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