xad-autodiff


Namexad-autodiff JSON
Version 1.5.0 PyPI version JSON
download
home_pagehttps://auto-differentiation.github.io
SummaryHigh-Performance Automatic Differentiation for Python
upload_time2024-03-25 08:40:26
maintainerNone
docs_urlNone
authorAuto Differentiation Dev Team
requires_python<4.0,>=3.8.1
licenseAGPL-3.0-or-later
keywords automatic-differentiation derivatives machine-learning optimisation numerical-analysis scientific-computing risk-management computer-graphics robotics biotechnology meteorology quant-finance
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Python](https://img.shields.io/pypi/pyversions/xad-autodiff.svg)](https://auto-differentiation.github.io/python)
[![PyPI version](https://badge.fury.io/py/xad-autodiff.svg)](https://pypi.org/project/xad-autodiff/)


XAD is a library designed for
[automatic differentiation](https://auto-differentiation.github.io/aad/),
aimed at both beginners and advanced users. It is intended for use in
production environments, emphasizing performance and ease of use. The library
facilitates the computation of derivatives within computer programs, making
the process efficient and straightforward for a wide range of mathematical
functions, from simple arithmetic to complex calculations, ensuring accurate
and automatic derivative computations.

The Python bindings for XAD offer the following features:

- Support for both forward and adjoint modes at the first order.
- Strong exception-safety guarantees.
- High performance, as demonstrated in extensive production use.

For more details and to integrate XAD into your projects, consult the
comprehensive [documentation](https://auto-differentiation.github.io/python).

## Application Areas

Automatic differentiation has many application areas, for example:

-   **Machine Learning and Deep Learning:** Training neural networks or other
    machine learning models.
-   **Optimization:** Solving optimization problems in engineering and finance.
-   **Numerical Analysis:** Enhancing numerical solution methods for
    differential equations.
-   **Scientific Computing:** Simulating physical systems and processes.
-   **Risk Management and Quantitative Finance:** Assessing and hedging risk in
    financial models.
-   **Computer Graphics:** Optimizing rendering algorithms.
-   **Robotics:** Improving control and simulation of robotic systems.
-   **Meteorology:** Enhancing weather prediction models.
-   **Biotechnology:** Modeling biological processes and systems.

## Getting Started

Install:

```text
pip install xad-autodiff
```


Calculate first-order derivatives in adjoint mode:

```python
import xad_autodiff.adj_1st as xadj


# set independent variables
x0_ad = xadj.Real(1.0)
x1_ad = xadj.Real(1.5)
x2_ad = xadj.Real(1.3)
x3_ad = xadj.Real(1.2)

with xadj.Tape() as tape:
    # and register them
    tape.registerInput(x0_ad)
    tape.registerInput(x1_ad)
    tape.registerInput(x2_ad)
    tape.registerInput(x3_ad)

    # start recording derivatives
    tape.newRecording()

    # calculate the output
    y = x0_ad + x1_ad - x2_ad * x3_ad

    # register and seed adjoint of output
    tape.registerOutput(y)
    y.derivative = 1.0

    # compute all other adjoints
    tape.computeAdjoints()

    # output results
    print(f"y = {y}")
    print(f"first order derivatives:\n")
    print(f"dy/dx0 = {x0_ad.derivative}")
    print(f"dy/dx1 = {x1_ad.derivative}")
    print(f"dy/dx2 = {x2_ad.derivative}")
    print(f"dy/dx3 = {x3_ad.derivative}")
```

For more information, see the [Documentation](https://auto-differentiation.github.io/python).


            

Raw data

            {
    "_id": null,
    "home_page": "https://auto-differentiation.github.io",
    "name": "xad-autodiff",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8.1",
    "maintainer_email": null,
    "keywords": "automatic-differentiation, derivatives, machine-learning, optimisation, numerical-analysis, scientific-computing, risk-management, computer-graphics, robotics, biotechnology, meteorology, quant-finance",
    "author": "Auto Differentiation Dev Team",
    "author_email": "dev@auto-differentiation.com",
    "download_url": null,
    "platform": null,
    "description": "[![Python](https://img.shields.io/pypi/pyversions/xad-autodiff.svg)](https://auto-differentiation.github.io/python)\n[![PyPI version](https://badge.fury.io/py/xad-autodiff.svg)](https://pypi.org/project/xad-autodiff/)\n\n\nXAD is a library designed for\n[automatic differentiation](https://auto-differentiation.github.io/aad/),\naimed at both beginners and advanced users. It is intended for use in\nproduction environments, emphasizing performance and ease of use. The library\nfacilitates the computation of derivatives within computer programs, making\nthe process efficient and straightforward for a wide range of mathematical\nfunctions, from simple arithmetic to complex calculations, ensuring accurate\nand automatic derivative computations.\n\nThe Python bindings for XAD offer the following features:\n\n- Support for both forward and adjoint modes at the first order.\n- Strong exception-safety guarantees.\n- High performance, as demonstrated in extensive production use.\n\nFor more details and to integrate XAD into your projects, consult the\ncomprehensive [documentation](https://auto-differentiation.github.io/python).\n\n## Application Areas\n\nAutomatic differentiation has many application areas, for example:\n\n-   **Machine Learning and Deep Learning:** Training neural networks or other\n    machine learning models.\n-   **Optimization:** Solving optimization problems in engineering and finance.\n-   **Numerical Analysis:** Enhancing numerical solution methods for\n    differential equations.\n-   **Scientific Computing:** Simulating physical systems and processes.\n-   **Risk Management and Quantitative Finance:** Assessing and hedging risk in\n    financial models.\n-   **Computer Graphics:** Optimizing rendering algorithms.\n-   **Robotics:** Improving control and simulation of robotic systems.\n-   **Meteorology:** Enhancing weather prediction models.\n-   **Biotechnology:** Modeling biological processes and systems.\n\n## Getting Started\n\nInstall:\n\n```text\npip install xad-autodiff\n```\n\n\nCalculate first-order derivatives in adjoint mode:\n\n```python\nimport xad_autodiff.adj_1st as xadj\n\n\n# set independent variables\nx0_ad = xadj.Real(1.0)\nx1_ad = xadj.Real(1.5)\nx2_ad = xadj.Real(1.3)\nx3_ad = xadj.Real(1.2)\n\nwith xadj.Tape() as tape:\n    # and register them\n    tape.registerInput(x0_ad)\n    tape.registerInput(x1_ad)\n    tape.registerInput(x2_ad)\n    tape.registerInput(x3_ad)\n\n    # start recording derivatives\n    tape.newRecording()\n\n    # calculate the output\n    y = x0_ad + x1_ad - x2_ad * x3_ad\n\n    # register and seed adjoint of output\n    tape.registerOutput(y)\n    y.derivative = 1.0\n\n    # compute all other adjoints\n    tape.computeAdjoints()\n\n    # output results\n    print(f\"y = {y}\")\n    print(f\"first order derivatives:\\n\")\n    print(f\"dy/dx0 = {x0_ad.derivative}\")\n    print(f\"dy/dx1 = {x1_ad.derivative}\")\n    print(f\"dy/dx2 = {x2_ad.derivative}\")\n    print(f\"dy/dx3 = {x3_ad.derivative}\")\n```\n\nFor more information, see the [Documentation](https://auto-differentiation.github.io/python).\n\n",
    "bugtrack_url": null,
    "license": "AGPL-3.0-or-later",
    "summary": "High-Performance Automatic Differentiation for Python",
    "version": "1.5.0",
    "project_urls": {
        "Documentation": "https://auto-differentiation.github.io/python",
        "Download": "https://pypi.org/project/xad-autodiff/#files",
        "Homepage": "https://auto-differentiation.github.io",
        "Release notes": "https://github.com/auto-differentiation/XAD/releases",
        "Repository": "https://github.com/auto-differentiation/XAD",
        "Tracker": "https://github.com/auto-differentiation/XAD/issues"
    },
    "split_keywords": [
        "automatic-differentiation",
        " derivatives",
        " machine-learning",
        " optimisation",
        " numerical-analysis",
        " scientific-computing",
        " risk-management",
        " computer-graphics",
        " robotics",
        " biotechnology",
        " meteorology",
        " quant-finance"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "050c15d963d59d7b38056c787c37f299aa78c0a9d5d3269f32ca4fd4db958be5",
                "md5": "517860785ba203653b0208196125f394",
                "sha256": "06dae8f90207371893860d38f94c9af2a474a7bdffa42a27e6b28c53966cef78"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "517860785ba203653b0208196125f394",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8.1",
            "size": 221873,
            "upload_time": "2024-03-25T08:40:26",
            "upload_time_iso_8601": "2024-03-25T08:40:26.738572Z",
            "url": "https://files.pythonhosted.org/packages/05/0c/15d963d59d7b38056c787c37f299aa78c0a9d5d3269f32ca4fd4db958be5/xad_autodiff-1.5.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c15bb96bee1d087b6263771eafb8f0e55a5879380f6caaf7447f121a929a87f2",
                "md5": "955070e072fec2073771223e4e673ff7",
                "sha256": "978f71407dfd40ff5e43e42baf9faababcac4d031f510dbcee9ba62eed816abb"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "955070e072fec2073771223e4e673ff7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8.1",
            "size": 265000,
            "upload_time": "2024-03-25T08:40:28",
            "upload_time_iso_8601": "2024-03-25T08:40:28.671777Z",
            "url": "https://files.pythonhosted.org/packages/c1/5b/b96bee1d087b6263771eafb8f0e55a5879380f6caaf7447f121a929a87f2/xad_autodiff-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4572f018ef82a68b2c81fbef0ac71e8ac237a5dea1b93994d2528b48cf09216e",
                "md5": "91a5bc181fa0d48f6aac6e0904820b66",
                "sha256": "d6e4f367b5b46c389f04d082a0f50b21566dc9bfd11012a337b7952c65857560"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91a5bc181fa0d48f6aac6e0904820b66",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8.1",
            "size": 790031,
            "upload_time": "2024-03-25T08:40:29",
            "upload_time_iso_8601": "2024-03-25T08:40:29.914096Z",
            "url": "https://files.pythonhosted.org/packages/45/72/f018ef82a68b2c81fbef0ac71e8ac237a5dea1b93994d2528b48cf09216e/xad_autodiff-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a31f902d8bc747d97da055664b8b096a6660bedf8660286102cd841d6aa5fbe",
                "md5": "37527e92b72c40d787ccdf77fbb895a0",
                "sha256": "23c094bf766ad03262e5ea05324d2813a7e1ad7bbfbc18c72fa30fbedb619a47"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "37527e92b72c40d787ccdf77fbb895a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8.1",
            "size": 370037,
            "upload_time": "2024-03-25T08:40:32",
            "upload_time_iso_8601": "2024-03-25T08:40:32.828991Z",
            "url": "https://files.pythonhosted.org/packages/0a/31/f902d8bc747d97da055664b8b096a6660bedf8660286102cd841d6aa5fbe/xad_autodiff-1.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a85a9d0e47dbdc2fd61a6b69d4df52c551840c43df08666a905fcf608aab95af",
                "md5": "0cf45748eda690f69a631d133c6c51bf",
                "sha256": "5307de26e124477e9d902a5ab9e8706c910e46fcabcf61880cff0e2bb524e870"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cf45748eda690f69a631d133c6c51bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8.1",
            "size": 223382,
            "upload_time": "2024-03-25T08:40:34",
            "upload_time_iso_8601": "2024-03-25T08:40:34.574530Z",
            "url": "https://files.pythonhosted.org/packages/a8/5a/9d0e47dbdc2fd61a6b69d4df52c551840c43df08666a905fcf608aab95af/xad_autodiff-1.5.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f5de9e69494d3731dd12fc7688b88a76ca4cb920873a17ce24ca4be8c93b191",
                "md5": "14f834ec7f27c4d735de4b7eab2ae184",
                "sha256": "0dc97921771801c7cfc3b913e3902fcbf78cc2b62d4350d657ed5ea90ba5e2b8"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14f834ec7f27c4d735de4b7eab2ae184",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8.1",
            "size": 266803,
            "upload_time": "2024-03-25T08:40:36",
            "upload_time_iso_8601": "2024-03-25T08:40:36.508299Z",
            "url": "https://files.pythonhosted.org/packages/1f/5d/e9e69494d3731dd12fc7688b88a76ca4cb920873a17ce24ca4be8c93b191/xad_autodiff-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a83af047ae9663a48073ac02617bfa93d340720f1a65908124eede2e14d99e3d",
                "md5": "daac63d75d697bf0623c773dfec4294f",
                "sha256": "a7e32296af4fee7062321f4587da6bc979dd65a76a50ee41599262385dd05fe9"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "daac63d75d697bf0623c773dfec4294f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8.1",
            "size": 791181,
            "upload_time": "2024-03-25T08:40:38",
            "upload_time_iso_8601": "2024-03-25T08:40:38.682638Z",
            "url": "https://files.pythonhosted.org/packages/a8/3a/f047ae9663a48073ac02617bfa93d340720f1a65908124eede2e14d99e3d/xad_autodiff-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3f16f05c8a178f0fd706b3c931918391ef882f934ead85a1a28fa0c87c17fa3",
                "md5": "95eb50e1a4735f2a8b4afd79b69653d2",
                "sha256": "36d52140a43b559fa26cabe52f038822a1706114b5909383806b6ff9aec90575"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "95eb50e1a4735f2a8b4afd79b69653d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8.1",
            "size": 371504,
            "upload_time": "2024-03-25T08:40:41",
            "upload_time_iso_8601": "2024-03-25T08:40:41.567196Z",
            "url": "https://files.pythonhosted.org/packages/a3/f1/6f05c8a178f0fd706b3c931918391ef882f934ead85a1a28fa0c87c17fa3/xad_autodiff-1.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a89732231a4bbf1166978ec4c0983f2c0d8e6ddc971cd4e46db286d93364ecb",
                "md5": "56f5229b9f4ce205115a38c7439ff91b",
                "sha256": "7d6ab0d642f7abcd961b0925fe818b92ec56cdeac982869d904fd80e1154b02e"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56f5229b9f4ce205115a38c7439ff91b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8.1",
            "size": 234750,
            "upload_time": "2024-03-25T08:40:43",
            "upload_time_iso_8601": "2024-03-25T08:40:43.405172Z",
            "url": "https://files.pythonhosted.org/packages/7a/89/732231a4bbf1166978ec4c0983f2c0d8e6ddc971cd4e46db286d93364ecb/xad_autodiff-1.5.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d65bb1793bd2f3d63a9e53fbd4e928e7a2188b6ec813ca5c57b4a2628cee472d",
                "md5": "c2e5af0edc8275f3792bd53685a6c2d4",
                "sha256": "08e087beb6a01a376b5a77863ee55f3ebe49f454eaef2b1e9f9295b94afd98de"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2e5af0edc8275f3792bd53685a6c2d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8.1",
            "size": 269472,
            "upload_time": "2024-03-25T08:40:45",
            "upload_time_iso_8601": "2024-03-25T08:40:45.319991Z",
            "url": "https://files.pythonhosted.org/packages/d6/5b/b1793bd2f3d63a9e53fbd4e928e7a2188b6ec813ca5c57b4a2628cee472d/xad_autodiff-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e9c7629ffb8cf0c198b5144abe8ad49574202e782e6445b0c4a7e8e331fe581",
                "md5": "6587aba144579062dbcbe4c8c0d8cf9a",
                "sha256": "c6f102ed49a41074cc1c99111070eee27bebc26464fe0e038f774d08ec8320e5"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6587aba144579062dbcbe4c8c0d8cf9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8.1",
            "size": 794224,
            "upload_time": "2024-03-25T08:40:47",
            "upload_time_iso_8601": "2024-03-25T08:40:47.386608Z",
            "url": "https://files.pythonhosted.org/packages/2e/9c/7629ffb8cf0c198b5144abe8ad49574202e782e6445b0c4a7e8e331fe581/xad_autodiff-1.5.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36070fea2223a6df3b81a89e711fe77174d9628f0a6a7307f033e85e73dd2f05",
                "md5": "9a11689734163f43b39e8466606e40b5",
                "sha256": "b3260152b6ac05f4df3f364587e70ad18d950dee678f7f4bb2ec14aebc176cf8"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9a11689734163f43b39e8466606e40b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8.1",
            "size": 370766,
            "upload_time": "2024-03-25T08:40:49",
            "upload_time_iso_8601": "2024-03-25T08:40:49.396540Z",
            "url": "https://files.pythonhosted.org/packages/36/07/0fea2223a6df3b81a89e711fe77174d9628f0a6a7307f033e85e73dd2f05/xad_autodiff-1.5.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31df3c51c74f52919ec356732a1c1df1ac29815b82c701236bc09504c2641a97",
                "md5": "f41c93775805cd83077216da618b632a",
                "sha256": "d808ec9b34f11fcb9813c8987be6deeb66e55203a908fb9f9dbc5b4ce9c89b9d"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f41c93775805cd83077216da618b632a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8.1",
            "size": 264767,
            "upload_time": "2024-03-25T08:40:51",
            "upload_time_iso_8601": "2024-03-25T08:40:51.210565Z",
            "url": "https://files.pythonhosted.org/packages/31/df/3c51c74f52919ec356732a1c1df1ac29815b82c701236bc09504c2641a97/xad_autodiff-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a0e72d9b379f2bff5898f16ce5169f8e5c41a56dc4ec5b222077ad25f326b70",
                "md5": "426cfa179dd9e846061e247904b431a4",
                "sha256": "6836e927574bc2a224e12399065709948040aaa12926b47b6146e0b405ba1bdc"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "426cfa179dd9e846061e247904b431a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8.1",
            "size": 789505,
            "upload_time": "2024-03-25T08:40:52",
            "upload_time_iso_8601": "2024-03-25T08:40:52.468138Z",
            "url": "https://files.pythonhosted.org/packages/4a/0e/72d9b379f2bff5898f16ce5169f8e5c41a56dc4ec5b222077ad25f326b70/xad_autodiff-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c596d7b5c579e6554c6178d0d790fcaa8ade0f83359d02b7f6ce474b4379f65",
                "md5": "86f1d1c906b2f2ec889d2ea3433d2537",
                "sha256": "546868bd1c65a59aa43b5aa0ae92dd16f1313f7b1be4057037ff3688fc122a5d"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "86f1d1c906b2f2ec889d2ea3433d2537",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8.1",
            "size": 369982,
            "upload_time": "2024-03-25T08:40:54",
            "upload_time_iso_8601": "2024-03-25T08:40:54.190563Z",
            "url": "https://files.pythonhosted.org/packages/6c/59/6d7b5c579e6554c6178d0d790fcaa8ade0f83359d02b7f6ce474b4379f65/xad_autodiff-1.5.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d852c0b6b280dafd98df3f62c9adc745c31538049fe77b638f07c01a096e1d02",
                "md5": "beeb06523ba8de7114bdd2976c624836",
                "sha256": "53134940cda3b59003688634ffc90419ba6c158fca991958280c219f5d7d5017"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "beeb06523ba8de7114bdd2976c624836",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8.1",
            "size": 221977,
            "upload_time": "2024-03-25T08:40:55",
            "upload_time_iso_8601": "2024-03-25T08:40:55.307461Z",
            "url": "https://files.pythonhosted.org/packages/d8/52/c0b6b280dafd98df3f62c9adc745c31538049fe77b638f07c01a096e1d02/xad_autodiff-1.5.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1904f1b3c5a4149ad9af0ddc853436c559e4cc97b798db54daa1fae26425261",
                "md5": "836492f974a89af4e37b56b2ae22378b",
                "sha256": "f2b1559242330e1cf1fe7369d647f8ff0e0336d61cffa77a47aaad03edd419c9"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "836492f974a89af4e37b56b2ae22378b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8.1",
            "size": 265484,
            "upload_time": "2024-03-25T08:40:57",
            "upload_time_iso_8601": "2024-03-25T08:40:57.287411Z",
            "url": "https://files.pythonhosted.org/packages/a1/90/4f1b3c5a4149ad9af0ddc853436c559e4cc97b798db54daa1fae26425261/xad_autodiff-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c097d8eeb09908a54878db6760813b4eccecf30fdaf7ca04b73118534e3fe573",
                "md5": "2326a51ec94fcf86d7f5c19c376ed06e",
                "sha256": "b4787e426e96705772e3634a6396c56464f1a7c80fa97c5b311f3af6b4d8babc"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2326a51ec94fcf86d7f5c19c376ed06e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8.1",
            "size": 789553,
            "upload_time": "2024-03-25T08:40:58",
            "upload_time_iso_8601": "2024-03-25T08:40:58.481414Z",
            "url": "https://files.pythonhosted.org/packages/c0/97/d8eeb09908a54878db6760813b4eccecf30fdaf7ca04b73118534e3fe573/xad_autodiff-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aac216b8a3485f4d43476acac83963c2503b80fe4fb189344d1baeb3efc82ad2",
                "md5": "67d5de021d65935df58e59f6985bed68",
                "sha256": "e5c5b3f23ca52833cb0767cab03b26441996d3cb01f91df93eb30d63551d52fd"
            },
            "downloads": -1,
            "filename": "xad_autodiff-1.5.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67d5de021d65935df58e59f6985bed68",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8.1",
            "size": 354735,
            "upload_time": "2024-03-25T08:40:59",
            "upload_time_iso_8601": "2024-03-25T08:40:59.637569Z",
            "url": "https://files.pythonhosted.org/packages/aa/c2/16b8a3485f4d43476acac83963c2503b80fe4fb189344d1baeb3efc82ad2/xad_autodiff-1.5.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 08:40:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "auto-differentiation",
    "github_project": "XAD",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "xad-autodiff"
}
        
Elapsed time: 0.56533s