Skip to content

Commit

Permalink
Merge branch 'master' into pjpratik-patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
pjpratik committed Mar 31, 2023
2 parents b7c3d6f + 268e957 commit 7b8a2a0
Show file tree
Hide file tree
Showing 2,391 changed files with 75,900 additions and 40,191 deletions.
15 changes: 5 additions & 10 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,10 @@ build:android_x86_64 --config=android
build:android_x86_64 --cpu=x86_64
build:android_x86_64 --fat_apk_cpu=x86_64

# Build everything statically for Android since all static libs are later
# bundled together into a single .so for deployment.
build:android --dynamic_mode=off

# Sets the default Apple platform to macOS.
build:macos --apple_platform_type=macos

Expand Down Expand Up @@ -398,11 +402,6 @@ build:windows --verbose_failures
# See: https://github.com/bazelbuild/bazel/issues/5163
build:windows --features=compiler_param_file

# On windows, we never cross compile
build:windows --distinct_host_configuration=false
# On linux, don't cross compile by default
build:linux --distinct_host_configuration=false

# Do not risk cache corruption. See:
# https://github.com/bazelbuild/bazel/issues/3360
build:linux --experimental_guard_against_concurrent_changes
Expand Down Expand Up @@ -443,7 +442,6 @@ build:rbe --bes_backend=buildeventservice.googleapis.com
build:rbe --bes_results_url="https://source.cloud.google.com/results/invocations"
build:rbe --bes_timeout=600s
build:rbe --define=EXECUTOR=remote
build:rbe --distinct_host_configuration=false
build:rbe --flaky_test_attempts=3
build:rbe --jobs=800
build:rbe --remote_executor=grpcs://remotebuildexecution.googleapis.com
Expand Down Expand Up @@ -610,10 +608,8 @@ build:elinux --crosstool_top=@local_config_embedded_arm//:toolchain
build:elinux --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
build:elinux_aarch64 --config=elinux
build:elinux_aarch64 --cpu=aarch64
build:elinux_aarch64 --distinct_host_configuration=true
build:elinux_armhf --config=elinux
build:elinux_armhf --cpu=armhf
build:elinux_armhf --distinct_host_configuration=true
build:elinux_armhf --copt -mfp16-format=ieee
# END TF REMOTE BUILD EXECUTION OPTIONS

Expand All @@ -627,7 +623,6 @@ try-import %workspace%/.bazelrc.user

# Here are bazelrc configs for release builds
build:release_base --config=v2
build:release_base --distinct_host_configuration=false
test:release_base --flaky_test_attempts=3
test:release_base --test_size_filters=small,medium

Expand Down Expand Up @@ -705,4 +700,4 @@ build:tf_fuzztest --action_env=CC=clang
build:tf_fuzztest --action_env=CXX=clang++
build:tf_fuzztest --spawn_strategy=sandboxed
build:tf_fuzztest --config=monolithic
build:tf_fuzztest --@libjpeg_turbo//:noasm=yes
build:tf_fuzztest --@libjpeg_turbo//:noasm=yes
2 changes: 1 addition & 1 deletion .github/bot_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ assignees:
- synandi
- tiruk007
- tilakrayal
- pjpratik
- sushreebarsa
# A list of assignees for compiler folder
compiler_assignees:
- joker-eph
Expand Down
20 changes: 18 additions & 2 deletions .github/workflows/stale-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,16 @@ jobs:
pull-requests: write
steps:
- name: Awaiting response issues
uses: actions/stale@v5
uses: actions/stale@v7
with:
#Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
exempt-issue-labels: 'override-stale'
#Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
exempt-pr-labels: "override-stale"
#Limit the No. of API calls in one run default value is 30.
operations-per-run: 1000
#Prevent to remove stale label when PRs or issues are updated.
remove-stale-when-updated: false
days-before-issue-stale: 7
days-before-issue-close: 7
stale-issue-label: "stale"
Expand All @@ -48,8 +56,16 @@ jobs:
close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale. Please reopen if you'd like to work on this further."
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Contribution issues
uses: actions/stale@v5
uses: actions/stale@v7
with:
#Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
exempt-issue-labels: 'override-stale'
#Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
exempt-pr-labels: "override-stale"
#Limit the No. of API calls in one run default value is 30.
operations-per-run: 1000
#Prevent to remove stale label when PRs or issues are updated.
remove-stale-when-updated: false
days-before-issue-stale: 180
days-before-issue-close: 365
stale-issue-label: "stale"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ uphold this code.**

**We use [GitHub issues](https://github.com/tensorflow/tensorflow/issues) for
tracking requests and bugs, please see
[TensorFlow Discuss](https://groups.google.com/a/tensorflow.org/forum/#!forum/discuss)
for general questions and discussion, and please direct specific questions to
[TensorFlow Forum](https://discuss.tensorflow.org/) for general questions and
discussion, and please direct specific questions to
[Stack Overflow](https://stackoverflow.com/questions/tagged/tensorflow).**

The TensorFlow project strives to abide by generally accepted best practices in
Expand Down
Loading

0 comments on commit 7b8a2a0

Please sign in to comment.