An Open Source Machine Learning Framework for Everyone
Go to file
Shaogang Wang 733d71db88
Some checks are pending
ARM CI / build (3.10) (push) Waiting to run
Creates a GitHub Issue when a PR Rolled back via Commit to Master / create-issue-on-pr-rollback (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
PR #19528: [XLA:GPU] use separte command buffer cmd flag for conditional and loop
Imported from GitHub PR https://github.com/openxla/xla/pull/19528

Observed in saxml workload that sharing the same command buffer cmd type (CONDITIONALS) for WHILE and CONDITIONAL command over kill the lowering opportunities.

Many cases could allow CONDITIONAL instruction to lower into command buffer, while WHILE is not possible.

This PR uses separate command buffer cmd type flag for CONDITIONAL and WHILE instructions when user specifies the type to lowering.
Copybara import of the project:

--
4d62fb512995e2fc6e9077a1b3251a6754c866ca by Shawn Wang <shawnw@nvidia.com>:

use separte command buffer cmd flag for conditional and loop

Merging this change closes #19528

PiperOrigin-RevId: 698729891
2024-11-21 04:47:24 -08:00
.github Bump the github-actions group with 6 updates 2024-11-01 08:40:10 +00:00
ci Update the default Python version to 3.11 2024-11-19 14:27:46 -08:00
tensorflow Add Dispatch API for MediaTek 2024-11-21 00:20:40 -08:00
third_party PR #19528: [XLA:GPU] use separte command buffer cmd flag for conditional and loop 2024-11-21 04:47:24 -08:00
tools Merge pull request #25673 from Ryan-Qiyu-Jiang:env_capture_script_more_system_info_update 2019-06-20 14:07:21 -07:00
.bazelignore Migrate TensorFlow on newest Hermetic Python set of rules 2024-06-28 17:19:18 -07:00
.bazelrc
.bazelversion Changed Version of Bazel to version 6.5.0 2024-01-23 13:13:23 -08:00
.clang-format
.gitignore Add TF wheel API test. 2024-09-20 10:43:17 -07:00
.pylintrc
.zenodo.json Add .zenodo.json for clean automated DOI numbers. 2021-05-18 12:19:25 -07:00
arm_compiler.BUILD
AUTHORS
BUILD
CITATION.cff Add CITATION.cff 2021-09-06 10:26:23 -05:00
CODE_OF_CONDUCT.md
CODEOWNERS
configure
configure.cmd
configure.py
CONTRIBUTING.md Merge pull request #78037 from ankur0904:fix-documentation 2024-10-22 23:20:12 -07:00
ISSUES.md Internal change 2021-02-11 14:37:27 -08:00
LICENSE
models.BUILD
README.md Apply reviewer suggested change 2023-10-05 08:00:10 -07:00
RELEASE.md Add deletion warning to tf.lite.interpreter with a redirection notice to ai-edge-litert.interpreter 2024-11-15 13:17:25 -08:00
requirements_lock_3_9.txt Add TF wheel compliance verification in Bazel build rule. 2024-11-12 14:33:28 -08:00
requirements_lock_3_10.txt Add TF wheel compliance verification in Bazel build rule. 2024-11-12 14:33:28 -08:00
requirements_lock_3_11.txt Add TF wheel compliance verification in Bazel build rule. 2024-11-12 14:33:28 -08:00
requirements_lock_3_12.txt Add TF wheel compliance verification in Bazel build rule. 2024-11-12 14:33:28 -08:00
SECURITY.md removed extra period 2024-10-16 21:40:43 +05:30
WORKSPACE Add tf_nightly prefix to the local wheel inclusion list. 2024-10-11 09:49:28 -07:00

Python PyPI DOI CII Best Practices OpenSSF Scorecard Fuzzing Status Fuzzing Status OSSRank Contributor Covenant TF Official Continuous TF Official Nightly

Documentation
Documentation

TensorFlow is an end-to-end open source platform for machine learning. It has a comprehensive, flexible ecosystem of tools, libraries, and community resources that lets researchers push the state-of-the-art in ML and developers easily build and deploy ML-powered applications.

TensorFlow was originally developed by researchers and engineers working within the Machine Intelligence team at Google Brain to conduct research in machine learning and neural networks. However, the framework is versatile enough to be used in other areas as well.

TensorFlow provides stable Python and C++ APIs, as well as a non-guaranteed backward compatible API for other languages.

Keep up-to-date with release announcements and security updates by subscribing to announce@tensorflow.org. See all the mailing lists.

Install

See the TensorFlow install guide for the pip package, to enable GPU support, use a Docker container, and build from source.

To install the current release, which includes support for CUDA-enabled GPU cards (Ubuntu and Windows):

$ pip install tensorflow

Other devices (DirectX and MacOS-metal) are supported using Device plugins.

A smaller CPU-only package is also available:

$ pip install tensorflow-cpu

To update TensorFlow to the latest version, add --upgrade flag to the above commands.

Nightly binaries are available for testing using the tf-nightly and tf-nightly-cpu packages on PyPi.

Try your first TensorFlow program

$ python
>>> import tensorflow as tf
>>> tf.add(1, 2).numpy()
3
>>> hello = tf.constant('Hello, TensorFlow!')
>>> hello.numpy()
b'Hello, TensorFlow!'

For more examples, see the TensorFlow tutorials.

Contribution guidelines

If you want to contribute to TensorFlow, be sure to review the contribution guidelines. This project adheres to TensorFlow's code of conduct. By participating, you are expected to uphold this code.

We use GitHub issues for tracking requests and bugs, please see TensorFlow Forum for general questions and discussion, and please direct specific questions to Stack Overflow.

The TensorFlow project strives to abide by generally accepted best practices in open-source software development.

Patching guidelines

Follow these steps to patch a specific version of TensorFlow, for example, to apply fixes to bugs or security vulnerabilities:

  • Clone the TensorFlow repo and switch to the corresponding branch for your desired TensorFlow version, for example, branch r2.8 for version 2.8.
  • Apply (that is, cherry-pick) the desired changes and resolve any code conflicts.
  • Run TensorFlow tests and ensure they pass.
  • Build the TensorFlow pip package from source.

Continuous build status

You can find more community-supported platforms and configurations in the TensorFlow SIG Build community builds table.

Official Builds

Build Type Status Artifacts
Linux CPU Status PyPI
Linux GPU Status PyPI
Linux XLA Status TBA
macOS Status PyPI
Windows CPU Status PyPI
Windows GPU Status PyPI
Android Status Download
Raspberry Pi 0 and 1 Status Py3
Raspberry Pi 2 and 3 Status Py3
Libtensorflow MacOS CPU Status Temporarily Unavailable Nightly Binary Official GCS
Libtensorflow Linux CPU Status Temporarily Unavailable Nightly Binary Official GCS
Libtensorflow Linux GPU Status Temporarily Unavailable Nightly Binary Official GCS
Libtensorflow Windows CPU Status Temporarily Unavailable Nightly Binary Official GCS
Libtensorflow Windows GPU Status Temporarily Unavailable Nightly Binary Official GCS

Resources

Learn more about the TensorFlow community and how to contribute.

Courses

License

Apache License 2.0