.. 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.40.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": "de8b5dc4c032fbeefba1e3fa7aa5e55039a8a1f4db304344f7933c567b8f89f0",
"md5": "78f2d747f51bf0899e17f34dee342c0c",
"sha256": "b81994b72c4a93d9a661d97a1b40d09523647a1db84b4f7e62714a8ce6e353c1"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "78f2d747f51bf0899e17f34dee342c0c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 27991303,
"upload_time": "2024-12-03T23:47:52",
"upload_time_iso_8601": "2024-12-03T23:47:52.109490Z",
"url": "https://files.pythonhosted.org/packages/de/8b/5dc4c032fbeefba1e3fa7aa5e55039a8a1f4db304344f7933c567b8f89f0/ray_cpp-2.40.0-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5621fafe44620efbbf085da058a86cb780901e2aac675f5aef055be0c3377c6e",
"md5": "828dc59eccd4d09fd416713302905981",
"sha256": "b99c8a2e01a750ef71700b9b46b30fd512f9eb482f0183f1770686822410d3f8"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "828dc59eccd4d09fd416713302905981",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 26534733,
"upload_time": "2024-12-03T23:47:57",
"upload_time_iso_8601": "2024-12-03T23:47:57.376091Z",
"url": "https://files.pythonhosted.org/packages/56/21/fafe44620efbbf085da058a86cb780901e2aac675f5aef055be0c3377c6e/ray_cpp-2.40.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac16e35c34a78f693680386381dfc30ce6ffd066bd2eb5b36f64c7418d5020a2",
"md5": "96bb6983c073b10a35a9e2d7143e0b42",
"sha256": "438bc8e1ba5df663db18ec12b780400453848e67728ecad1e3b0e25436ed772b"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp310-cp310-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "96bb6983c073b10a35a9e2d7143e0b42",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 27862884,
"upload_time": "2024-12-03T23:48:02",
"upload_time_iso_8601": "2024-12-03T23:48:02.247991Z",
"url": "https://files.pythonhosted.org/packages/ac/16/e35c34a78f693680386381dfc30ce6ffd066bd2eb5b36f64c7418d5020a2/ray_cpp-2.40.0-cp310-cp310-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "337428edb7b3824a6153a3b69c6047a960413c08b1630721ebbb4e365a47cea9",
"md5": "6934feae36eacc29712eb811d8d86c92",
"sha256": "3cb9ecf2618cdc6ffba47ea280d4789542556c4a3130d0e1477a28e57a6f01a3"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp310-cp310-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6934feae36eacc29712eb811d8d86c92",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 28468683,
"upload_time": "2024-12-03T23:48:07",
"upload_time_iso_8601": "2024-12-03T23:48:07.067563Z",
"url": "https://files.pythonhosted.org/packages/33/74/28edb7b3824a6153a3b69c6047a960413c08b1630721ebbb4e365a47cea9/ray_cpp-2.40.0-cp310-cp310-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4ac70a7fd6f72304bb7db12da0ff901c514e67b23e4f7ac033a28f9ce631bde",
"md5": "c6a27e0a1d6d3081e57c7d165a43d55d",
"sha256": "6959b3e0f1d6e0b519f5bdc1c5468253c773b28809ff5f3388d972938cbd11f8"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "c6a27e0a1d6d3081e57c7d165a43d55d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 22572419,
"upload_time": "2024-12-03T23:48:11",
"upload_time_iso_8601": "2024-12-03T23:48:11.821137Z",
"url": "https://files.pythonhosted.org/packages/a4/ac/70a7fd6f72304bb7db12da0ff901c514e67b23e4f7ac033a28f9ce631bde/ray_cpp-2.40.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a67709e54ab323fa4832245b922f1356d9d0f4b0fc0fe7931b4844698decf70e",
"md5": "d6ed4467c421c595ec86c97e337ba48b",
"sha256": "766c813db9093243f7fab3868658874c0e1c2c92c126addf9c9005f86595db94"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "d6ed4467c421c595ec86c97e337ba48b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 27991303,
"upload_time": "2024-12-03T23:48:16",
"upload_time_iso_8601": "2024-12-03T23:48:16.190319Z",
"url": "https://files.pythonhosted.org/packages/a6/77/09e54ab323fa4832245b922f1356d9d0f4b0fc0fe7931b4844698decf70e/ray_cpp-2.40.0-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12fe74f4335e39ad928c6eccf213a9bdc18af015da29bad70f7dc729d336ff7f",
"md5": "df1aa5936358eac6ff88203124d3f635",
"sha256": "f852b61ea95218033a3133a4a1498669f85109cac4f507762f362d478c9d0582"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "df1aa5936358eac6ff88203124d3f635",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 26534733,
"upload_time": "2024-12-03T23:48:20",
"upload_time_iso_8601": "2024-12-03T23:48:20.759222Z",
"url": "https://files.pythonhosted.org/packages/12/fe/74f4335e39ad928c6eccf213a9bdc18af015da29bad70f7dc729d336ff7f/ray_cpp-2.40.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83845fc7e25721f0943dc4729f2ec495a68fdfc484953f3f3f59da880af9a85a",
"md5": "660f7158eb0fb65e191be35c69e804e4",
"sha256": "c87a9f8432e1bd214aba26abe2c309bbf412a1ffd23dc9938efa080848ee23dd"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp311-cp311-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "660f7158eb0fb65e191be35c69e804e4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 27862883,
"upload_time": "2024-12-03T23:48:25",
"upload_time_iso_8601": "2024-12-03T23:48:25.134340Z",
"url": "https://files.pythonhosted.org/packages/83/84/5fc7e25721f0943dc4729f2ec495a68fdfc484953f3f3f59da880af9a85a/ray_cpp-2.40.0-cp311-cp311-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15410c741dfdda74f864c387fe755b3074a554a1b8c7f201569bd44660d118c3",
"md5": "1dd2afe99a58e71b6117856b11626c56",
"sha256": "d1889c3099241ef04ea6fb4200e1dd8feb5c908c357233d00519d9718b3fae19"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp311-cp311-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1dd2afe99a58e71b6117856b11626c56",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 28468681,
"upload_time": "2024-12-03T23:48:29",
"upload_time_iso_8601": "2024-12-03T23:48:29.437448Z",
"url": "https://files.pythonhosted.org/packages/15/41/0c741dfdda74f864c387fe755b3074a554a1b8c7f201569bd44660d118c3/ray_cpp-2.40.0-cp311-cp311-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3f0ab55b6f2d71600dcf35216ea5b9c443e6300584872b59bbf345d592a87b6",
"md5": "2b85d101b3b10fbf388a2a5c148ac9a5",
"sha256": "3d532ff2467b573d91a92574b790e81fc01db4471bf318f3fd304944bfc2efee"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "2b85d101b3b10fbf388a2a5c148ac9a5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 22572420,
"upload_time": "2024-12-03T23:48:33",
"upload_time_iso_8601": "2024-12-03T23:48:33.862912Z",
"url": "https://files.pythonhosted.org/packages/c3/f0/ab55b6f2d71600dcf35216ea5b9c443e6300584872b59bbf345d592a87b6/ray_cpp-2.40.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0bc0486885498ed03f61f85d700b339bb4a14a09a6c6b3e05cfe9bf4e16b8478",
"md5": "ec3c7f0c278615f84a8ee0b515d1c012",
"sha256": "b887d8aa00495724ef04394b87dc65b80428df11c180f01c5e95b507f324914f"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "ec3c7f0c278615f84a8ee0b515d1c012",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 27991302,
"upload_time": "2024-12-03T23:48:38",
"upload_time_iso_8601": "2024-12-03T23:48:38.921473Z",
"url": "https://files.pythonhosted.org/packages/0b/c0/486885498ed03f61f85d700b339bb4a14a09a6c6b3e05cfe9bf4e16b8478/ray_cpp-2.40.0-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "67b445a85f290539415307b900fb79a5ae8346f07cde70f5bba59eff438db0ca",
"md5": "cafc53db9e6f00da0cb55053900468a8",
"sha256": "b5abb502a77ef6722b820f598b13e3faf9c4917dea252ee9c7f75455dc5d2098"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cafc53db9e6f00da0cb55053900468a8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 26534733,
"upload_time": "2024-12-03T23:48:43",
"upload_time_iso_8601": "2024-12-03T23:48:43.631870Z",
"url": "https://files.pythonhosted.org/packages/67/b4/45a85f290539415307b900fb79a5ae8346f07cde70f5bba59eff438db0ca/ray_cpp-2.40.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96302594c4392ec06ea93ba45b99471adcc689f4d831044ae5cd36afa18d272e",
"md5": "26689422b95946852009efc829c9efb4",
"sha256": "f841f7802da6864222ff31a4ed06ac049ee909eecfe4a86ba0e966e2431a9708"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp312-cp312-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "26689422b95946852009efc829c9efb4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 27862885,
"upload_time": "2024-12-03T23:48:48",
"upload_time_iso_8601": "2024-12-03T23:48:48.085764Z",
"url": "https://files.pythonhosted.org/packages/96/30/2594c4392ec06ea93ba45b99471adcc689f4d831044ae5cd36afa18d272e/ray_cpp-2.40.0-cp312-cp312-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df2425129977f73358178f8ca373ba0acd0601f10aa0ee046b4674ca820abbdb",
"md5": "5a797bff9da65aa11a137b66b1a81c34",
"sha256": "05f9ef84fc6f59174bdbc93e38e6a6f173730b667024ef5b20ee79af20e68628"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp312-cp312-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5a797bff9da65aa11a137b66b1a81c34",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 28468682,
"upload_time": "2024-12-03T23:48:53",
"upload_time_iso_8601": "2024-12-03T23:48:53.811061Z",
"url": "https://files.pythonhosted.org/packages/df/24/25129977f73358178f8ca373ba0acd0601f10aa0ee046b4674ca820abbdb/ray_cpp-2.40.0-cp312-cp312-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d4f37e7c206fc65b05f62fc60895bb76bc87539c2afb8aa321510a4601b3e81",
"md5": "b0f8dd846ed527ac8d7313f5a3a9ca1d",
"sha256": "c6d8a7998ef8c20afed367f4d43eed6de8903e3562be1a2fcc151b5837e03607"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b0f8dd846ed527ac8d7313f5a3a9ca1d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 22572419,
"upload_time": "2024-12-03T23:48:58",
"upload_time_iso_8601": "2024-12-03T23:48:58.619408Z",
"url": "https://files.pythonhosted.org/packages/0d/4f/37e7c206fc65b05f62fc60895bb76bc87539c2afb8aa321510a4601b3e81/ray_cpp-2.40.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1d1f9d37f2873bba37f56835efb70383c7121a08075c33ed1365cc9a6960d9a",
"md5": "bfeaa29f0be4dbbb8fb9deb2e4456c5e",
"sha256": "6cdf3de8ae37f996cda5a3d2bddef6e1cd7c205ee83a3b74190d4ce6c766392e"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "bfeaa29f0be4dbbb8fb9deb2e4456c5e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 27991301,
"upload_time": "2024-12-03T23:49:03",
"upload_time_iso_8601": "2024-12-03T23:49:03.494227Z",
"url": "https://files.pythonhosted.org/packages/a1/d1/f9d37f2873bba37f56835efb70383c7121a08075c33ed1365cc9a6960d9a/ray_cpp-2.40.0-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab1829c2cd14fbc1c108fdcaec5f6f3b9f2c846d17bcf172dba02a234a79d550",
"md5": "aff7bbbaddf04aa0490b2fafbecc5e79",
"sha256": "45611b4c5fd793f5f31a99dfeca2b81f683761ca0394094e5ec208b08d4c0b0d"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "aff7bbbaddf04aa0490b2fafbecc5e79",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 26534732,
"upload_time": "2024-12-03T23:49:09",
"upload_time_iso_8601": "2024-12-03T23:49:09.121583Z",
"url": "https://files.pythonhosted.org/packages/ab/18/29c2cd14fbc1c108fdcaec5f6f3b9f2c846d17bcf172dba02a234a79d550/ray_cpp-2.40.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e604c2173c1bf11db1a3cb9a37f521dcee88164f1ab6b9678c3092ad1bf5f07",
"md5": "aebff07cd0efc96312dcfd03ae72802c",
"sha256": "be4d4c4fa8520c415da61cbd22b9ea86451551444acd7e7563240cc5270bf8d8"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp39-cp39-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "aebff07cd0efc96312dcfd03ae72802c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 27862883,
"upload_time": "2024-12-03T23:49:14",
"upload_time_iso_8601": "2024-12-03T23:49:14.165252Z",
"url": "https://files.pythonhosted.org/packages/7e/60/4c2173c1bf11db1a3cb9a37f521dcee88164f1ab6b9678c3092ad1bf5f07/ray_cpp-2.40.0-cp39-cp39-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8546544668bab2f86b5f5dd5c0f53994bdf342ca755bee6105457d4344594f65",
"md5": "5491fa86b15a9bf8f3b7193db767ddce",
"sha256": "3fa6f158b619401db9d6b0bcc3162b5389ec943fab029d7139ce6ffa77c475e6"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp39-cp39-manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5491fa86b15a9bf8f3b7193db767ddce",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 28468680,
"upload_time": "2024-12-03T23:49:18",
"upload_time_iso_8601": "2024-12-03T23:49:18.797606Z",
"url": "https://files.pythonhosted.org/packages/85/46/544668bab2f86b5f5dd5c0f53994bdf342ca755bee6105457d4344594f65/ray_cpp-2.40.0-cp39-cp39-manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc4e336b6328cf3e81e26f58c335a901d63091b8f928cab69c17be4fd286de3f",
"md5": "49f503d17018ec1f06fc8f4015676e78",
"sha256": "5372498b0718a2ba937b4ccb461c7c64fe1783dffa7d30b8806a20f5fcd79b00"
},
"downloads": -1,
"filename": "ray_cpp-2.40.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "49f503d17018ec1f06fc8f4015676e78",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 22572417,
"upload_time": "2024-12-03T23:49:23",
"upload_time_iso_8601": "2024-12-03T23:49:23.598074Z",
"url": "https://files.pythonhosted.org/packages/dc/4e/336b6328cf3e81e26f58c335a901d63091b8f928cab69c17be4fd286de3f/ray_cpp-2.40.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-03 23:47:52",
"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"
}