ray-cpp


Nameray-cpp JSON
Version 2.48.0 PyPI version JSON
download
home_pagehttps://github.com/ray-project/ray
SummaryA subpackage of Ray which provides the Ray C++ API.
upload_time2025-07-18 22:34:28
maintainerNone
docs_urlNone
authorRay Team
requires_python>=3.9
licenseApache 2.0
keywords ray distributed parallel machine-learning hyperparameter-tuningreinforcement-learning deep-learning serving python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. 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://www.ray.io/join-slack

.. 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://x.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://www.anyscale.com/ray-on-anyscale?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/
.. _`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://x.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://www.ray.io/join-slack\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://x.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://www.anyscale.com/ray-on-anyscale?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/\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://x.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.48.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": null,
            "digests": {
                "blake2b_256": "9a7e55ebdd9623b5fa061adec5e12978272048198cb82006b28510d188502a8a",
                "md5": "1d66bf9d5e4c7b053ce882d571879461",
                "sha256": "11e9fd53bd9e4569865100fe07a6ba5d3c7d0e63557cd8d0d37d655c76d04438"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1d66bf9d5e4c7b053ce882d571879461",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 27677269,
            "upload_time": "2025-07-18T22:34:28",
            "upload_time_iso_8601": "2025-07-18T22:34:28.749089Z",
            "url": "https://files.pythonhosted.org/packages/9a/7e/55ebdd9623b5fa061adec5e12978272048198cb82006b28510d188502a8a/ray_cpp-2.48.0-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "259499b82a94aac4605a589864608ad43eb16ebc529cadc3931addeda948e4af",
                "md5": "6680d88ef00368a0e50e5ac5d0198772",
                "sha256": "8d2d8d10c91df918711252b8ee56e3311a4b78d8ada4f2fbc5ee939b271e3d17"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6680d88ef00368a0e50e5ac5d0198772",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 29029973,
            "upload_time": "2025-07-18T22:34:33",
            "upload_time_iso_8601": "2025-07-18T22:34:33.451256Z",
            "url": "https://files.pythonhosted.org/packages/25/94/99b82a94aac4605a589864608ad43eb16ebc529cadc3931addeda948e4af/ray_cpp-2.48.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a97bd8afedfab1680061102e2d022245fa54908691c00ad114bad980433e9fa0",
                "md5": "5770d5cea18ecfa53e17241d72b007f1",
                "sha256": "c4cc8913920d104364410d94c6aebfb5961dd1452ff27cb2cb4d51ead8c4fa0f"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp310-cp310-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5770d5cea18ecfa53e17241d72b007f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 29080652,
            "upload_time": "2025-07-18T22:34:37",
            "upload_time_iso_8601": "2025-07-18T22:34:37.730481Z",
            "url": "https://files.pythonhosted.org/packages/a9/7b/d8afedfab1680061102e2d022245fa54908691c00ad114bad980433e9fa0/ray_cpp-2.48.0-cp310-cp310-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbb7999f65f179045d27a5bc379b0b502a207582767e2a73e6163f30e75a976f",
                "md5": "0ed1c19272b1ac10024c6cdece7be155",
                "sha256": "cd531d340f3206ceb8aeb00e92dc0093f705a45b04e58a3388b923a1858fb93f"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp310-cp310-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ed1c19272b1ac10024c6cdece7be155",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 29722738,
            "upload_time": "2025-07-18T22:34:42",
            "upload_time_iso_8601": "2025-07-18T22:34:42.031570Z",
            "url": "https://files.pythonhosted.org/packages/fb/b7/999f65f179045d27a5bc379b0b502a207582767e2a73e6163f30e75a976f/ray_cpp-2.48.0-cp310-cp310-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95a18c54f6197709bd015dbb7acfe62329f6035f51166e49ff3f7e556d5b05e4",
                "md5": "861bb45549d8fa9fab40f957380b36c9",
                "sha256": "57c348d184cf6bb432c20703c730fdf87dfcb4abc5458b00896e6c5b0e3d4d5a"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "861bb45549d8fa9fab40f957380b36c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 23220056,
            "upload_time": "2025-07-18T22:34:45",
            "upload_time_iso_8601": "2025-07-18T22:34:45.813777Z",
            "url": "https://files.pythonhosted.org/packages/95/a1/8c54f6197709bd015dbb7acfe62329f6035f51166e49ff3f7e556d5b05e4/ray_cpp-2.48.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "277877b33fc67fb3ea973bc0b8b79bb69e40afe71e485acefd19d784f672ed3a",
                "md5": "b4b94d3768306d43be8abe7bdbc5516f",
                "sha256": "682485550fd572b4453d066a2eca4952560798fd45d532638ac16624ade8f3f0"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp311-cp311-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b4b94d3768306d43be8abe7bdbc5516f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 27677269,
            "upload_time": "2025-07-18T22:34:49",
            "upload_time_iso_8601": "2025-07-18T22:34:49.323843Z",
            "url": "https://files.pythonhosted.org/packages/27/78/77b33fc67fb3ea973bc0b8b79bb69e40afe71e485acefd19d784f672ed3a/ray_cpp-2.48.0-cp311-cp311-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad2861ce7f3108c3aae1286618c484183d1aa6edc9f8ea8ed3e4625c4d5d5290",
                "md5": "588778ac046321ec06d7de06c0be95a4",
                "sha256": "6f47ccddb243b7c25db0c232dcf8db633c588279f8ae207be76101b6ef35f796"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "588778ac046321ec06d7de06c0be95a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 29029972,
            "upload_time": "2025-07-18T22:34:53",
            "upload_time_iso_8601": "2025-07-18T22:34:53.172982Z",
            "url": "https://files.pythonhosted.org/packages/ad/28/61ce7f3108c3aae1286618c484183d1aa6edc9f8ea8ed3e4625c4d5d5290/ray_cpp-2.48.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9064a2a4b080d550d61677b16c9eb2637acc63857619555b76d824ae425cf5b3",
                "md5": "64b5cc31c7ac3a3651fbeae33dfc7ecb",
                "sha256": "42bde315be8106539f9807bb1a443be96da1e232ff3d0c8869b03fb4afe9459b"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp311-cp311-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "64b5cc31c7ac3a3651fbeae33dfc7ecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 29080652,
            "upload_time": "2025-07-18T22:34:57",
            "upload_time_iso_8601": "2025-07-18T22:34:57.251376Z",
            "url": "https://files.pythonhosted.org/packages/90/64/a2a4b080d550d61677b16c9eb2637acc63857619555b76d824ae425cf5b3/ray_cpp-2.48.0-cp311-cp311-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1158183892c39d0600af49bdfd018b72b4ac1512aa7363d4ca0d5488cfd39fc4",
                "md5": "49701e0bdfbc3b3fb40e3d73c5f943b5",
                "sha256": "62e7d6bfce1a9df746e7b85f55a1fbe41b240d7bdba151a7070ec078e0fe177c"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp311-cp311-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49701e0bdfbc3b3fb40e3d73c5f943b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 29722737,
            "upload_time": "2025-07-18T22:35:01",
            "upload_time_iso_8601": "2025-07-18T22:35:01.135931Z",
            "url": "https://files.pythonhosted.org/packages/11/58/183892c39d0600af49bdfd018b72b4ac1512aa7363d4ca0d5488cfd39fc4/ray_cpp-2.48.0-cp311-cp311-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a477c1c5d8b55dcbd79784d098ae579adf1c543e4bffb42e24ca3641eff1fb17",
                "md5": "8406560ba6c98af2232f46606e25943c",
                "sha256": "8eee7b29b1d543672e92a6589c33d37970274614c7f8715586ef997c06c02915"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8406560ba6c98af2232f46606e25943c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 23220056,
            "upload_time": "2025-07-18T22:35:05",
            "upload_time_iso_8601": "2025-07-18T22:35:05.016405Z",
            "url": "https://files.pythonhosted.org/packages/a4/77/c1c5d8b55dcbd79784d098ae579adf1c543e4bffb42e24ca3641eff1fb17/ray_cpp-2.48.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2a5167e075cd7e7f763e99059a7f4aa6d4b2d869b1265693ec488cc0035aa3c",
                "md5": "47ffbe29f13673f112dbd9066255bb66",
                "sha256": "c457bda9b22386827b4e4225af34c1de07e430f1041601ba19b2b6f038358fcf"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp312-cp312-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "47ffbe29f13673f112dbd9066255bb66",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 27677269,
            "upload_time": "2025-07-18T22:35:08",
            "upload_time_iso_8601": "2025-07-18T22:35:08.918718Z",
            "url": "https://files.pythonhosted.org/packages/e2/a5/167e075cd7e7f763e99059a7f4aa6d4b2d869b1265693ec488cc0035aa3c/ray_cpp-2.48.0-cp312-cp312-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf83947f0eb941b8cb5ca48834dc7a6dc2b2d7f01791e798f1d0e4de3c0d8241",
                "md5": "40090f42f28930ff1eec8cb6049042a1",
                "sha256": "0bad9a5f18663aa95a7c1900185fcdeb48bf63a00c3766ccebe9394921494434"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40090f42f28930ff1eec8cb6049042a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 29029972,
            "upload_time": "2025-07-18T22:35:13",
            "upload_time_iso_8601": "2025-07-18T22:35:13.913105Z",
            "url": "https://files.pythonhosted.org/packages/cf/83/947f0eb941b8cb5ca48834dc7a6dc2b2d7f01791e798f1d0e4de3c0d8241/ray_cpp-2.48.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe69889a69e3abc130133227f2e72e481fdd5270b41fcc049d1487779ecf0c2c",
                "md5": "2f3882e720575b366b2edce2df05e149",
                "sha256": "20ad378f9142c7b7d5ed9364b29b6dbdedaaa588cb9d3814639fa70dd41423fe"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp312-cp312-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f3882e720575b366b2edce2df05e149",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 29080651,
            "upload_time": "2025-07-18T22:35:18",
            "upload_time_iso_8601": "2025-07-18T22:35:18.367077Z",
            "url": "https://files.pythonhosted.org/packages/fe/69/889a69e3abc130133227f2e72e481fdd5270b41fcc049d1487779ecf0c2c/ray_cpp-2.48.0-cp312-cp312-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21e16e0b12f17a3a2e22d9635701d3f157708e76a3276c7f88e1f84c78c43b9c",
                "md5": "2afff4a933028c2605139cc7c85fc4ce",
                "sha256": "3e0cfd14369a5fdaf286ea19a653593d647ba1fe22bc58e31379dfc905b74083"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp312-cp312-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2afff4a933028c2605139cc7c85fc4ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 29722737,
            "upload_time": "2025-07-18T22:35:22",
            "upload_time_iso_8601": "2025-07-18T22:35:22.321881Z",
            "url": "https://files.pythonhosted.org/packages/21/e1/6e0b12f17a3a2e22d9635701d3f157708e76a3276c7f88e1f84c78c43b9c/ray_cpp-2.48.0-cp312-cp312-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d44d756d9b351c1703fa36ad930d18c6acfa44b3d0af914dc1bd9a4c37cb0a89",
                "md5": "52cc1d15ed8ffb38a94a80b962cefb1f",
                "sha256": "026128cd09c7c655888c4e8b6e6ff3dcfe55cb0efbc7e898b4e7f5c0d960750d"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "52cc1d15ed8ffb38a94a80b962cefb1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 23220056,
            "upload_time": "2025-07-18T22:35:26",
            "upload_time_iso_8601": "2025-07-18T22:35:26.003865Z",
            "url": "https://files.pythonhosted.org/packages/d4/4d/756d9b351c1703fa36ad930d18c6acfa44b3d0af914dc1bd9a4c37cb0a89/ray_cpp-2.48.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67a25220f038018dc3e3497a1254ddb59be602147f81de2e0b60b41a0e053397",
                "md5": "9728dbef58d132df6da08c4a5f98d93c",
                "sha256": "436b960468169267e359e40506b9286757371f46ce9ffbf767d9f4d274790a86"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp313-cp313-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9728dbef58d132df6da08c4a5f98d93c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 27677270,
            "upload_time": "2025-07-18T22:35:29",
            "upload_time_iso_8601": "2025-07-18T22:35:29.916879Z",
            "url": "https://files.pythonhosted.org/packages/67/a2/5220f038018dc3e3497a1254ddb59be602147f81de2e0b60b41a0e053397/ray_cpp-2.48.0-cp313-cp313-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85a168811beceaa6a4e7508a889f5d081a7389232f81b5de758ed2205fc0baeb",
                "md5": "0cb7818310544f2d30e8c4d0bacc6fa3",
                "sha256": "8320a6bde5974ae07e2675c37fd9eaf192a96fdb3a56358c6900f714b6b2276f"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp313-cp313-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cb7818310544f2d30e8c4d0bacc6fa3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 29029974,
            "upload_time": "2025-07-18T22:35:33",
            "upload_time_iso_8601": "2025-07-18T22:35:33.871173Z",
            "url": "https://files.pythonhosted.org/packages/85/a1/68811beceaa6a4e7508a889f5d081a7389232f81b5de758ed2205fc0baeb/ray_cpp-2.48.0-cp313-cp313-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0df0ab00d2a4455280579bfa8d7a6435643c9dbc92c972201cf9af7d9f34c47",
                "md5": "6d12a3fba9e8f653300cf06f7bcd6387",
                "sha256": "909041ecd0b7ac8d71d8798c013af193a120c65aba5b461e85b2af686c8fdbe3"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp313-cp313-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d12a3fba9e8f653300cf06f7bcd6387",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 29080652,
            "upload_time": "2025-07-18T22:35:37",
            "upload_time_iso_8601": "2025-07-18T22:35:37.933925Z",
            "url": "https://files.pythonhosted.org/packages/c0/df/0ab00d2a4455280579bfa8d7a6435643c9dbc92c972201cf9af7d9f34c47/ray_cpp-2.48.0-cp313-cp313-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ad2bb342bdbaa35f0084fd66f4696c2d129447bd11ee4a5ede4124c1b75fa76",
                "md5": "f8afe38e4e0b14d8847f04b8cd508a4d",
                "sha256": "a0df88ccdb85b07520e71a2e387f4a2f3d1e56389ba24cf0dabfc0f331778040"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp313-cp313-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8afe38e4e0b14d8847f04b8cd508a4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 29722736,
            "upload_time": "2025-07-18T22:35:41",
            "upload_time_iso_8601": "2025-07-18T22:35:41.959242Z",
            "url": "https://files.pythonhosted.org/packages/3a/d2/bb342bdbaa35f0084fd66f4696c2d129447bd11ee4a5ede4124c1b75fa76/ray_cpp-2.48.0-cp313-cp313-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07948287135db574c085ef2fc02835fc589e6e39e562f803fbd8a65f330da617",
                "md5": "fceb2a5779b4117fd674320cc2c5f0a0",
                "sha256": "91151be2ea4839a137a08c3af2090a7a750b84a977eab1a9f787f3d5d3b8d1d7"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp39-cp39-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fceb2a5779b4117fd674320cc2c5f0a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 27677269,
            "upload_time": "2025-07-18T22:35:45",
            "upload_time_iso_8601": "2025-07-18T22:35:45.567198Z",
            "url": "https://files.pythonhosted.org/packages/07/94/8287135db574c085ef2fc02835fc589e6e39e562f803fbd8a65f330da617/ray_cpp-2.48.0-cp39-cp39-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5997e1ec377cafd4588dda62a4d07c5810183a28c59eb349de70078a6e6e90f",
                "md5": "5364831738f92279c90e69d67ae052a4",
                "sha256": "95e5895f9ca5b7e1f6036cbed95d0487dfb82c86c431102fd36154118672700f"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5364831738f92279c90e69d67ae052a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 29029976,
            "upload_time": "2025-07-18T22:35:50",
            "upload_time_iso_8601": "2025-07-18T22:35:50.913165Z",
            "url": "https://files.pythonhosted.org/packages/e5/99/7e1ec377cafd4588dda62a4d07c5810183a28c59eb349de70078a6e6e90f/ray_cpp-2.48.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84e14e8ec34a7dbefddeeebc57223da847197b674c9a216d105e1f1d7685dfc4",
                "md5": "6553e1809d65c32dae2badd362869ab4",
                "sha256": "390cf2f147a019d44567e1c80d43966e4dcc57986339cb3767467b1b399c0a29"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp39-cp39-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6553e1809d65c32dae2badd362869ab4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 29080651,
            "upload_time": "2025-07-18T22:35:54",
            "upload_time_iso_8601": "2025-07-18T22:35:54.827236Z",
            "url": "https://files.pythonhosted.org/packages/84/e1/4e8ec34a7dbefddeeebc57223da847197b674c9a216d105e1f1d7685dfc4/ray_cpp-2.48.0-cp39-cp39-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7ae50fa02b1ff83cd66fb910fb2eb95437a19ed716fdd0216613dd378ef213d",
                "md5": "a6f11795c412eb9aa5a4c5a6c43496fb",
                "sha256": "ce66cda11631dcf792c43e4731faf02f93dcee2f3bc24d89369fa9713f239c98"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp39-cp39-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6f11795c412eb9aa5a4c5a6c43496fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 29722737,
            "upload_time": "2025-07-18T22:35:58",
            "upload_time_iso_8601": "2025-07-18T22:35:58.818153Z",
            "url": "https://files.pythonhosted.org/packages/b7/ae/50fa02b1ff83cd66fb910fb2eb95437a19ed716fdd0216613dd378ef213d/ray_cpp-2.48.0-cp39-cp39-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6037377dcabf04f5e3782913f0e5a14003fb9f8928406bafdc4741993a129f5d",
                "md5": "dd0be68a0f8ac4ee61e312e292f349f9",
                "sha256": "1481f974390ef03614f1d41e498f904463d7fc39b3cdd0a51001fd73fab13359"
            },
            "downloads": -1,
            "filename": "ray_cpp-2.48.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dd0be68a0f8ac4ee61e312e292f349f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 23220057,
            "upload_time": "2025-07-18T22:36:02",
            "upload_time_iso_8601": "2025-07-18T22:36:02.465854Z",
            "url": "https://files.pythonhosted.org/packages/60/37/377dcabf04f5e3782913f0e5a14003fb9f8928406bafdc4741993a129f5d/ray_cpp-2.48.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-18 22:34:28",
    "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"
}
        
Elapsed time: 0.49188s