Skip to content

Commit

Permalink
⬆️ tensorflow to reduce build time
Browse files Browse the repository at this point in the history
This includes tensorflow/tensorflow#37362 which should reduce the amount of dependencies to build.
  • Loading branch information
lgeiger committed Apr 1, 2020
1 parent 1dff434 commit dd6e644
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 @@ -55,10 +55,10 @@ arm_compiler_configure(
# reliable downloads.
http_archive(
name = "org_tensorflow",
sha256 = "2f434c204a606c674bd7c5657a3c6e941504d9806e9d5aa7a1e5b254a21ef351",
strip_prefix = "tensorflow-f97b7ba2bf92a8e3c06a2b713eae19ca1c932737",
sha256 = "02e18c9a8521b791e37f6467961f2749bd3d8b609362672624aacd90e315eb3d",
strip_prefix = "tensorflow-1aaea1ffb9254a7333dd4ac13d6ccb3defad15ea",
urls = [
"https://github.com/tensorflow/tensorflow/archive/f97b7ba2bf92a8e3c06a2b713eae19ca1c932737.tar.gz",
"https://github.com/tensorflow/tensorflow/archive/1aaea1ffb9254a7333dd4ac13d6ccb3defad15ea.tar.gz",
],
)

Expand Down
2 changes: 1 addition & 1 deletion third_party/tensorflow
Submodule tensorflow updated 94 files
+0 −8 .bazelrc
+1 −1 tensorflow/compiler/mlir/lite/BUILD
+22 −4 tensorflow/compiler/mlir/tensorflow/BUILD
+3 −0 tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/BUILD
+0 −2 tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc
+7 −4 tensorflow/compiler/tf2xla/BUILD
+1 −0 tensorflow/core/distributed_runtime/eager/remote_tensor_handle_data.cc
+2 −0 tensorflow/core/profiler/convert/BUILD
+16 −7 tensorflow/core/profiler/convert/xplane_to_profile_response.cc
+5 −4 tensorflow/core/profiler/convert/xplane_to_profile_response.h
+4 −4 tensorflow/core/profiler/convert/xplane_to_profile_response_test.cc
+1 −0 tensorflow/core/profiler/rpc/client/BUILD
+6 −20 tensorflow/core/profiler/rpc/client/capture_profile.cc
+98 −19 tensorflow/core/profiler/rpc/client/save_profile.cc
+9 −0 tensorflow/core/profiler/rpc/client/save_profile.h
+2 −1 tensorflow/core/profiler/rpc/profiler_service_impl.cc
+2 −2 tensorflow/core/public/version.h
+1 −0 tensorflow/python/autograph/core/config.py
+16 −5 tensorflow/python/autograph/core/unsupported_features_checker.py
+145 −0 tensorflow/python/distribute/distribute_lib.py
+8 −0 tensorflow/python/distribute/mirrored_strategy.py
+6 −0 tensorflow/python/distribute/one_device_strategy.py
+6 −0 tensorflow/python/distribute/parameter_server_strategy.py
+7 −0 tensorflow/python/distribute/strategy_combinations.py
+8 −0 tensorflow/python/distribute/tpu_strategy.py
+16 −5 tensorflow/python/distribute/values.py
+202 −1 tensorflow/python/distribute/values_test.py
+1 −0 tensorflow/python/keras/api/BUILD
+72 −17 tensorflow/python/keras/callbacks.py
+118 −1 tensorflow/python/keras/callbacks_test.py
+2 −0 tensorflow/python/keras/distribute/multi_worker_callback_tf2_test.py
+3 −3 tensorflow/python/keras/engine/base_layer.py
+0 −6 tensorflow/python/keras/engine/base_layer_utils.py
+3 −3 tensorflow/python/keras/engine/base_layer_v1.py
+154 −117 tensorflow/python/keras/engine/compile_utils.py
+63 −0 tensorflow/python/keras/engine/compile_utils_test.py
+25 −12 tensorflow/python/keras/engine/data_adapter.py
+5 −1 tensorflow/python/keras/engine/data_adapter_test.py
+8 −5 tensorflow/python/keras/engine/network.py
+46 −8 tensorflow/python/keras/engine/network_test.py
+1 −2 tensorflow/python/keras/engine/sequential.py
+46 −27 tensorflow/python/keras/engine/training.py
+4 −4 tensorflow/python/keras/engine/training_test.py
+13 −1 tensorflow/python/keras/layers/__init__.py
+57 −30 tensorflow/python/keras/layers/normalization.py
+99 −42 tensorflow/python/keras/layers/preprocessing/image_preprocessing.py
+14 −18 tensorflow/python/keras/layers/preprocessing/image_preprocessing_test.py
+1 −2 tensorflow/python/keras/layers/recurrent.py
+5 −2 tensorflow/python/keras/saving/saved_model/saved_model_test.py
+11 −0 tensorflow/python/keras/utils/generic_utils.py
+0 −1 tensorflow/python/profiler/BUILD
+0 −1 tensorflow/python/profiler/internal/BUILD
+16 −15 tensorflow/python/profiler/internal/profiler_wrapper.cc
+10 −7 tensorflow/python/profiler/profiler_v2.py
+13 −15 tensorflow/python/profiler/profiler_v2_test.py
+1 −1 tensorflow/tensorflow.bzl
+1 −0 tensorflow/tf_version_script.lds
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-center-crop.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-random-contrast.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-random-crop.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-random-flip.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-random-height.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-random-rotation.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-random-translation.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-random-width.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-random-zoom.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-rescaling.pbtxt
+218 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.-resizing.pbtxt
+44 −0 tensorflow/tools/api/golden/v1/tensorflow.keras.layers.experimental.preprocessing.pbtxt
+4 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.-mirrored-strategy.pbtxt
+4 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.-one-device-strategy.pbtxt
+4 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.-strategy.pbtxt
+4 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.experimental.-central-storage-strategy.pbtxt
+4 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.experimental.-multi-worker-mirrored-strategy.pbtxt
+4 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.experimental.-parameter-server-strategy.pbtxt
+4 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.experimental.-t-p-u-strategy.pbtxt
+17 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.experimental.-value-context.pbtxt
+4 −0 tensorflow/tools/api/golden/v2/tensorflow.distribute.experimental.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-center-crop.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-random-contrast.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-random-crop.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-random-flip.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-random-height.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-random-rotation.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-random-translation.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-random-width.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-random-zoom.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-rescaling.pbtxt
+218 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.-resizing.pbtxt
+44 −0 tensorflow/tools/api/golden/v2/tensorflow.keras.layers.experimental.preprocessing.pbtxt
+9 −2 tensorflow/tools/pip_package/build_pip_package.sh
+1 −1 tensorflow/tools/pip_package/setup.py
+4 −4 tensorflow/workspace.bzl
+22 −43 third_party/com_google_absl_fix_mac_and_nvcc_build.patch

0 comments on commit dd6e644

Please sign in to comment.