Skip to content

Commit

Permalink
⬆️ tensorflow@2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lgeiger committed May 17, 2022
1 parent 9ddafce commit e3d3508
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ http_archive(
"//third_party/tensorflow_patches:disable_forced_mkl.patch",
"//third_party/tensorflow_patches:fix_armhf_xnnpack.patch",
],
sha256 = "7d736fa5ff3868516359d8370e7b57251b8080243fc38e8089ee0ceb8ee90264",
strip_prefix = "tensorflow-2.9.0-rc0",
sha256 = "8087cb0c529f04a4bfe480e49925cd64a904ad16d8ec66b98e2aacdfd53c80ff",
strip_prefix = "tensorflow-2.9.0",
urls = [
"https://github.com/tensorflow/tensorflow/archive/v2.9.0-rc0.tar.gz",
"https://github.com/tensorflow/tensorflow/archive/v2.9.0.tar.gz",
],
)

Expand Down
2 changes: 1 addition & 1 deletion third_party/tensorflow
Submodule tensorflow updated 89 files
+0 −2 .bazelrc
+47 −0 RELEASE.md
+24 −0 tensorflow/compiler/tests/spacetobatch_op_test.py
+1 −0 tensorflow/compiler/tf2xla/kernels/BUILD
+17 −3 tensorflow/compiler/tf2xla/kernels/spacetobatch_op.cc
+4 −1 tensorflow/core/common_runtime/eager/execute.cc
+0 −4 tensorflow/core/common_runtime/eager/mkl_eager_op_rewrite.cc
+1 −0 tensorflow/core/framework/BUILD
+2 −1 tensorflow/core/framework/shape_inference.cc
+17 −9 tensorflow/core/framework/tensor_key.h
+21 −2 tensorflow/core/grappler/optimizers/remapper.cc
+5 −4 tensorflow/core/kernels/BUILD
+12 −0 tensorflow/core/kernels/conv_grad_ops_3d.cc
+3 −2 tensorflow/core/kernels/depthwise_conv_grad_op.cc
+10 −10 tensorflow/core/kernels/edit_distance_op.cc
+16 −16 tensorflow/core/kernels/fake_quant_ops_functor.h
+11 −2 tensorflow/core/kernels/histogram_op.cc
+5 −0 tensorflow/core/kernels/load_and_remap_matrix_op.cc
+2 −2 tensorflow/core/kernels/mkl/mkl_batch_matmul_op.cc
+10 −0 tensorflow/core/kernels/mkl/mkl_concat_op.cc
+10 −0 tensorflow/core/kernels/mkl/mkl_conv_grad_filter_ops.cc
+9 −0 tensorflow/core/kernels/mkl/mkl_conv_grad_input_ops.cc
+14 −0 tensorflow/core/kernels/mkl/mkl_conv_ops.cc
+10 −0 tensorflow/core/kernels/mkl/mkl_eltwise_activation_base_op.h
+17 −0 tensorflow/core/kernels/mkl/mkl_fused_batch_norm_op.cc
+17 −0 tensorflow/core/kernels/mkl/mkl_matmul_ops_common.h
+6 −0 tensorflow/core/kernels/mkl/mkl_pooling_ops_common.cc
+10 −0 tensorflow/core/kernels/mkl/mkl_pooling_ops_common.h
+10 −0 tensorflow/core/kernels/mkl/mkl_quantize_op.cc
+17 −0 tensorflow/core/kernels/mkl/mkl_relu_op.cc
+10 −0 tensorflow/core/kernels/mkl/mkl_slice_op.cc
+12 −2 tensorflow/core/kernels/mkl/mkl_softmax_op.cc
+8 −2 tensorflow/core/kernels/quantize_and_dequantize_op.cc
+20 −6 tensorflow/core/kernels/quantized_conv_ops.cc
+20 −20 tensorflow/core/kernels/quantized_conv_ops_test.cc
+59 −0 tensorflow/core/kernels/rnn/lstm_ops.cc
+4 −0 tensorflow/core/kernels/session_ops.cc
+17 −5 tensorflow/core/kernels/spacetobatch_op.cc
+7 −0 tensorflow/core/kernels/sparse/sparse_tensor_to_csr_sparse_matrix_op.cc
+30 −0 tensorflow/core/kernels/sparse_tensor_dense_add_op.cc
+2 −0 tensorflow/core/kernels/stage_op.cc
+1 −0 tensorflow/core/kernels/strided_slice_op.cc
+1 −1 tensorflow/core/kernels/strided_slice_op_impl.h
+4 −0 tensorflow/core/kernels/summary_tensor_op.cc
+8 −0 tensorflow/core/kernels/unsorted_segment_join_op.cc
+73 −28 tensorflow/core/platform/default/logging.h
+1 −1 tensorflow/core/public/version.h
+3 −0 tensorflow/core/util/BUILD
+101 −0 tensorflow/core/util/mkl_util.h
+27 −19 tensorflow/core/util/util.cc
+3 −3 tensorflow/dtensor/cc/BUILD
+3 −1 tensorflow/dtensor/cc/tpu_system_interface.h
+4 −0 tensorflow/dtensor/mlir/BUILD
+4 −0 tensorflow/dtensor/mlir/dtensor_dialect/BUILD
+1 −0 tensorflow/dtensor/mlir/utils/BUILD
+2 −0 tensorflow/dtensor/python/BUILD
+201 −11 tensorflow/dtensor/python/api.py
+67 −134 tensorflow/dtensor/python/dtensor_device.py
+1 −1 tensorflow/dtensor/python/heartbeat.py
+95 −14 tensorflow/dtensor/python/layout.py
+80 −4 tensorflow/dtensor/python/mesh_util.py
+7 −8 tensorflow/dtensor/python/multi_client_util.py
+11 −7 tensorflow/dtensor/python/tpu_util.py
+55 −16 tensorflow/lite/java/src/main/native/op_resolver_lazy_delegate_proxy.cc
+3 −2 tensorflow/python/data/experimental/kernel_tests/service/fault_tolerance_test.py
+1 −1 tensorflow/python/distribute/failure_handling/failure_handler_test.py
+19 −3 tensorflow/python/eager/context.py
+4 −1 tensorflow/python/eager/pywrap_tfe_src.cc
+18 −0 tensorflow/python/kernel_tests/array_ops/edit_distance_op_test.py
+23 −0 tensorflow/python/kernel_tests/array_ops/spacetobatch_op_test.py
+0 −2 tensorflow/python/kernel_tests/data_structures/BUILD
+11 −0 tensorflow/python/kernel_tests/data_structures/stage_op_test.py
+26 −0 tensorflow/python/kernel_tests/io_ops/checkpoint_ops_test.py
+4 −4 tensorflow/python/kernel_tests/linalg/self_adjoint_eig_op_test.py
+19 −0 tensorflow/python/kernel_tests/linalg/sparse/csr_sparse_matrix_ops_test.py
+18 −0 tensorflow/python/kernel_tests/nn_ops/conv3d_backprop_filter_v2_grad_test.py
+31 −0 tensorflow/python/kernel_tests/nn_ops/rnn_cell_test.py
+41 −5 tensorflow/python/kernel_tests/sparse_ops/sparse_add_op_test.py
+1 −1 tensorflow/python/kernel_tests/sparse_ops/sparse_ops_test.py
+6 −4 tensorflow/python/kernel_tests/summary_ops/summary_ops_test.py
+1 −1 tensorflow/python/ops/data_flow_ops.py
+67 −0 tensorflow/python/ops/quantized_conv_ops_test.py
+3 −0 tensorflow/python/ops/ragged/ragged_factory_ops.py
+23 −0 tensorflow/python/ops/summary_ops_v2.py
+1 −0 tensorflow/python/types/trace.py
+4 −4 tensorflow/tools/api/golden/v2/tensorflow.experimental.dtensor.pbtxt
+2 −2 tensorflow/tools/pip_package/setup.py
+9 −9 tensorflow/workspace2.bzl
+13 −14 third_party/curl.BUILD

0 comments on commit e3d3508

Please sign in to comment.