forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from tensorflow/master
Update patch-1
- Loading branch information
Showing
16,937 changed files
with
2,952,162 additions
and
496,759 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# Android configs. Bazel needs to have --cpu and --fat_apk_cpu both set to the | ||
# target CPU to build transient dependencies correctly. See | ||
# https://docs.bazel.build/versions/master/user-manual.html#flag--fat_apk_cpu | ||
build:android --crosstool_top=//external:android/crosstool | ||
build:android --host_crosstool_top=@bazel_tools//tools/cpp:toolchain | ||
build:android_arm --config=android | ||
build:android_arm --cpu=armeabi-v7a | ||
build:android_arm --fat_apk_cpu=armeabi-v7a | ||
build:android_arm64 --config=android | ||
build:android_arm64 --cpu=arm64-v8a | ||
build:android_arm64 --fat_apk_cpu=arm64-v8a | ||
|
||
# Config to use a mostly-static build and disable modular op registration | ||
# support (this will revert to loading TensorFlow with RTLD_GLOBAL in Python). | ||
# By default, TensorFlow will build with a dependence on | ||
# //tensorflow:libtensorflow_framework.so. | ||
build:monolithic --define framework_shared_object=false | ||
|
||
# For projects which use TensorFlow as part of a Bazel build process, putting | ||
# nothing in a bazelrc will default to a monolithic build. The following line | ||
# opts in to modular op registration support by default. | ||
build --define framework_shared_object=true | ||
|
||
# Please note that MKL on MacOS or windows is still not supported. | ||
# If you would like to use a local MKL instead of downloading, please set the | ||
# environment variable "TF_MKL_ROOT" every time before build. | ||
build:mkl --define=build_with_mkl=true --define=enable_mkl=true | ||
build:mkl --define=tensorflow_mkldnn_contraction_kernel=0 | ||
build:mkl -c opt | ||
|
||
# This config option is used to enable MKL-DNN open source library only, | ||
# without depending on MKL binary version. | ||
build:mkl_open_source_only --define=build_with_mkl_dnn_only=true | ||
build:mkl_open_source_only --define=build_with_mkl=true --define=enable_mkl=true | ||
build:mkl_open_source_only --define=tensorflow_mkldnn_contraction_kernel=0 | ||
|
||
build:download_clang --crosstool_top=@local_config_download_clang//:toolchain | ||
build:download_clang --define=using_clang=true | ||
# Instruct clang to use LLD for linking. | ||
# This only works with GPU builds currently, since Bazel sets -B/usr/bin in | ||
# auto-generated CPU crosstool, forcing /usr/bin/ld.lld to be preferred over | ||
# the downloaded one. | ||
build:download_clang_use_lld --linkopt='-fuse-ld=lld' | ||
|
||
build:cuda --crosstool_top=@local_config_cuda//crosstool:toolchain | ||
build:cuda --define=using_cuda=true --define=using_cuda_nvcc=true | ||
|
||
build:rocm --crosstool_top=@local_config_rocm//crosstool:toolchain | ||
build:rocm --define=using_rocm=true --define=using_rocm_hipcc=true | ||
|
||
build:cuda_clang --crosstool_top=@local_config_cuda//crosstool:toolchain | ||
build:cuda_clang --define=using_cuda=true --define=using_cuda_clang=true --define=using_clang=true | ||
|
||
build:sycl --crosstool_top=@local_config_sycl//crosstool:toolchain | ||
build:sycl --define=using_sycl=true --define=using_trisycl=false | ||
|
||
build:sycl_nodouble --crosstool_top=@local_config_sycl//crosstool:toolchain | ||
build:sycl_nodouble --define=using_sycl=true --cxxopt -DTENSORFLOW_SYCL_NO_DOUBLE | ||
|
||
build:sycl_asan --crosstool_top=@local_config_sycl//crosstool:toolchain | ||
build:sycl_asan --define=using_sycl=true --define=using_trisycl=false --copt -fno-omit-frame-pointer --copt -fsanitize-coverage=3 --copt -DGPR_NO_DIRECT_SYSCALLS --linkopt -fPIC --linkopt -fsanitize=address | ||
|
||
build:sycl_trisycl --crosstool_top=@local_config_sycl//crosstool:toolchain | ||
build:sycl_trisycl --define=using_sycl=true --define=using_trisycl=true | ||
|
||
# Options extracted from configure script | ||
build:gdr --define=with_gdr_support=true | ||
build:ngraph --define=with_ngraph_support=true | ||
build:verbs --define=with_verbs_support=true | ||
|
||
# Options to disable default on features | ||
build:noaws --define=no_aws_support=true | ||
build:nogcp --define=no_gcp_support=true | ||
build:nohdfs --define=no_hdfs_support=true | ||
build:nokafka --define=no_kafka_support=true | ||
build:noignite --define=no_ignite_support=true | ||
build:nonccl --define=no_nccl_support=true | ||
|
||
build --define=use_fast_cpp_protos=true | ||
build --define=allow_oversize_protos=true | ||
|
||
build --spawn_strategy=standalone | ||
build --strategy=Genrule=standalone | ||
build -c opt | ||
|
||
# Other build flags. | ||
build --define=grpc_no_ares=true | ||
|
||
# Modular TF build options | ||
build:dynamic_kernels --define=dynamic_loaded_kernels=true | ||
build:dynamic_kernels --copt=-DAUTOLOAD_DYNAMIC_KERNELS | ||
|
||
# Default paths for TF_SYSTEM_LIBS | ||
build --define=PREFIX=/usr | ||
build --define=LIBDIR=$(PREFIX)/lib | ||
build --define=INCLUDEDIR=$(PREFIX)/include | ||
|
||
# Default options should come above this line | ||
|
||
# Options from ./configure | ||
try-import %workspace%/.tf_configure.bazelrc | ||
|
||
# Put user-specific options in .bazelrc.user | ||
try-import %workspace%/.bazelrc.user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: Bug/Performance Issue | ||
about: Use this template for reporting a bug or a performance issue. | ||
|
||
--- | ||
|
||
<em>Please make sure that this is a bug. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template</em> | ||
|
||
**System information** | ||
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): | ||
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): | ||
- Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: | ||
- TensorFlow installed from (source or binary): | ||
- TensorFlow version (use command below): | ||
- Python version: | ||
- Bazel version (if compiling from source): | ||
- GCC/Compiler version (if compiling from source): | ||
- CUDA/cuDNN version: | ||
- GPU model and memory: | ||
|
||
|
||
You can collect some of this information using our environment capture [script](https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh) | ||
You can also obtain the TensorFlow version with | ||
python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)" | ||
|
||
**Describe the current behavior** | ||
|
||
**Describe the expected behavior** | ||
|
||
**Code to reproduce the issue** | ||
Provide a reproducible test case that is the bare minimum necessary to generate the problem. | ||
|
||
**Other info / logs** | ||
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Build/Installation Issue | ||
about: Use this template for build/installation issues | ||
|
||
--- | ||
|
||
<em>Please make sure that this is a build/installation issue. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em> | ||
|
||
**System information** | ||
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): | ||
- Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: | ||
- TensorFlow installed from (source or binary): | ||
- TensorFlow version: | ||
- Python version: | ||
- Installed using virtualenv? pip? conda?: | ||
- Bazel version (if compiling from source): | ||
- GCC/Compiler version (if compiling from source): | ||
- CUDA/cuDNN version: | ||
- GPU model and memory: | ||
|
||
|
||
|
||
**Describe the problem** | ||
|
||
**Provide the exact sequence of commands / steps that you executed before running into the problem** | ||
|
||
|
||
**Any other info / logs** | ||
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Documentation Issue | ||
about: Use this template for documentation related issues | ||
|
||
--- | ||
|
||
<em>Please make sure that this is a documentation issue. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:doc_template</em> | ||
|
||
|
||
**System information** | ||
- TensorFlow version: | ||
- Doc Link: | ||
|
||
|
||
**Describe the documentation issue** | ||
|
||
**We welcome contributions by users. Will you be able to update submit a PR (use the [doc style guide](https://www.tensorflow.org/community/documentation)) to fix the doc Issue?** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: Feature Request | ||
about: Use this template for raising a feature request | ||
|
||
--- | ||
|
||
<em>Please make sure that this is a feature request. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:feature_template</em> | ||
|
||
|
||
**System information** | ||
- TensorFlow version (you are using): | ||
- Are you willing to contribute it (Yes/No): | ||
|
||
|
||
|
||
**Describe the feature and the current behavior/state.** | ||
|
||
**Will this change the current api? How?** | ||
|
||
**Who will benefit with this feature?** | ||
|
||
**Any Other info.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: TensorFlow Lite Op Request | ||
about: Use this template for reporting ops you are using or missing. | ||
|
||
--- | ||
|
||
|
||
**System information** | ||
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): | ||
- TensorFlow installed from (source or binary): | ||
- TensorFlow version (or github SHA if from source): | ||
|
||
|
||
**Provide the text output from tflite_convert** | ||
|
||
``` | ||
# Copy and paste here | ||
``` | ||
|
||
Also, please include a link to a GraphDef or the model if possible. | ||
|
||
**Any other info / logs** | ||
|
||
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: Other Issues | ||
about: Use this template for any other non-support related issues | ||
|
||
--- | ||
|
||
This template is for miscellaneous issues not covered by the other issue categories. | ||
|
||
For questions on how to work with TensorFlow, or support for problems that are not verified bugs in TensorFlow, please go to [StackOverflow](https://stackoverflow.com/questions/tagged/tensorflow). | ||
|
||
If you are reporting a vulnerability, please use the [dedicated reporting process](https://github.com/tensorflow/tensorflow/blob/master/SECURITY.md). | ||
|
||
For high-level discussions about TensorFlow, please post to discuss@tensorflow.org, for questions about the development or internal workings of TensorFlow, or if you would like to know how to contribute to TensorFlow, please post to developers@tensorflow.org. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,41 @@ | ||
.DS_Store | ||
.ipynb_checkpoints | ||
node_modules | ||
/bazel-bin | ||
/bazel-ci_build-cache | ||
/bazel-genfiles | ||
/bazel-out | ||
/bazel-tensorflow | ||
/bazel-testlogs | ||
/bazel-tf | ||
/tensorflow/contrib/cmake/build | ||
/tensorflow/core/util/version_info.cc | ||
/tensorflow/tools/git/gen | ||
/third_party/py/numpy/numpy_include | ||
/tools/bazel.rc | ||
/.bazelrc.user | ||
/.tf_configure.bazelrc | ||
/bazel-* | ||
/bazel_pip | ||
/tools/python_bin_path.sh | ||
/util/python/python_include | ||
/util/python/python_lib | ||
/tensorflow/tools/git/gen | ||
/pip_test | ||
/_python_build | ||
*.pyc | ||
__pycache__ | ||
*.swp | ||
.vscode/ | ||
cmake_build/ | ||
tensorflow/contrib/cmake/_build/ | ||
.idea/** | ||
/build/ | ||
[Bb]uild/ | ||
/tensorflow/core/util/version_info.cc | ||
/tensorflow/python/framework/fast_tensor_util.cpp | ||
Pods | ||
Podfile.lock | ||
*.pbxproj | ||
*.xcworkspacedata | ||
/tensorflow/lite/tools/make/downloads/** | ||
/tensorflow/lite/gen/** | ||
/tensorflow/lite/examples/ios/simple/data/*.txt | ||
/tensorflow/lite/examples/ios/simple/data/*.tflite | ||
xcuserdata/** | ||
/api_init_files_list.txt | ||
/estimator_api_init_files_list.txt | ||
*.whl | ||
|
||
# Android | ||
.gradle | ||
.idea | ||
*.iml | ||
local.properties | ||
gradleBuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
|
||
exports_files( | ||
[ | ||
"LICENSE", | ||
"ACKNOWLEDGEMENTS", | ||
"configure", | ||
"configure.py", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Where component owners are known, add them here. | ||
|
||
/tenosrflow/core/debug @caisq | ||
/tensorflow/core/nccl/ @azaks2 @chsigg | ||
/tensorflow/core/platform/windows/ @mrry | ||
/tensorflow/core/platform/s3 @yongtang | ||
/tensorflow/go @asimshankar | ||
/tensorflow/java/ @asimshankar | ||
/tensorflow/python/debug @caisq | ||
/tensorflow/python/tools/api/generator/ @annarev | ||
/tensorflow/tensorboard/ @jart | ||
/tensorflow/tools/docs/ @markdaoust | ||
|
||
# contrib | ||
|
||
# NEED OWNER: /tensorflow/contrib/all_reduce | ||
/tensorflow/contrib/batching/ @alextp @chrisolston | ||
/tensorflow/contrib/bayesflow/ @ebrevdo @rsepassi @jvdillon | ||
/tensorflow/contrib/boosted_trees/ @sshrdp @yk5 @nataliaponomareva | ||
/tensorflow/contrib/checkpoint/ @allenlavoie | ||
/tensorflow/contrib/contrib/cluster_resolver/ @frankchn | ||
/tensorflow/contrib/cmake/ @mrry | ||
/tensorflow/contrib/copy_graph/ @tucker @poxvoculi | ||
/tensorflow/contrib/crf/ @kentonl | ||
/tensorflow/contrib/data/ @mrry | ||
/tensorflow/tensorflow/contrib/distribute @joshl @priyag @sourabhbajaj @frankchn | ||
/tensorflow/contrib/distributions/ @jvdillon @langmore @rsepassi | ||
/tensorflow/contrib/eager @alextp @asimshankar | ||
/tensorflow/contrib/factorization/ @agarwal-ashish @xavigonzalvo | ||
/tensorflow/contrib/ffmpeg/ @fredbertsch | ||
/tensorflow/contrib/framework/ @ebrevdo | ||
/tensorflow/contrib/gan/ @joel-shor | ||
/tensorflow/contrib/graph_editor/ @purpledog | ||
# NEED OWNER: /tensorflow/contrib/grid_rnn/ | ||
/tensorflow/contrib/hadoop @yongtang | ||
/tensorflow/contrib/hvx/ @satok16 | ||
/tensorflow/contrib/integrate/ @shoyer | ||
/tensorflow/contrib/kafka @yongtang | ||
/tensorflow/contrib/kernel_methods/ @petrosmol | ||
/tensorflow/contrib/kinesis @yongtang | ||
/tensorflow/contrib/ios_examples/ @petewarden | ||
/tensorflow/contrib/labeled_tensor/ @shoyer | ||
/tensorflow/contrib/layers/ @fchollet @martinwicke | ||
/tensorflow/contrib/learn/ @martinwicke @ispirmustafa @alextp | ||
/tensorflow/contrib/linear_optimizer/ @petrosmol @andreasst @katsiapis | ||
/tensorflow/contrib/lookup/ @ysuematsu @andreasst | ||
/tensorflow/contrib/losses/ @alextp @ispirmustafa | ||
/tensorflow/contrib/makefile/ @petewarden @satok16 @wolffg | ||
/tensorflow/contrib/metrics/ @alextp @honkentuber @ispirmustafa | ||
/tensorflow/contrib/opt/ @strategist333 @alextp | ||
/tensorflow/contrib/pi_examples/ @maciekcc | ||
/tensorflow/contrib/quantization/ @petewarden | ||
/tensorflow/contrib/rnn/ @ebrevdo @scottzhu | ||
/tensorflow/contrib/saved_model/ @nfiedel @sukritiramesh @allenlavoie | ||
/tensorflow/contrib/seq2seq/ @ebrevdo @lmthang | ||
/tensorflow/contrib/session_bundle/ @nfiedel @sukritiramesh | ||
/tensorflow/contrib/slim/ @sguada @thenbasilmanran | ||
/tensorflow/contrib/stateless/ @girving @alextp | ||
/tensorflow/contrib/tensor_forest/ @gilberthendry @thomascolthurst @yupbank | ||
/tensorflow/contrib/tensorrt/ @aaroey @smit-hinsu @azaks2 | ||
# NEED OWNER: /tensorflow/contrib/testing/ | ||
/tensorflow/contrib/timeseries/ @allenlavoie | ||
/tensorflow/contrib/tpu/ @frankchn @saeta @jhseu @sourabhbajaj | ||
/tensorflow/contrib/training/ @joel-shor @ebrevdo | ||
/tensorflow/contrib/util/ @sherrym | ||
|
||
/third_party/systemlibs/ @perfinion |
Oops, something went wrong.