aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* | | | | | | | | | | Merge pull request #20768 from yongtang:20751-tf.PrintGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208133320
* \ \ \ \ \ \ \ \ \ \ \ Merge pull request #21113 from girving:splitGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208132660
* | | | | | | | | | | | | Improving error messages for dtypes.Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of printing the enum (integer value) for the dtype which is hard to understand by the users, we are now printing the dtype string value. PiperOrigin-RevId: 208132121
* | | | | | | | | | | | | Disable broken saved_model_estimator_test in tsan.Gravatar Gunhan Gulsoy2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208130734
* | | | | | | | | | | | | Merge pull request #21424 from justinshenk:fixReadmeFormattingGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208130131
* | | | | | | | | | | | | | Fix emplace_back(new) callsGravatar Piotr Padlewski2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Doing v.emplace_back(new Type) on a std::vector<std::unique_ptr<Type>> is not exception safe. This is because it cause a leak of passed pointer if emplace_back would throw exception before emplacement (e.g. not enough memory to add a new element). PiperOrigin-RevId: 208130121
* | | | | | | | | | | | | | [TF:XLA] Add a real implementation of XlaDevice::Sync() so Session::Run() ↵Gravatar Peter Hawkins2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | will correctly wait for all computations to complete on an XLA device before termination. [TF:XLA] Change the XlaTensor definition event to be a shared pointer to an stream_executor::Event. This allows many tensors to share the same definition event. PiperOrigin-RevId: 208128264
* | | | | | | | | | | | | | Fix estimator dependencies in contrib/.Gravatar Michael Case2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208126204
* | | | | | | | | | | | | | Expose method to get model input type.Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208124726
* | | | | | | | | | | | | | Make CpuExecutable::ExecuteOnStream actually use the stream.Gravatar Tim Shen2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, it eagerly execute the function, ignoring the previously en-queued tasks. Also removed the "Asynchronous execution on stream with hlo profiling is not yet supported on CPU." check, as profiling is not supported by the async interface anyway. PiperOrigin-RevId: 208124125
* | | | | | | | | | | | | | Internal Change.Gravatar Michael Case2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208120728
* | | | | | | | | | | | | | Preserve function description through Grappler optimizations.Gravatar Jiri Simsa2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208119717
* | | | | | | | | | | | | | Change EventsWriter reset order so that file_ is still available when ↵Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | recordio_writer_ is destructed PiperOrigin-RevId: 208118568
* | | | | | | | | | | | | | Consolidate the RNN cell interface between Keras and TF RNN.Gravatar Scott Zhu2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208118371
| | | | | | | | | | | * | | docs_src: minor spelling tweaksGravatar Brett Koonce2018-08-09
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #19534 from yongtang:hadoopGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208112353
* | | | | | | | | | | | | | | Automated rollback of commit abf8b6e2d32da89d5929657bb06c73a91ac3dcc7Gravatar Anna R2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208112285
* | | | | | | | | | | | | | | Internal Change.Gravatar Michael Case2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208110979
* | | | | | | | | | | | | | | Make GemmThunkShouldHaltAllActivityBeforeRunning easier to understand; NFCGravatar Sanjoy Das2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208110715
* | | | | | | | | | | | | | | [XLA] Make sure backends that don't support variadic reduce reject it.Gravatar Michael Kuperstein2018-08-09
| |_|_|_|_|_|_|_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208106767
| | | | | * | | | | | | | | Fix formatting.Gravatar Amit Patankar2018-08-09
| | | | | | | | | | | | | |
| | | | | * | | | | | | | | Adding the new dependencies to build from source for master.Gravatar Amit Patankar2018-08-09
| |_|_|_|/ / / / / / / / / |/| | | | | | | | | | | |
* | | | | | | | | | | | | Make allowed bucket locations case insensitive.Gravatar Michael Banfield2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208104156
* | | | | | | | | | | | | Automated rollback of commit c216a1be9564bd6b83b1e81b1eea65cc381bd82eGravatar Anna R2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208102175
* | | | | | | | | | | | | Internal change.Gravatar Anna R2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208101815
* | | | | | | | | | | | | Merge pull request #20077 from yongtang:06152018-s3-errorsGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208101398
* \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #21023 from zhaoyongke:masterGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208100633
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #21146 from lowintelligence:masterGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208100549
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #15608 from accraze:patch-1Gravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208099821
* | | | | | | | | | | | | | | | | Remove code that is no longer valid post change away from lowering to while ↵Gravatar Jacques Pienaar2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | loops. When if op was lowered via while loops, the inputs and outputs matched. When changed to the conditional this no longer holds. Resource variables are appended at the end of the inputs & outputs, use the count of resource variables in the input to identify the outputs due to resource variables. This still requires that all the variables are last in the input to the op and that every variable read/written to is an output of the if. PiperOrigin-RevId: 208097738
| | | | | | | * | | | | | | | | | Fix clang format errorsGravatar Geoffrey Irving2018-08-09
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Fix emplace_back(new) callsGravatar Piotr Padlewski2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Doing v.emplace_back(new Type) on a std::vector<std::unique_ptr<Type>> is not exception safe. This is because it cause a leak of passed pointer if emplace_back would throw exception before emplacement (e.g. not enough memory to add a new element). PiperOrigin-RevId: 208095516
* | | | | | | | | | | | | | | | | Refactor out path concatenation in the SavedModelBuilder.Gravatar Katherine Wu2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208094190
* | | | | | | | | | | | | | | | | [XLA] Add parameter allow_mixed_precision used for creating the HloVerifierGravatar Bixia Zheng2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for the test. PiperOrigin-RevId: 208093909
* | | | | | | | | | | | | | | | | [XLA] The algebraic simplifier can't handle variadic reduce at this point.Gravatar Michael Kuperstein2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208092411
* | | | | | | | | | | | | | | | | Improve animations for dcgan and cvae.Gravatar Mark Daoust2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Save a smaller image grid, more often. - Increase the number of Epochs per Frame as training progresses. PiperOrigin-RevId: 208091735
* | | | | | | | | | | | | | | | | Make sure Shampoo preconditions grads of matrices of size max_matrix_sizeGravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208090007
* | | | | | | | | | | | | | | | | Merge pull request #20296 from freedomtan:lite_kernels_internal_testsGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208085381
* | | | | | | | | | | | | | | | | | [XLA:GPU] Fix GemmThunk::ShouldHaltAllActivityBeforeRunning.Gravatar Sanjoy Das2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208084696
* | | | | | | | | | | | | | | | | | Automated rollback of commit fe6b586e862bf7288e138d73f2e66cf8cef7eb26. ↵Gravatar Gunhan Gulsoy2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert #18293. PiperOrigin-RevId: 208084441
* | | | | | | | | | | | | | | | | | Support writing np.ndarray as tensors in Summary proto.Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208084201
* | | | | | | | | | | | | | | | | | Merge pull request #20029 from yoya:masterGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208076674
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #21319 from tensorflow:mrry-patch-1Gravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208075630
* | | | | | | | | | | | | | | | | | | | PR #18293: [XLA/AOT] Build LLVM with Bazel on WindowsGravatar Patrick Nguyen2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I previously use hacky BUILD file to import prebuilt LLVM binaries from CMake to Bazel so that I can build `tfcompile` with Bazel on Windows, but since Tensorflow updates the LLVM revision used very frequently, this method is too troublesome. I am trying to make XLA/AOT to work out-of-the-box on Windows with Bazel, then convince Tensorflow team to create a presubmit so that no one can break XLA/AOT on Windows anymore. Summary: - Remove unused `llvm_host_triple`. - Rename `cmake_vars` to `posix_cmake_vars` and create a new `win32_cmake_vars` as Windows is sufficiently different from other platforms. - Create `LLVM_DEFINES`, `LLVM_COPTS` and `LLVM_LINKOPTS` in `llvm.bzl` to set global compile/link flags for LLVM. - Create macro `llvm_cc_library` that wrap around `cc_library` to ensure that all targets receive `LLVM_COPTS` consistently. Replace all `cc_library` with `llvm_cc_library`. - For `support` library, include `lib/Support/Windows/*` for Windows and `lib/Support/Unix/*` for others. If `llvm.BUILD` is not to be edited manually no matter what, can the script used to generate `llvm.BUILD` be open-sourced? #15213 /cc @tatatodd Imported from GitHub PR #18293 Copybara import of the project: - a5e7b841d79878b12e0d0103e5b1813384a80aa8 [XLA/AOT] Build LLVM with Bazel on Windows by Loo Rong Jie <loorongjie@gmail.com> - b3a20c7bbff95fd8ad9f44c653a3ecffc54de3b3 Add back LLVM_ENABLE_STATS by Loo Rong Jie <loorongjie@gmail.com> - 787d451b495180f5c882d09d76222c157102f0fc Merge b3a20c7bbff95fd8ad9f44c653a3ecffc54de3b3 into 6a1ff... by Loo Rong Jie <loorongjie@gmail.com> COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/tensorflow/pull/18293 from rongjiecomputer:llvm b3a20c7bbff95fd8ad9f44c653a3ecffc54de3b3 PiperOrigin-RevId: 208073601
* | | | | | | | | | | | | | | | | | | | [XLA:CPUGPU] Make tanh emission more like the other opsGravatar Benjamin Kramer2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | No reason for tanh to be the odd one out. PiperOrigin-RevId: 208072018
* | | | | | | | | | | | | | | | | | | | Merge pull request #20541 from rongjiecomputer:kafkaGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208070785
* | | | | | | | | | | | | | | | | | | | | Distribute input in estimator correctly for eval.Gravatar Priya Gupta2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208070489
* | | | | | | | | | | | | | | | | | | | | Merge pull request #20477 from wdirons:fix_inverse_in_matrix_inverse_tril_testGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208069965
* | | | | | | | | | | | | | | | | | | | | | Add TF Probability mailing list to community pages.Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208069195
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #19736 from freedomtan:label_image_tflite_pyGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208062989