1. 16 8月, 2017 24 次提交
    • A
      eager: Handle both UTF8 strings and bytes in Python3 correctly. · 5db8be66
      Asim Shankar 提交于
      PiperOrigin-RevId: 165385120
      5db8be66
    • S
      Introduce OutputTensor class to internal graph representation · 1430fe86
      Skye Wanderman-Milne 提交于
      This is analogous to TF_Output in the C API and Output in the public C++ API.
      
      PiperOrigin-RevId: 165384397
      1430fe86
    • A
      Expose TFE_DeleteContext in pywrap_tensorflow. · 9becad67
      A. Unique TensorFlower 提交于
      PiperOrigin-RevId: 165379414
      9becad67
    • S
      C++ API: run shape inference as nodes are constructed · 477d49c9
      Skye Wanderman-Milne 提交于
      Here's an example of the new generated code:
      
      AddN::AddN(const ::tensorflow::Scope& scope, ::tensorflow::InputList inputs) {
        if (!scope.ok()) return;
        auto _inputs = ::tensorflow::ops::AsNodeOutList(scope, inputs);
        if (!scope.ok()) return;
        ::tensorflow::Node* ret;
        const auto unique_name = scope.GetUniqueNameForOp("AddN");
        auto builder = ::tensorflow::NodeBuilder(unique_name, "AddN")
                           .Input(_inputs)
        ;
        scope.UpdateBuilder(&builder);
        scope.UpdateStatus(builder.Finalize(scope.graph(), &ret));
        if (!scope.ok()) return;
        scope.UpdateStatus(scope.DoShapeInference(ret));
        this->sum = Output(ret, 0);
      }
      
      Enabling shape inference unfortunately broke many tests. I fixed some of them, but for others I introduced a Scope::DisabledShapeInferenceScope() static method that returns a scope that doesn't perform shape inference. Eventually we should fix the tests that use this and remove it.
      
      PiperOrigin-RevId: 165378429
      477d49c9
    • A
      Internal change. · 9ba0abc2
      Ali Yahya 提交于
      PiperOrigin-RevId: 165374434
      9ba0abc2
    • A
      Correct docstring example. · 37eb6c5a
      A. Unique TensorFlower 提交于
      PiperOrigin-RevId: 165373422
      37eb6c5a
    • B
      Log actual type with sparse feature parsing errors · 1ca4b322
      Brian Williammee 提交于
      PiperOrigin-RevId: 165372385
      1ca4b322
    • A
      Used unordered_set::find() instead of unordered_set::count() for sparse... · bcaf3cf8
      A. Unique TensorFlower 提交于
      Used unordered_set::find() instead of unordered_set::count() for sparse feature lookup to reduce the overhead.
      Up to 10~20% cpu time reduction is expected for sparse features by some benchmarks.
      
      Also replaced std::lower_bound() with std::binary_search() for simplification
      (no preformance difference).
      
      PiperOrigin-RevId: 165370103
      bcaf3cf8
    • A
      Silence more unnecessary shutdown messages. · f58dc00e
      A. Unique TensorFlower 提交于
      PiperOrigin-RevId: 165364674
      f58dc00e
    • A
      Small cleanup after pull: Add missing copybara rule for gdr_server_lib.cc. · 3ec2ddfb
      A. Unique TensorFlower 提交于
      Remove macro reverted in #12219.
      
      PiperOrigin-RevId: 165362077
      3ec2ddfb
    • A
      Allow whitelisting ops to be wrapped in tf_gen_op_wrapper_py. · e0c5c229
      A. Unique TensorFlower 提交于
      This avoids the issue of wrapping ops registered in transitive dependencies
      (which can at times include the entirety of TensorFlow's default ops).
      
      PiperOrigin-RevId: 165350775
      e0c5c229
    • Y
      Add save and restore op in grappler item; · d4bc0ef0
      Yuefeng Zhou 提交于
      PiperOrigin-RevId: 165350681
      d4bc0ef0
    • Y
      Add lookup table ops to cc standard ops. · fed992fb
      Yuefeng Zhou 提交于
      PiperOrigin-RevId: 165350517
      fed992fb
    • A
      Go: Update generated wrapper functions for TensorFlow ops. · 0158ad3a
      A. Unique TensorFlower 提交于
      PiperOrigin-RevId: 165349162
      0158ad3a
    • I
      Clarify that `x` in `tf.nn.dropout` needs to be a floating point tensor. · fde5f92a
      Igor Saprykin 提交于
      `x` is going to be scaled up, so it doesn't make sense for it to be of another type.
      
      PiperOrigin-RevId: 165348557
      fde5f92a
    • A
      Update ops-related pbtxt files. · ca80781b
      A. Unique TensorFlower 提交于
      PiperOrigin-RevId: 165347497
      ca80781b
    • S
      TFE: Add missing srcs_version to BUILD file · 9c1d180a
      Shanqing Cai 提交于
      PiperOrigin-RevId: 165344756
      9c1d180a
    • A
      Fixed python 3 issue with string attr values. · f1b0f012
      Alexandre Passos 提交于
      PiperOrigin-RevId: 165340781
      f1b0f012
    • A
      Merge changes from github. · 28ce1d16
      A. Unique TensorFlower 提交于
      END_PUBLIC
      
      ---
      Commit 9f81374c authored by raymondxyang<zihao.yang@microsoft.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      Add option for build more python tests in Cmake (#11853)
      
      * Ignore Windows built project
      
      * Fix deprecated methods in tf.contrib.python
      
      * Fix regex match for Windows build in contrib.keras
      
      * Fix Regex match for Windows build in session_bundle
      
      * * Fix deprecated methods
      * Fix regex match for Windows
      * Fix compatibility issue with Python 3.x
      
      * Add missing ops into Windows build for test
      
      * Enabled more testcases for Windows build
      
      * Clean code and fix typo
      
      * Add conditional cmake mode for enabling more unit testcase
      
      * Add Cmake mode for major Contrib packages
      
      * Add supplementary info in RAEDME for new cmake option
      
      * * Update tf_tests after testing with TF 1.3
      * Clean code and resolve conflicts
      
      * Fix unsafe regex matches and format code
      
      * Update exclude list after testing with latest master branch
      
      * Fix missing module
      
      ---
      Commit 98f0e1ef authored by Yong Tang<yong.tang.github@outlook.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      Dynamic ksize and strides with MaxPool (#11875)
      
      * Dynamic ksize with max_pool
      
      This fix tries to fix the issue raised in 4746 where ksize
      is static (attr) with max_pool.
      This fix changes ksize to input tensor so that it is dynamic now.
      
      This fix fixes 4746.
      Signed-off-by: NYong Tang <yong.tang.github@outlook.com>
      
      * Add dynamic ksize to MaxPoolGrad and MaxPoolGradGrad
      Signed-off-by: NYong Tang <yong.tang.github@outlook.com>
      
      * Add test cases for max_pool_v2
      Signed-off-by: NYong Tang <yong.tang.github@outlook.com>
      
      * Fix GPU Jenkins issue.
      Signed-off-by: NYong Tang <yong.tang.github@outlook.com>
      
      * Enable MaxPoolV2 in GPU
      Signed-off-by: NYong Tang <yong.tang.github@outlook.com>
      
      * Hide MaxPoolV2 and other fixes.
      Signed-off-by: NYong Tang <yong.tang.github@outlook.com>
      
      ---
      Commit 02d6bc18 authored by Bairen Yi<byronyi@users.noreply.github.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      remove useless variable (#12212)
      
      ---
      Commit ed6b0d90 authored by namrata-ibm<bhavenamrata@gmail.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      Adding support for s390x in calculation of cpu_frequency (#12201)
      
      ---
      Commit 627dfc9d authored by Taehoon Lee<taehoonlee@snu.ac.kr>
      Committed by Taehoon Lee<taehoonlee@snu.ac.kr>:
      Fix typos
      
      ---
      Commit c0f9b0a9 authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      In fast-math mode emit a tanh that has a faster min/max.
      
      PiperOrigin-RevId: 164943597
      
      ---
      Commit 87605f3d authored by Kay Zhu<kayzhu@google.com>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      [TF:XLA] Use HloEvaluator for ComputeConstant, remove the need of a dedicated
      compute constant backend.
      
      PiperOrigin-RevId: 164940970
      
      ---
      Commit 881de45c authored by Taehoon Lee<me@taehoonlee.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      Add bool type supports for GPU kernels (#11927)
      
      * Add bool type supports for GPU kernels
      
      * Add bool type test codes for GPU kernels
      
      ---
      Commit eeacdcdb authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Add missing "CPU" suffix in registrations.
      
      PiperOrigin-RevId: 164939527
      
      ---
      Commit de01be95 authored by namrata-ibm<bhavenamrata@gmail.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      Adding support for Big Endian in graph_constructor_test and wav_io (#12179)
      
      ---
      Commit 26719d29 authored by QingYing Chen<pkudysj@126.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      Implement CRF decode (Viterbi decode) for tensor (#12056)
      
      * Implement CRF decoding for tensors
      
      * add test code for tensor version's CRF decoding
      
      * made modifications according to pylint
      
      * add some comments for crf decode
      
      * remove useless code
      
      * add comments at the top comment of crf module and add more comments in crf_test
      
      * capitalize first char of first word in comments
      
      * replace crf_decode test code with a deterministic example
      
      ---
      Commit f9a81ca2 authored by Pete Warden<pete@petewarden.com>
      Committed by gunan<gunan@google.com>:
      Create CI build script for Raspberry Pi (#12190)
      
      * Create CI build script for Raspberry Pi
      
      * Moved location of Pi build script
      
      ---
      Commit e2a163a9 authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Merge code from PR #11940 with internal changes from cl/164796436, and update Python tests to also run on GPU.
      
      PiperOrigin-RevId: 164929133
      
      ---
      Commit 08bbfa18 authored by Taehoon Lee<me@taehoonlee.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      Fix typos (#12195)
      
      ---
      Commit ab96f41f authored by Luke Iwanski<luke@codeplay.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      [OpenCL] Extends matmul_benchmark.py to cover SYCL (#11697)
      
      * [OpenCL] Extends matmul_benchmark.py to cover SYCL
      
      * Fixed typo
      
      * /gpu:0 -> /device:GPU:0
      
      * Fixes control_flow_ops_py_test
      
      * /gpu: -> /device:GPU:
      
      * Fixes //tensorflow/python/profiler/internal:run_metadata_test
      
      * gpu: -> GPU:
      
      * Fixes tfprof_node
      
      * [OpenCL] Fixes device path to name with many colons (#123)
      
      The device path is constructed from a device name by replacing all
      colons with underscores. Some device names contain more than one colon,
      for example 'device:SYCL:0' which gives a path 'device_SYCL_0'. The
      previous code would not convert this back to the original device name,
      but rather to 'device:SYCL_0'.
      
      An alternative fix would be to convert all underscores to colons in the
      device name (i.e. remove the restriction inside `replace("_", ":", 1)`),
      however I'm not sure if there are any device names which contain
      underscores.
      
      * If no gpu device aviable fake one
      
      * gpu: -> device:GPU
      
      * Fixes profiler test
      
      * /gpu:x -> /device:GPU:x
      
      * Fixes debug_io_utils_test.cc test
      
      * Fixes device_name_utils_test.cc
      
      ---
      Commit 35e7a366 authored by Yong Tang<yong.tang.github@outlook.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      Remove unneeded casting of int64 for reverse_sequence (#12192)
      
      This fix remove unneeded cast of int64 for reverse_sequence:
      ```
      lengths = math_ops.to_int64(lengths)
      ```
      as int32 has already been enabled for reverse_sequence.
      Signed-off-by: NYong Tang <yong.tang.github@outlook.com>
      ---
      Commit 9fba8c18 authored by Anna R<annarev@google.com>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Add benchmark dashboard link to benchmarks doc. Also, I added a link and
      description for Benchmarks page to Community index page.
      
      PiperOrigin-RevId: 164924906
      
      ---
      Commit bb6f32fa authored by Mark Heffernan<meheff@google.com>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Make HloAliasAnalysis updatable after changes to the HLO graph.
      As part of this change make HloAliasAnalysis a thinner layer which
      basically only holds a map from HloValue to HloBuffer and vice versa.
      
      PiperOrigin-RevId: 164923041
      
      ---
      Commit 9103096c authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by Thomas K?ppe<tkoeppe@google.com>:
      Merged commit includes the following changes:
      164923041  by meheff:
      
          Make HloAliasAnalysis updatable after changes to the HLO graph.
          As part of this change make HloAliasAnalysis a thinner layer which
          basically only holds a map from HloValue to HloBuffer and vice versa.
      
      --
      
      PiperOrigin-RevId: 164923041
      
      ---
      Commit 822603ae authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Merging sibling fusion instruction using multi_output_fusion
      
      PiperOrigin-RevId: 164920220
      
      ---
      Commit c035aa2a authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Go: Update generated wrapper functions for TensorFlow ops.
      
      PiperOrigin-RevId: 164917891
      
      ---
      Commit e1e81d9b authored by Luke Iwanski<luke@codeplay.com>
      Committed by Rasmus Munk Larsen<rmlarsen@google.com>:
      [OpenCL] Fixes double memcpy bug (#151) (#12173)
      
      * [OpenCL] Fixes double memcpy bug (#151)
      
      As the debg CopyOp is called on a Tensor without type, we need to use
      the DataType enum to get type information, and use this to pass the type
      on to Eigen. This is a workaround Eigen's need to have a type when
      calling memcpy. If the Eigen memcpy can be provided without a type
      requirement, then the memcpy in sycl_util is unnecessary.
      
      * Acts on feedback from: #12173/files/32cb12a9001b672425867b5a3110fd98e737a20b#r132496277
      
      ---
      Commit d9ca2d86 authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Internal change
      
      PiperOrigin-RevId: 164916465
      
      ---
      Commit b8d13d21 authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Remove more parts of DCASGD missed in the first pass. (47949b)
      
      PiperOrigin-RevId: 164914552
      
      ---
      Commit 73b3d52c authored by Alexandre Passos<apassos@google.com>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      cmake fix
      
      PiperOrigin-RevId: 164911656
      
      ---
      Commit 2173b5b0 authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Allow TFE_TensorHandleCopyToDevice to have the same device as src and
      destination. It will reuse the same underlying buffer in those cases.
      
      PiperOrigin-RevId: 164909906
      
      ---
      Commit 13eb3b90 authored by Alexandre Passos<apassos@google.com>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Experimental C and Python APIs to invoke TensorFlow kernels on concrete values.
      
      PiperOrigin-RevId: 164902588
      
      ---
      Commit 7dfabcc0 authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Initialize ExecutionOptions in ComputeConstant to default values.
      
      PiperOrigin-RevId: 164894867
      
      ---
      Commit c8897e9b authored by Benoit Steiner<bsteiner@google.com>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Static required time computation
      
      PiperOrigin-RevId: 164894645
      
      ---
      Commit 076158f9 authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Enable implicit->explicit conversion by default.
      
      PiperOrigin-RevId: 164890915
      
      ---
      Commit 58c4a4cb authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Bugfix: number of input channels is not necessarily in the last dimension, after introduction of data_format param.
      
      PiperOrigin-RevId: 164889729
      
      ---
      Commit 8f9b1af8 authored by Igor Saprykin<isaprykin@google.com>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Recover MonitoredSession when the Coordinator is requested to stop with one of the _PREEMPTION_ERRORS.
      
      When SyncReplicasOptimizer is used, a preemption in the Coordinator may result in two cases:
      Case 1) the session gets silently marked as complete
      Case 2) the session gets stuck
      
      This CL aims to solve and verify solutions for both of these problems. Fix 1 changes the should_stop logic. Fix 2 changes the CoordinatedSession.run() logic.
      
      SyncReplicasOptimizer runs a separate set of threads using a Coordinator instance. Those threads do FIFOQueue.enqueue; the main thread does a blocking FIFOQueue.dequeue.
      
      `sync_token_q` FIFOQueue is on parameter-servers. When one of the PS instances gets preempted, an AbortedError causes the Coordinator to stop via request_stop(ex). That by itself changes the state of MonitoredSession.should_stop() to True (Fix 1).
      
      Results of the blocking Dequeue operation are sent to the chief worker via Recv. What happens next depends on the amount of tokens in `sync_token_q`. If there are enough for the next call to Dequeue to return, then the low-level "tf session run() call" returns. The next iteration of the `while not MonitoredSession.should_stop()` loop decides that the training is complete (Case 1).
      
      If there are not enough tokens in `sync_token_q`, then the blocking Dequeue is going to keep waiting for them. This results in the graph execution getting stuck and the whole session getting garbage collected after 10 minutes (Case 2).
      
      We decided to fix that by re-creating a session after it gets garbage collected (Fix 2). An alternative was to try to cancel the pending Dequeue operation, but it's not clear that it is the right thing to do and it is also not easy.
      
      PiperOrigin-RevId: 164888390
      
      ---
      Commit 46e4de6e authored by A. Unique TensorFlower<gardener@tensorflow.org>
      Committed by TensorFlower Gardener<gardener@tensorflow.org>:
      Undo loop fusion changes for now as they seem to be altering a few results.
      END_PUBLIC
      RELNOTES: n/a
      
      BEGIN_PUBLIC
      BEGIN_PUBLIC
      Automated g4 rollback of changelist 164825735
      
      PiperOrigin-RevId: 165340331
      28ce1d16
    • A
      Make the RMSPropOptimizer docstring more explicit about sparse vs. dense · 03a33c08
      Allen Lavoie 提交于
      PiperOrigin-RevId: 165335237
      03a33c08
    • A
      Use updated gemmlowp worker pool api. · 75a9c4b5
      A. Unique TensorFlower 提交于
      PiperOrigin-RevId: 165324487
      75a9c4b5
    • A
      Running session.close if coordinator can't kill all threads. · f82e6273
      A. Unique TensorFlower 提交于
      PiperOrigin-RevId: 165323095
      f82e6273
    • A
      Simplify saved_model/utils_test by using tf.sparse_placeholder() as a quick · 22eab4bb
      A. Unique TensorFlower 提交于
      way of getting a SparseTensor of a particular shape.
      
      PiperOrigin-RevId: 165322708
      22eab4bb
    • A
      Internal-only change. · 88bde521
      A. Unique TensorFlower 提交于
      PiperOrigin-RevId: 165321511
      88bde521
  2. 15 8月, 2017 16 次提交