aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* | | | | | | | | | | 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
| | | | | | | | | | | | | * | | | | | | Two improvements to tf.split's shape functionGravatar Geoffrey Irving2018-08-09
| |_|_|_|_|_|_|_|_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Don't break if the size corresponding to a -1 is 0. 2. Infer the size corresponding to a -1 if possible. Fixes #19360.
* | | | | | | | | | | | | | | | | | | Get TFLite Eager delegate tests working in open source.Gravatar Nupur Garg2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208061053
* | | | | | | | | | | | | | | | | | | Add helpful error output for Switch-related toco failureGravatar Jared Duke2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208059996
* | | | | | | | | | | | | | | | | | | Add a virtual Predicate::operands() accessor; NFCGravatar Sanjoy Das2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208057978
* | | | | | | | | | | | | | | | | | | Merge pull request #21144 from 2sin18:masterGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208057902
* | | | | | | | | | | | | | | | | | | | Perform cumulation before adding bias.Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208056257
* | | | | | | | | | | | | | | | | | | | Merge pull request #20958 from DavidNorman:allow-some-test-to-be-disabledGravatar TensorFlower Gardener2018-08-09
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208056156
* | | | | | | | | | | | | | | | | | | | | Follow-up fix for toco compilation on WindowsGravatar Jared Duke2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is follow-up for a related fix that missed adding tf_copts() to toco:tooling_util. PiperOrigin-RevId: 208054430
* | | | | | | | | | | | | | | | | | | | | Cache dequantized value if the input tensor of Dequantize() op is constant.Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208053342
* | | | | | | | | | | | | | | | | | | | | Internal cleanupGravatar Scott Zhu2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208050561
* | | | | | | | | | | | | | | | | | | | | [XLA] Fix a bug in scatter evaluator test.Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208049879
* | | | | | | | | | | | | | | | | | | | | Fix domain sharding setting for tuple instructions.Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were erroneously propagationg the entire domain sharding for each tuple operand, instead of propagating the operand subsharding. PiperOrigin-RevId: 208048503
* | | | | | | | | | | | | | | | | | | | | Remove usage of magic-api-link syntax from source files.Gravatar Mark Daoust2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Back-ticks are now converted to links in the api_docs generator. With the new docs repo we're moving to simplify the docs pipeline, and make everything more readable. By doing this we no longer get test failures for symbols that don't exist (`tf.does_not_exist` will not get a link). There is also no way, not to set custom link text. That's okay. This is the result of the following regex replacement (+ a couple of manual edits.): re: @\{([^$].*?)(\$.+?)?} sub: `\1` Which does the following replacements: "@{tf.symbol}" --> "`tf.symbol`" "@{tf.symbol$link_text}" --> "`tf.symbol`" PiperOrigin-RevId: 208042358
* | | | | | | | | | | | | | | | | | | | | Internal Change.Gravatar Michael Case2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208039583
* | | | | | | | | | | | | | | | | | | | | Enable batch matmul for half types again which was accidentally disabled in ↵Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CL 197137612. PiperOrigin-RevId: 208022865
* | | | | | | | | | | | | | | | | | | | | compat: Update forward compatibility horizon to 2018-08-09Gravatar A. Unique TensorFlower2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208018779
| | | | | | | | | | | | | | | | | | | * | Fix linking _dataset_ops with VC 2017Gravatar Yun Peng2018-08-09
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | [XLA] Fix use-of-unintialized-value msan failure in local_client as well.Gravatar Kay Zhu2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 208004791