Skip to content
Permalink
Branch: master
Commits on Mar 3, 2019
  1. Internal change

    tensorflower-gardener committed Mar 3, 2019
    PiperOrigin-RevId: 236492367
  2. Py version retrieval.

    tensorflower-gardener committed Mar 3, 2019
    PiperOrigin-RevId: 236491053
  3. Merge pull request #25951 from trevor-m:tmorris_tftrt_check_op_type

    tensorflower-gardener committed Mar 3, 2019
    PiperOrigin-RevId: 236487853
Commits on Mar 2, 2019
  1. [TF:XLA] Fix some comments in the code and remove the additional step…

    tensorflower-gardener committed Mar 2, 2019
    … to zero out trailing row or column.
    
    PiperOrigin-RevId: 236483699
  2. [XLA] Simplify XLA implementation of DivFloor() for floating-point in…

    jlebar authored and tensorflower-gardener committed Mar 2, 2019
    …puts.
    
    Re-landing after this was rolled back.
    
    PiperOrigin-RevId: 236483500
  3. v2: Disable test case relying on graph kernel switching

    martinwicke authored and tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236475895
  4. Fix version extraction for oddball Python's with multiline versions.

    martinwicke authored and tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236474551
  5. Update seq2seq test to be 2.0 compatible.

    qlzh727 authored and tensorflower-gardener committed Mar 2, 2019
    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
  6. Improve Adadelta doc.

    tanzhenyu authored and tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236469934
  7. Remove redundant namespace specification and fix some comments.

    aaroey committed Mar 2, 2019
  8. compat: Update forward compatibility horizon to 2019-03-02

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236437834
  9. Add c_api to Android/mobile builds

    sjamesr authored and tensorflower-gardener committed Mar 2, 2019
    This change is a prerequisite for introducing C Ops and Kernels into Android
    and iOS builds.
    
    PiperOrigin-RevId: 236432247
  10. Use annotated output shapes in shape inference

    Andiry authored and tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236431154
  11. Automated rollback of commit a9064fd

    rryan authored and tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236430122
  12. Patch absl to work around nvcc bug on windows.

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236429734
  13. Update ops-related pbtxt files.

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236428215
  14. Add summary.writer before invoking trace_export

    stephanwlee authored and tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236422330
  15. Support both int32/int64 and float32/float64 in TPU embedding enqueue…

    tensorflower-gardener committed Mar 2, 2019
    … ops.
    
    PiperOrigin-RevId: 236421400
  16. Add a method which makes a best effort attempt to remove any remnants…

    robieta authored and tensorflower-gardener committed Mar 2, 2019
    … of the pool created when multiprocessing=True is set.
    
    PiperOrigin-RevId: 236417625
  17. Fix breakage related to HParam in tpu_estimator.py

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236415795
  18. [tf.data] Add an unbounded thread pool to iterator resources.

    mrry authored and tensorflower-gardener committed Mar 2, 2019
    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
  19. Additional python version retrieval filter.

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236407702
  20. Correctly check shape not None in Keras `add_weight`.

    jvdillon authored and tensorflower-gardener committed Mar 2, 2019
    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
  21. Automated rollback of commit b562be2

    timshen91 authored and tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236405963
  22. Merge pull request #26118 from amitsrivastava78:patch-23

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236405002
  23. [XLA] Simplify CopyInsertion a bit.

    jlebar authored and tensorflower-gardener committed Mar 2, 2019
    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
  24. Use auditwheel 1.5.0.

    yifeif authored and tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236403575
  25. Merge pull request #20800 from tianyapiaozi:fix

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236402237
  26. Cleans up supporting files for Swift and ObjC TensorFlow Lite librari…

    tensorflower-gardener committed Mar 2, 2019
    …es to make them consistent.
    
    PiperOrigin-RevId: 236400962
  27. Updating awk command for retrieving pyver for MacOS.

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236398646
  28. Gets functional ops tests to pass in tf2 on gpu

    tensorflower-gardener committed Mar 1, 2019
    PiperOrigin-RevId: 236394682
  29. Merge pull request #26231 from lgeiger:unused-variable

    tensorflower-gardener committed Mar 2, 2019
    PiperOrigin-RevId: 236392486
Commits on Mar 1, 2019
  1. Fix tf.function's shape relaxation check.

    allenlavoie authored and tensorflower-gardener committed Mar 1, 2019
    TensorShape.is_compatible_with is symmetric; we need an asymmetric test here.
    
    PiperOrigin-RevId: 236390944
  2. PR #21207: removed inline function

    tensorflower-gardener committed Mar 1, 2019
    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
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.