.. image:: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
.. image:: https://readthedocs.org/projects/ray/badge/?version=master
:target: http://docs.ray.io/en/master/?badge=master
.. image:: https://img.shields.io/badge/Ray-Join%20Slack-blue
:target: https://forms.gle/9TSdDYUgxYs8SA9e8
.. image:: https://img.shields.io/badge/Discuss-Ask%20Questions-blue
:target: https://discuss.ray.io/
.. image:: https://img.shields.io/twitter/follow/raydistributed.svg?style=social&logo=twitter
:target: https://twitter.com/raydistributed
.. image:: https://img.shields.io/badge/Get_started_for_free-3C8AE9?logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8%2F9hAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAEKADAAQAAAABAAAAEAAAAAA0VXHyAAABKElEQVQ4Ea2TvWoCQRRGnWCVWChIIlikC9hpJdikSbGgaONbpAoY8gKBdAGfwkfwKQypLQ1sEGyMYhN1Pd%2B6A8PqwBZeOHt%2FvsvMnd3ZXBRFPQjBZ9K6OY8ZxF%2B0IYw9PW3qz8aY6lk92bZ%2BVqSI3oC9T7%2FyCVnrF1ngj93us%2B540sf5BrCDfw9b6jJ5lx%2FyjtGKBBXc3cnqx0INN4ImbI%2Bl%2BPnI8zWfFEr4chLLrWHCp9OO9j19Kbc91HX0zzzBO8EbLK2Iv4ZvNO3is3h6jb%2BCwO0iL8AaWqB7ILPTxq3kDypqvBuYuwswqo6wgYJbT8XxBPZ8KS1TepkFdC79TAHHce%2F7LbVioi3wEfTpmeKtPRGEeoldSP%2FOeoEftpP4BRbgXrYZefsAI%2BP9JU7ImyEAAAAASUVORK5CYII%3D
:target: https://console.anyscale.com/register/ha?utm_source=github&utm_medium=ray_readme&utm_campaign=get_started_badge
Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a set of AI libraries for simplifying ML compute:
.. image:: https://github.com/ray-project/ray/raw/master/doc/source/images/what-is-ray-padded.svg
..
https://docs.google.com/drawings/d/1Pl8aCYOsZCo61cmp57c7Sja6HhIygGCvSZLi_AuBuqo/edit
Learn more about `Ray AI Libraries`_:
- `Data`_: Scalable Datasets for ML
- `Train`_: Distributed Training
- `Tune`_: Scalable Hyperparameter Tuning
- `RLlib`_: Scalable Reinforcement Learning
- `Serve`_: Scalable and Programmable Serving
Or more about `Ray Core`_ and its key abstractions:
- `Tasks`_: Stateless functions executed in the cluster.
- `Actors`_: Stateful worker processes created in the cluster.
- `Objects`_: Immutable values accessible across the cluster.
Learn more about Monitoring and Debugging:
- Monitor Ray apps and clusters with the `Ray Dashboard <https://docs.ray.io/en/latest/ray-core/ray-dashboard.html>`__.
- Debug Ray apps with the `Ray Distributed Debugger <https://docs.ray.io/en/latest/ray-observability/ray-distributed-debugger.html>`__.
Ray runs on any machine, cluster, cloud provider, and Kubernetes, and features a growing
`ecosystem of community integrations`_.
Install Ray with: ``pip install ray``. For nightly wheels, see the
`Installation page <https://docs.ray.io/en/latest/ray-overview/installation.html>`__.
.. _`Serve`: https://docs.ray.io/en/latest/serve/index.html
.. _`Data`: https://docs.ray.io/en/latest/data/dataset.html
.. _`Workflow`: https://docs.ray.io/en/latest/workflows/concepts.html
.. _`Train`: https://docs.ray.io/en/latest/train/train.html
.. _`Tune`: https://docs.ray.io/en/latest/tune/index.html
.. _`RLlib`: https://docs.ray.io/en/latest/rllib/index.html
.. _`ecosystem of community integrations`: https://docs.ray.io/en/latest/ray-overview/ray-libraries.html
Why Ray?
--------
Today's ML workloads are increasingly compute-intensive. As convenient as they are, single-node development environments such as your laptop cannot scale to meet these demands.
Ray is a unified way to scale Python and AI applications from a laptop to a cluster.
With Ray, you can seamlessly scale the same code from a laptop to a cluster. Ray is designed to be general-purpose, meaning that it can performantly run any kind of workload. If your application is written in Python, you can scale it with Ray, no other infrastructure required.
More Information
----------------
- `Documentation`_
- `Ray Architecture whitepaper`_
- `Exoshuffle: large-scale data shuffle in Ray`_
- `Ownership: a distributed futures system for fine-grained tasks`_
- `RLlib paper`_
- `Tune paper`_
*Older documents:*
- `Ray paper`_
- `Ray HotOS paper`_
- `Ray Architecture v1 whitepaper`_
.. _`Ray AI Libraries`: https://docs.ray.io/en/latest/ray-air/getting-started.html
.. _`Ray Core`: https://docs.ray.io/en/latest/ray-core/walkthrough.html
.. _`Tasks`: https://docs.ray.io/en/latest/ray-core/tasks.html
.. _`Actors`: https://docs.ray.io/en/latest/ray-core/actors.html
.. _`Objects`: https://docs.ray.io/en/latest/ray-core/objects.html
.. _`Documentation`: http://docs.ray.io/en/latest/index.html
.. _`Ray Architecture v1 whitepaper`: https://docs.google.com/document/d/1lAy0Owi-vPz2jEqBSaHNQcy2IBSDEHyXNOQZlGuj93c/preview
.. _`Ray Architecture whitepaper`: https://docs.google.com/document/d/1tBw9A4j62ruI5omIJbMxly-la5w4q_TjyJgJL_jN2fI/preview
.. _`Exoshuffle: large-scale data shuffle in Ray`: https://arxiv.org/abs/2203.05072
.. _`Ownership: a distributed futures system for fine-grained tasks`: https://www.usenix.org/system/files/nsdi21-wang.pdf
.. _`Ray paper`: https://arxiv.org/abs/1712.05889
.. _`Ray HotOS paper`: https://arxiv.org/abs/1703.03924
.. _`RLlib paper`: https://arxiv.org/abs/1712.09381
.. _`Tune paper`: https://arxiv.org/abs/1807.05118
Getting Involved
----------------
.. list-table::
:widths: 25 50 25 25
:header-rows: 1
* - Platform
- Purpose
- Estimated Response Time
- Support Level
* - `Discourse Forum`_
- For discussions about development and questions about usage.
- < 1 day
- Community
* - `GitHub Issues`_
- For reporting bugs and filing feature requests.
- < 2 days
- Ray OSS Team
* - `Slack`_
- For collaborating with other Ray users.
- < 2 days
- Community
* - `StackOverflow`_
- For asking questions about how to use Ray.
- 3-5 days
- Community
* - `Meetup Group`_
- For learning about Ray projects and best practices.
- Monthly
- Ray DevRel
* - `Twitter`_
- For staying up-to-date on new features.
- Daily
- Ray DevRel
.. _`Discourse Forum`: https://discuss.ray.io/
.. _`GitHub Issues`: https://github.com/ray-project/ray/issues
.. _`StackOverflow`: https://stackoverflow.com/questions/tagged/ray
.. _`Meetup Group`: https://www.meetup.com/Bay-Area-Ray-Meetup/
.. _`Twitter`: https://twitter.com/raydistributed
.. _`Slack`: https://www.ray.io/join-slack?utm_source=github&utm_medium=ray_readme&utm_campaign=getting_involved
Raw data
{
"_id": null,
"home_page": "https://github.com/ray-project/ray",
"name": "ray-cpp",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "ray distributed parallel machine-learning hyperparameter-tuningreinforcement-learning deep-learning serving python",
"author": "Ray Team",
"author_email": "ray-dev@googlegroups.com",
"download_url": null,
"platform": null,
"description": ".. image:: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png\n\n.. image:: https://readthedocs.org/projects/ray/badge/?version=master\n :target: http://docs.ray.io/en/master/?badge=master\n\n.. image:: https://img.shields.io/badge/Ray-Join%20Slack-blue\n :target: https://forms.gle/9TSdDYUgxYs8SA9e8\n\n.. image:: https://img.shields.io/badge/Discuss-Ask%20Questions-blue\n :target: https://discuss.ray.io/\n\n.. image:: https://img.shields.io/twitter/follow/raydistributed.svg?style=social&logo=twitter\n :target: https://twitter.com/raydistributed\n\n.. image:: https://img.shields.io/badge/Get_started_for_free-3C8AE9?logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8%2F9hAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAEKADAAQAAAABAAAAEAAAAAA0VXHyAAABKElEQVQ4Ea2TvWoCQRRGnWCVWChIIlikC9hpJdikSbGgaONbpAoY8gKBdAGfwkfwKQypLQ1sEGyMYhN1Pd%2B6A8PqwBZeOHt%2FvsvMnd3ZXBRFPQjBZ9K6OY8ZxF%2B0IYw9PW3qz8aY6lk92bZ%2BVqSI3oC9T7%2FyCVnrF1ngj93us%2B540sf5BrCDfw9b6jJ5lx%2FyjtGKBBXc3cnqx0INN4ImbI%2Bl%2BPnI8zWfFEr4chLLrWHCp9OO9j19Kbc91HX0zzzBO8EbLK2Iv4ZvNO3is3h6jb%2BCwO0iL8AaWqB7ILPTxq3kDypqvBuYuwswqo6wgYJbT8XxBPZ8KS1TepkFdC79TAHHce%2F7LbVioi3wEfTpmeKtPRGEeoldSP%2FOeoEftpP4BRbgXrYZefsAI%2BP9JU7ImyEAAAAASUVORK5CYII%3D\n :target: https://console.anyscale.com/register/ha?utm_source=github&utm_medium=ray_readme&utm_campaign=get_started_badge\n\nRay is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a set of AI libraries for simplifying ML compute:\n\n.. image:: https://github.com/ray-project/ray/raw/master/doc/source/images/what-is-ray-padded.svg\n\n..\n https://docs.google.com/drawings/d/1Pl8aCYOsZCo61cmp57c7Sja6HhIygGCvSZLi_AuBuqo/edit\n\nLearn more about `Ray AI Libraries`_:\n\n- `Data`_: Scalable Datasets for ML\n- `Train`_: Distributed Training\n- `Tune`_: Scalable Hyperparameter Tuning\n- `RLlib`_: Scalable Reinforcement Learning\n- `Serve`_: Scalable and Programmable Serving\n\nOr more about `Ray Core`_ and its key abstractions:\n\n- `Tasks`_: Stateless functions executed in the cluster.\n- `Actors`_: Stateful worker processes created in the cluster.\n- `Objects`_: Immutable values accessible across the cluster.\n\nLearn more about Monitoring and Debugging:\n\n- Monitor Ray apps and clusters with the `Ray Dashboard <https://docs.ray.io/en/latest/ray-core/ray-dashboard.html>`__.\n- Debug Ray apps with the `Ray Distributed Debugger <https://docs.ray.io/en/latest/ray-observability/ray-distributed-debugger.html>`__.\n\nRay runs on any machine, cluster, cloud provider, and Kubernetes, and features a growing\n`ecosystem of community integrations`_.\n\nInstall Ray with: ``pip install ray``. For nightly wheels, see the\n`Installation page <https://docs.ray.io/en/latest/ray-overview/installation.html>`__.\n\n.. _`Serve`: https://docs.ray.io/en/latest/serve/index.html\n.. _`Data`: https://docs.ray.io/en/latest/data/dataset.html\n.. _`Workflow`: https://docs.ray.io/en/latest/workflows/concepts.html\n.. _`Train`: https://docs.ray.io/en/latest/train/train.html\n.. _`Tune`: https://docs.ray.io/en/latest/tune/index.html\n.. _`RLlib`: https://docs.ray.io/en/latest/rllib/index.html\n.. _`ecosystem of community integrations`: https://docs.ray.io/en/latest/ray-overview/ray-libraries.html\n\n\nWhy Ray?\n--------\n\nToday's ML workloads are increasingly compute-intensive. As convenient as they are, single-node development environments such as your laptop cannot scale to meet these demands.\n\nRay is a unified way to scale Python and AI applications from a laptop to a cluster.\n\nWith Ray, you can seamlessly scale the same code from a laptop to a cluster. Ray is designed to be general-purpose, meaning that it can performantly run any kind of workload. If your application is written in Python, you can scale it with Ray, no other infrastructure required.\n\nMore Information\n----------------\n\n- `Documentation`_\n- `Ray Architecture whitepaper`_\n- `Exoshuffle: large-scale data shuffle in Ray`_\n- `Ownership: a distributed futures system for fine-grained tasks`_\n- `RLlib paper`_\n- `Tune paper`_\n\n*Older documents:*\n\n- `Ray paper`_\n- `Ray HotOS paper`_\n- `Ray Architecture v1 whitepaper`_\n\n.. _`Ray AI Libraries`: https://docs.ray.io/en/latest/ray-air/getting-started.html\n.. _`Ray Core`: https://docs.ray.io/en/latest/ray-core/walkthrough.html\n.. _`Tasks`: https://docs.ray.io/en/latest/ray-core/tasks.html\n.. _`Actors`: https://docs.ray.io/en/latest/ray-core/actors.html\n.. _`Objects`: https://docs.ray.io/en/latest/ray-core/objects.html\n.. _`Documentation`: http://docs.ray.io/en/latest/index.html\n.. _`Ray Architecture v1 whitepaper`: https://docs.google.com/document/d/1lAy0Owi-vPz2jEqBSaHNQcy2IBSDEHyXNOQZlGuj93c/preview\n.. _`Ray Architecture whitepaper`: https://docs.google.com/document/d/1tBw9A4j62ruI5omIJbMxly-la5w4q_TjyJgJL_jN2fI/preview\n.. _`Exoshuffle: large-scale data shuffle in Ray`: https://arxiv.org/abs/2203.05072\n.. _`Ownership: a distributed futures system for fine-grained tasks`: https://www.usenix.org/system/files/nsdi21-wang.pdf\n.. _`Ray paper`: https://arxiv.org/abs/1712.05889\n.. _`Ray HotOS paper`: https://arxiv.org/abs/1703.03924\n.. _`RLlib paper`: https://arxiv.org/abs/1712.09381\n.. _`Tune paper`: https://arxiv.org/abs/1807.05118\n\nGetting Involved\n----------------\n\n.. list-table::\n :widths: 25 50 25 25\n :header-rows: 1\n\n * - Platform\n - Purpose\n - Estimated Response Time\n - Support Level\n * - `Discourse Forum`_\n - For discussions about development and questions about usage.\n - < 1 day\n - Community\n * - `GitHub Issues`_\n - For reporting bugs and filing feature requests.\n - < 2 days\n - Ray OSS Team\n * - `Slack`_\n - For collaborating with other Ray users.\n - < 2 days\n - Community\n * - `StackOverflow`_\n - For asking questions about how to use Ray.\n - 3-5 days\n - Community\n * - `Meetup Group`_\n - For learning about Ray projects and best practices.\n - Monthly\n - Ray DevRel\n * - `Twitter`_\n - For staying up-to-date on new features.\n - Daily\n - Ray DevRel\n\n.. _`Discourse Forum`: https://discuss.ray.io/\n.. _`GitHub Issues`: https://github.com/ray-project/ray/issues\n.. _`StackOverflow`: https://stackoverflow.com/questions/tagged/ray\n.. _`Meetup Group`: https://www.meetup.com/Bay-Area-Ray-Meetup/\n.. _`Twitter`: https://twitter.com/raydistributed\n.. _`Slack`: https://www.ray.io/join-slack?utm_source=github&utm_medium=ray_readme&utm_campaign=getting_involved\n",
"bugtrack_url": null,
"license": "Apache 2.0",
"summary": "A subpackage of Ray which provides the Ray C++ API.",
"version": "2.39.0",
"project_urls": {
"Homepage": "https://github.com/ray-project/ray"
},
"split_keywords": [
"ray",
"distributed",
"parallel",
"machine-learning",
"hyperparameter-tuningreinforcement-learning",
"deep-learning",
"serving",
"python"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "587142dec6b673ddb041a11f709b60ca26ad429e2b03d9faf8c15c4e2a6c3c33",
"md5": "c3ca04d07e2106959c2fcb71d4a50853",
"sha256": "d296e490b0da93c4cb0a8ae68be0948bab1bfae7079fd5fae453d1c71689de9e"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "c3ca04d07e2106959c2fcb71d4a50853",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 27918378,
"upload_time": "2024-11-12T21:33:26",
"upload_time_iso_8601": "2024-11-12T21:33:26.039591Z",
"url": "https://files.pythonhosted.org/packages/58/71/42dec6b673ddb041a11f709b60ca26ad429e2b03d9faf8c15c4e2a6c3c33/ray_cpp-2.39.0-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21be345d436d495576188fd9201a5e7459e55821e93177a2fd6e82e2817c8408",
"md5": "057d0504a3a1d487bd2afe8400ca9637",
"sha256": "f7ab401327d8a5bdce0a8b5e31b71a85f1d753e083253693efc1ff326a39c433"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "057d0504a3a1d487bd2afe8400ca9637",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 26477812,
"upload_time": "2024-11-12T21:33:31",
"upload_time_iso_8601": "2024-11-12T21:33:31.462641Z",
"url": "https://files.pythonhosted.org/packages/21/be/345d436d495576188fd9201a5e7459e55821e93177a2fd6e82e2817c8408/ray_cpp-2.39.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6928c0d2b2c64df3c18227aab982dc5707ac93161293e2130b7d5ba489328455",
"md5": "dc2a79220523d82e98d57b8d4a338eb3",
"sha256": "cb0d520e2a44f88d8d58f26d390ba15d779f94f384f5ef485ae61612a8afa1df"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp310-cp310-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "dc2a79220523d82e98d57b8d4a338eb3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 27777987,
"upload_time": "2024-11-12T21:33:36",
"upload_time_iso_8601": "2024-11-12T21:33:36.664590Z",
"url": "https://files.pythonhosted.org/packages/69/28/c0d2b2c64df3c18227aab982dc5707ac93161293e2130b7d5ba489328455/ray_cpp-2.39.0-cp310-cp310-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2f60dcde98585f3fecedadee08962a2244de48ae6ed2982a931e8be99cb0e1b",
"md5": "06ba4ef0ce215ede4a25c3aa303a6e7c",
"sha256": "fb5c1b664a0c1ef51615f16ed3ef510b937729a9763505bad7f729c775a7bb6e"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp310-cp310-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "06ba4ef0ce215ede4a25c3aa303a6e7c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 28361477,
"upload_time": "2024-11-12T21:33:44",
"upload_time_iso_8601": "2024-11-12T21:33:44.258367Z",
"url": "https://files.pythonhosted.org/packages/f2/f6/0dcde98585f3fecedadee08962a2244de48ae6ed2982a931e8be99cb0e1b/ray_cpp-2.39.0-cp310-cp310-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee69b03c0d61e574b98613a076165d9bd85f9d330d3f52f5e1768edd37ae57f9",
"md5": "6a4a64c176426bd8aa49344bc402d8c1",
"sha256": "c641c404756491896dfeed7dbe325b98b968ae4ca2426eb1d221a777a0094252"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6a4a64c176426bd8aa49344bc402d8c1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 22531002,
"upload_time": "2024-11-12T21:33:48",
"upload_time_iso_8601": "2024-11-12T21:33:48.504027Z",
"url": "https://files.pythonhosted.org/packages/ee/69/b03c0d61e574b98613a076165d9bd85f9d330d3f52f5e1768edd37ae57f9/ray_cpp-2.39.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ffced9f4245a49cb60aa39985d165b71ca7449bdae93c2c996cfab515c9bc5c",
"md5": "df49ad5df202715e51605bd49d8e37ff",
"sha256": "c6aab33479a10472b3807b5667e68dbd3e6c48ad52594b972128704c598ec7d8"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "df49ad5df202715e51605bd49d8e37ff",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 27918378,
"upload_time": "2024-11-12T21:33:54",
"upload_time_iso_8601": "2024-11-12T21:33:54.083419Z",
"url": "https://files.pythonhosted.org/packages/7f/fc/ed9f4245a49cb60aa39985d165b71ca7449bdae93c2c996cfab515c9bc5c/ray_cpp-2.39.0-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "844b002fa5901fb7697fd20e44764c34ef8499719001fe9eb9af37ce8ee9173a",
"md5": "9b81cefb3ec1d62821fe097ca26f6cd3",
"sha256": "170effbac3974898fb3437b609ce879825ad666b265c4fe7bc9f48a45559d3ba"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9b81cefb3ec1d62821fe097ca26f6cd3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 26477812,
"upload_time": "2024-11-12T21:33:58",
"upload_time_iso_8601": "2024-11-12T21:33:58.822976Z",
"url": "https://files.pythonhosted.org/packages/84/4b/002fa5901fb7697fd20e44764c34ef8499719001fe9eb9af37ce8ee9173a/ray_cpp-2.39.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c123c168fb4bbd40f7d96a786239978c44530ed6476c1b0f57a76e8a8c8d4e91",
"md5": "e3f65e7da5d260b2a01908e71862beec",
"sha256": "ba6302b58128298e693a2cb8e245919e68514e79defa2944462e9925cf9644c4"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp311-cp311-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e3f65e7da5d260b2a01908e71862beec",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 27777986,
"upload_time": "2024-11-12T21:34:03",
"upload_time_iso_8601": "2024-11-12T21:34:03.222857Z",
"url": "https://files.pythonhosted.org/packages/c1/23/c168fb4bbd40f7d96a786239978c44530ed6476c1b0f57a76e8a8c8d4e91/ray_cpp-2.39.0-cp311-cp311-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1310cb987527809b655cc801e7d9c9138d01021d29bfcdc9250c93608faaabea",
"md5": "5f0f6f2c4d9479a731d9b5b6fb272d88",
"sha256": "38aab5794a31ed511497df3ed7b1af0fce93a152bd40d16080022d3672ad734b"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp311-cp311-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5f0f6f2c4d9479a731d9b5b6fb272d88",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 28361476,
"upload_time": "2024-11-12T21:34:08",
"upload_time_iso_8601": "2024-11-12T21:34:08.358094Z",
"url": "https://files.pythonhosted.org/packages/13/10/cb987527809b655cc801e7d9c9138d01021d29bfcdc9250c93608faaabea/ray_cpp-2.39.0-cp311-cp311-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed46df24b19ba4dce056e7b953ed7ebf19c9f9c78dfbcd49361602d11e24809a",
"md5": "8d8cc74229f7965ca39c91ab07ad38c2",
"sha256": "55a9b09def59205bf5c9d87356536d965a2ba7afc4a693d0c98c83f06b7c1ae2"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "8d8cc74229f7965ca39c91ab07ad38c2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 22531003,
"upload_time": "2024-11-12T21:34:13",
"upload_time_iso_8601": "2024-11-12T21:34:13.349963Z",
"url": "https://files.pythonhosted.org/packages/ed/46/df24b19ba4dce056e7b953ed7ebf19c9f9c78dfbcd49361602d11e24809a/ray_cpp-2.39.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "999a5ab2c5a80b188a6ae9f0e8da06b90304d18698e80aaeec41ad75eaecebaf",
"md5": "d61f7d63c6f1e0548b8426ace49ee62c",
"sha256": "ca4a1a40fdfc1a06aa7f217ce6e4371ee0ddfb6379d3925a3f0a99cfe50f5684"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "d61f7d63c6f1e0548b8426ace49ee62c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 27918377,
"upload_time": "2024-11-12T21:34:17",
"upload_time_iso_8601": "2024-11-12T21:34:17.641750Z",
"url": "https://files.pythonhosted.org/packages/99/9a/5ab2c5a80b188a6ae9f0e8da06b90304d18698e80aaeec41ad75eaecebaf/ray_cpp-2.39.0-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "769c6bbdb308b3748b79bdfda688f98032e4582e0f1af0f76518f80c537a7c7c",
"md5": "8ebccd09220442b8d2f47b20216e84b3",
"sha256": "a811afb9650136657590cbb23a6dca2b2c82385ad8b70f88a5a3b9e92a21bb17"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8ebccd09220442b8d2f47b20216e84b3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 26477812,
"upload_time": "2024-11-12T21:34:22",
"upload_time_iso_8601": "2024-11-12T21:34:22.176556Z",
"url": "https://files.pythonhosted.org/packages/76/9c/6bbdb308b3748b79bdfda688f98032e4582e0f1af0f76518f80c537a7c7c/ray_cpp-2.39.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95ef879dd95429d45ad1906635099542a7e9d9d6a052757f22f4416da95d603b",
"md5": "5d7b8edde8040ec8666027abda40a0ea",
"sha256": "854780c8516717248b730993b8c60d8fec19a7772cec41f060659bf74d9d6ad7"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp312-cp312-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5d7b8edde8040ec8666027abda40a0ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 27777989,
"upload_time": "2024-11-12T21:34:26",
"upload_time_iso_8601": "2024-11-12T21:34:26.805686Z",
"url": "https://files.pythonhosted.org/packages/95/ef/879dd95429d45ad1906635099542a7e9d9d6a052757f22f4416da95d603b/ray_cpp-2.39.0-cp312-cp312-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c681dd3de4c93b7b5baccbb1fc4fe66d8b11462eb6acaf96c7aa24cf14a34054",
"md5": "baea686df809d4e7a765211d1aa2634b",
"sha256": "f79a7e4c3ae816f4d2e2a97d8b4dddaee76522d706c06430c8d61500860caa50"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp312-cp312-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "baea686df809d4e7a765211d1aa2634b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 28361476,
"upload_time": "2024-11-12T21:34:31",
"upload_time_iso_8601": "2024-11-12T21:34:31.811412Z",
"url": "https://files.pythonhosted.org/packages/c6/81/dd3de4c93b7b5baccbb1fc4fe66d8b11462eb6acaf96c7aa24cf14a34054/ray_cpp-2.39.0-cp312-cp312-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e168ca888fa189323990f3afb9abd5b1f654fff2f5fbcfdf468a33464c29509",
"md5": "ae4ab662d450ff0778f1752e43b909f5",
"sha256": "4e196e21a25456c5a86808d9951e981cd686910b954bb00816845441c942fd94"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "ae4ab662d450ff0778f1752e43b909f5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 22531002,
"upload_time": "2024-11-12T21:34:36",
"upload_time_iso_8601": "2024-11-12T21:34:36.216503Z",
"url": "https://files.pythonhosted.org/packages/9e/16/8ca888fa189323990f3afb9abd5b1f654fff2f5fbcfdf468a33464c29509/ray_cpp-2.39.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e424b1d1ed4b3d1bccb9a99642c332c2dae86e3d423285e1ffe64be628bb1774",
"md5": "4d9be03a599e9afc100e3d0574cf2935",
"sha256": "de33eaf6a504848e73a402d4a2a20bb16a0aeac1cdb5b0818bcb86b913f5df33"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "4d9be03a599e9afc100e3d0574cf2935",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 27918377,
"upload_time": "2024-11-12T21:34:41",
"upload_time_iso_8601": "2024-11-12T21:34:41.219900Z",
"url": "https://files.pythonhosted.org/packages/e4/24/b1d1ed4b3d1bccb9a99642c332c2dae86e3d423285e1ffe64be628bb1774/ray_cpp-2.39.0-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e0816273260d9701b66720dc09dd731fb7940a4feaeb7895b2fc42c0dc753609",
"md5": "8867a604a1c9318707e01bdbf2ae0f74",
"sha256": "c98a2a4e7eb0bd9dd87934161530237c128e71151dfc6d4d342d1ec0117b55a7"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8867a604a1c9318707e01bdbf2ae0f74",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 26477811,
"upload_time": "2024-11-12T21:34:47",
"upload_time_iso_8601": "2024-11-12T21:34:47.222873Z",
"url": "https://files.pythonhosted.org/packages/e0/81/6273260d9701b66720dc09dd731fb7940a4feaeb7895b2fc42c0dc753609/ray_cpp-2.39.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb38eeac77de07386c71e63e149398fcbf049014a11a7b314991c448792ca6d2",
"md5": "c7bc8e769ed266acf462007665cb07a5",
"sha256": "8efc3dd073e6e0eeea07cdda0a16816560f5942cb40715aa58ca7cd64213ccf6"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp39-cp39-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c7bc8e769ed266acf462007665cb07a5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 27777987,
"upload_time": "2024-11-12T21:34:52",
"upload_time_iso_8601": "2024-11-12T21:34:52.226641Z",
"url": "https://files.pythonhosted.org/packages/eb/38/eeac77de07386c71e63e149398fcbf049014a11a7b314991c448792ca6d2/ray_cpp-2.39.0-cp39-cp39-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e59d354650da1df145ed994bac3620f234c1aef8c8ba9ebe732ce97a058f284",
"md5": "42f25dad379f708c6c3712088262087a",
"sha256": "e59bf4a4d5c5d514a281ba0702d8d8cc4c9a2c5d43c8f456228fb77148aa6dc4"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp39-cp39-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "42f25dad379f708c6c3712088262087a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 28361475,
"upload_time": "2024-11-12T21:34:56",
"upload_time_iso_8601": "2024-11-12T21:34:56.648688Z",
"url": "https://files.pythonhosted.org/packages/9e/59/d354650da1df145ed994bac3620f234c1aef8c8ba9ebe732ce97a058f284/ray_cpp-2.39.0-cp39-cp39-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56a8636ba1985a83972668b9fef51eea30d6bb21ff12f72f377a9e1adcc20804",
"md5": "39e7cf52f7d6da27dc9d22dac61b4470",
"sha256": "283b0ebaaa0db1889500f59fbfa37a514df273ccc8b26bcef12d7e8236b2a2ed"
},
"downloads": -1,
"filename": "ray_cpp-2.39.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "39e7cf52f7d6da27dc9d22dac61b4470",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 22531000,
"upload_time": "2024-11-12T21:35:01",
"upload_time_iso_8601": "2024-11-12T21:35:01.683200Z",
"url": "https://files.pythonhosted.org/packages/56/a8/636ba1985a83972668b9fef51eea30d6bb21ff12f72f377a9e1adcc20804/ray_cpp-2.39.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-12 21:33:26",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ray-project",
"github_project": "ray",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "ray-cpp"
}