Branch: master
-
PiperOrigin-RevId: 236492367
-
PiperOrigin-RevId: 236491053
-
Merge pull request #25951 from trevor-m:tmorris_tftrt_check_op_type
PiperOrigin-RevId: 236487853
-
[TF:XLA] Fix some comments in the code and remove the additional step…
… to zero out trailing row or column. PiperOrigin-RevId: 236483699
-
[XLA] Simplify XLA implementation of DivFloor() for floating-point in…
…puts. Re-landing after this was rolled back. PiperOrigin-RevId: 236483500
-
v2: Disable test case relying on graph kernel switching
PiperOrigin-RevId: 236475895
-
Fix version extraction for oddball Python's with multiline versions.
PiperOrigin-RevId: 236474551
-
Update seq2seq test to be 2.0 compatible.
Previously it was only tested under eager mode, and new issue was discovered by when "TF2_BEHAVIOR=1". Also the v2 tests has been updated to use keras.LSTMCell to ensure the correctness in v2. PiperOrigin-RevId: 236470595
-
PiperOrigin-RevId: 236469934
-
compat: Update forward compatibility horizon to 2019-03-02
PiperOrigin-RevId: 236437834
-
Add c_api to Android/mobile builds
This change is a prerequisite for introducing C Ops and Kernels into Android and iOS builds. PiperOrigin-RevId: 236432247
-
Use annotated output shapes in shape inference
PiperOrigin-RevId: 236431154
-
Automated rollback of commit a9064fd
PiperOrigin-RevId: 236430122
-
Patch absl to work around nvcc bug on windows.
PiperOrigin-RevId: 236429734
-
Update ops-related pbtxt files.
PiperOrigin-RevId: 236428215
-
Add summary.writer before invoking trace_export
PiperOrigin-RevId: 236422330
-
Support both int32/int64 and float32/float64 in TPU embedding enqueue…
… ops. PiperOrigin-RevId: 236421400
-
Add a method which makes a best effort attempt to remove any remnants…
… of the pool created when multiprocessing=True is set. PiperOrigin-RevId: 236417625
-
Fix breakage related to HParam in tpu_estimator.py
PiperOrigin-RevId: 236415795
-
[tf.data] Add an unbounded thread pool to iterator resources.
The previous implementation of many core `tf.data` transformations (e.g. `Dataset.prefetch()`) would create one or more threads each time an iterator over those datasets is created (e.g. `ds.prefetch(N).repeat(100)` would create and destroy 100 threads). In addition to the overhead of thread creation, this interacts poorly with some malloc implementations, and can contribute to memory fragmentation. The new implementation maintains an unbounded pool of physical threads in each iterator (or `MultiDeviceIterator`) resource, and returns logical "threads" to that pool when their work is complete instead of exiting from them. PiperOrigin-RevId: 236413014
-
Polish the tf.optimizers.Adagrad class documentation a bit.
Before: https://www.tensorflow.org/versions/r2.0/api_docs/python/tf/optimizers/Adagrad PiperOrigin-RevId: 236410591
-
Additional python version retrieval filter.
PiperOrigin-RevId: 236407702
-
Correctly check shape not None in Keras `add_weight`.
When calling Keras add_weight with a np list, as written the `shape or ()` "trick" results in the following exception: """ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()""" This change fixes the problem by using an explicit `if`. PiperOrigin-RevId: 236407103
-
Automated rollback of commit b562be2
PiperOrigin-RevId: 236405963
-
Merge pull request #26118 from amitsrivastava78:patch-23
PiperOrigin-RevId: 236405002
-
[XLA] Simplify CopyInsertion a bit.
Almost all of the logic of the CopyRemover class was contained in an inner class, BufferValueTracker. This change moves the logic that was inside of CopyRemover into callers, and promotes BufferValueTracker into a new CopyRemover class. PiperOrigin-RevId: 236404892
-
PiperOrigin-RevId: 236403575
-
Merge pull request #20800 from tianyapiaozi:fix
PiperOrigin-RevId: 236402237
-
Cleans up supporting files for Swift and ObjC TensorFlow Lite librari…
…es to make them consistent. PiperOrigin-RevId: 236400962
-
Updating awk command for retrieving pyver for MacOS.
PiperOrigin-RevId: 236398646
-
Gets functional ops tests to pass in tf2 on gpu
PiperOrigin-RevId: 236394682
-
Merge pull request #26231 from lgeiger:unused-variable
PiperOrigin-RevId: 236392486
-
Fix tf.function's shape relaxation check.
TensorShape.is_compatible_with is symmetric; we need an asymmetric test here. PiperOrigin-RevId: 236390944
-
PR #21207: removed inline function
Imported from GitHub PR #21207 if one includes the header and does not link with coding.cc gets unresolved error. not the case when you just include extern functions and do not use them, more over this function does not seem to save so much being inlined. Copybara import of the project: - 60ab66e removed inline function by Stefan Dyulgerov <stefan.dyulgerov@gmail.com> - ba7b6ed Merge 60ab66e into 132d1... by Stefan Dyulgerov <stefan.dyulgerov@gmail.com> COPYBARA_INTEGRATE_REVIEW=#21207 from kingofthebongo2008:clean_coding_refactor 60ab66e PiperOrigin-RevId: 236390630