From 3547a0ccd29b2cc9fd00a49a275567c9e32d9ebc Mon Sep 17 00:00:00 2001 From: Abdul Baseer Khan <54206941+AbdulBaseerMohammedKhan@users.noreply.github.com> Date: Mon, 1 Jun 2020 00:30:50 +0530 Subject: [PATCH 1/3] Update CODE_OF_CONDUCT.md --- CODE_OF_CONDUCT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 72304bee694..2b55411d110 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,6 +1,6 @@ # TensorFlow Code of Conduct -In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards From d49a98a58b36789798574d437eca8e848370f0ea Mon Sep 17 00:00:00 2001 From: Abdul Baseer Khan <54206941+AbdulBaseerMohammedKhan@users.noreply.github.com> Date: Thu, 4 Jun 2020 06:16:50 +0530 Subject: [PATCH 2/3] Update ISSUE_TEMPLATE.md --- ISSUE_TEMPLATE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index 04cd8cb65ef..4d42ad4ce18 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -4,7 +4,7 @@ https://stackoverflow.com/questions/tagged/tensorflow If you open a GitHub issue, here is our policy: -1. It must be a bug, a feature request, or a significant problem with documentation (for small docs fixes please send a PR instead). +1. It must be a bug, a feature request, or a significant problem with the documentation (for small docs fixes please send a PR instead). 2. The form below must be filled out. 3. It shouldn't be a TensorBoard issue. Those go [here](https://github.com/tensorflow/tensorboard/issues). @@ -15,7 +15,7 @@ If you open a GitHub issue, here is our policy: ### 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**: +- **Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on a mobile device**: - **TensorFlow installed from (source or binary)**: - **TensorFlow version (use command below)**: - **Python version**: From 818c0112bf4282c5641883ac46e1307b3bf2dba5 Mon Sep 17 00:00:00 2001 From: Abdul Baseer Khan <54206941+AbdulBaseerMohammedKhan@users.noreply.github.com> Date: Thu, 4 Jun 2020 06:34:41 +0530 Subject: [PATCH 3/3] Update RELEASE.md --- RELEASE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 6f3aa94c203..7fc620bc18a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -164,7 +164,7 @@ Coinciding with this change, new releases of [TensorFlow's Docker images](https: * `saved_model_cli aot_compile_cpu` allows you to compile saved models to XLA header+object files and include them in your C++ programs. * Enable `Igamma`, `Igammac` for XLA. * Deterministic Op Functionality: - * XLA reduction emitter is deterministic when the environment variable `TF_DETERMINISTIC_OPS` is set to "true" or "1". This extends deterministic `tf.nn.bias_add` back-prop functionality (and therefore also deterministic back-prop of bias-addition in Keras layers) to include when XLA JIT complilation is enabled. + * XLA reduction emitter is deterministic when the environment variable `TF_DETERMINISTIC_OPS` is set to "true" or "1". This extends deterministic `tf.nn.bias_add` back-prop functionality (and therefore also deterministic back-prop of bias-addition in Keras layers) to include when XLA JIT compilation is enabled. * Fix problem, when running on a CUDA GPU and when either environment variable `TF_DETERMINSTIC_OPS` or environment variable `TF_CUDNN_DETERMINISTIC` is set to "true" or "1", in which some layer configurations led to an exception with the message "No algorithm worked!" * Tracing and Debugging: * Add source, destination name to `_send` traceme to allow easier debugging.