pydiso


Namepydiso JSON
Version 0.0.4 PyPI version JSON
download
home_page
SummaryWrapper for intel's pardiso implementation in the MKL
upload_time2024-03-13 20:35:49
maintainer
docs_urlNone
author
requires_python>=3.8
licenseMIT License Copyright (c) 2021 SimPEG Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords sparse solver wrapper
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pydiso

Pydiso is a python wrapper for the pardiso solver. It is currently implemented for the
Intel MKL's version of pardiso. Its goal is to expose the full functionality of pardiso
to python, allowing the user to customize it as necessary for their use cases.

# Installation


## Installing from source

The wrapper is written in cython and links to the mkl libraries dynamically. Therefore,
it needs to find the necessary header files associated with the MKL installation to compile.
The meson build backend uses pkg-config to identify the locations of the mkl header files
and library dynamic libraries. Most development installations of MKL should provide the
necessary pkg-config files for this. For example, conda users can be install the necessary
configuration information with `mkl-devel` package that is available on the default channel,
conda-forge channel, the intel channel, or others, e.g.

`conda install mkl-devel`

If you have installed the configuration files to a non-standard location, you will need to set
`PKG_CONFIG_PATH` to point to that location.


After the necessary MKL files are accessible, you should be able to install by running

`pip install .`

in the installation directory.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pydiso",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "sparse solver wrapper",
    "author": "",
    "author_email": "SimPEG developers <josephrcapriotti@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/21/f8/2f962afe77a6ddd8be2605521cdf22868ee3bb7db789dd9f19ba5e6fd330/pydiso-0.0.4.tar.gz",
    "platform": null,
    "description": "# pydiso\n\nPydiso is a python wrapper for the pardiso solver. It is currently implemented for the\nIntel MKL's version of pardiso. Its goal is to expose the full functionality of pardiso\nto python, allowing the user to customize it as necessary for their use cases.\n\n# Installation\n\n\n## Installing from source\n\nThe wrapper is written in cython and links to the mkl libraries dynamically. Therefore,\nit needs to find the necessary header files associated with the MKL installation to compile.\nThe meson build backend uses pkg-config to identify the locations of the mkl header files\nand library dynamic libraries. Most development installations of MKL should provide the\nnecessary pkg-config files for this. For example, conda users can be install the necessary\nconfiguration information with `mkl-devel` package that is available on the default channel,\nconda-forge channel, the intel channel, or others, e.g.\n\n`conda install mkl-devel`\n\nIf you have installed the configuration files to a non-standard location, you will need to set\n`PKG_CONFIG_PATH` to point to that location.\n\n\nAfter the necessary MKL files are accessible, you should be able to install by running\n\n`pip install .`\n\nin the installation directory.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2021 SimPEG  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Wrapper for intel's pardiso implementation in the MKL",
    "version": "0.0.4",
    "project_urls": {
        "Homepage": "https://simpeg.xyz",
        "Repository": "https://github.com/simpeg/pydiso.git"
    },
    "split_keywords": [
        "sparse",
        "solver",
        "wrapper"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21f82f962afe77a6ddd8be2605521cdf22868ee3bb7db789dd9f19ba5e6fd330",
                "md5": "a67a32219853addced8930f259d2c14b",
                "sha256": "1acd2783bc9b1704e66054fe944c54cce244957b6e584416bf83b90f85e24048"
            },
            "downloads": -1,
            "filename": "pydiso-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "a67a32219853addced8930f259d2c14b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 13133,
            "upload_time": "2024-03-13T20:35:49",
            "upload_time_iso_8601": "2024-03-13T20:35:49.933802Z",
            "url": "https://files.pythonhosted.org/packages/21/f8/2f962afe77a6ddd8be2605521cdf22868ee3bb7db789dd9f19ba5e6fd330/pydiso-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-13 20:35:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "simpeg",
    "github_project": "pydiso",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pydiso"
}
        
Elapsed time: 0.21088s