qubox-ufsc


Namequbox-ufsc JSON
Version 0.1.0 PyPI version JSON
download
home_page
SummaryClient for the QuBOX UFSC
upload_time2023-03-16 17:19:31
maintainer
docs_urlNone
authorQuantuloop
requires_python>=3.7.2,<4
licenseQuBOX UFSC Client EULA
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # QuBOX UFSC Client

QuBOX is a portable quantum computing simulator developed by Quantuloop
for the [Ket language](https://quantumket.org). Accelerated by GPU, QuBOX has two simulation modes, 
being able to simulate more than 30 quantum bits.
    
In partnership with Quantuloop, the Quantum Computing Group - UFSC provides
free remote access to a QuBOX simulator. You can use this client to access 
the QuBOX hosted at the Federal University of Santa Catarina (UFSC).

See <https://qubox.ufsc.br> for more information.

## Installation

```shell
pip install qubox-ufsc
```

## Usage

```python
from ket import * # import quantum types and functions
import qubox_ufsc # import the QuBOX UFSC Client


# Request access to the QuBOX UFSC
qubox_ufsc.login(
    name="Your Name",
    email="you_email@example.com",
    affiliation="Your Affiliation"
)

# Configure the quantum execution
qubox_ufsc.config(
    mode="sparse",
    precision=1,
) # Every quantum execution after this line will run on the QuBOX

##################################
# Bell State preparation example #
##################################
a, b = quant(2)
cnot(H(a), b)
print(dump(a+b).show())
```


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "qubox-ufsc",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7.2,<4",
    "maintainer_email": "",
    "keywords": "",
    "author": "Quantuloop",
    "author_email": "contact@quantuloop.com",
    "download_url": "https://files.pythonhosted.org/packages/95/43/140d3807bde3d39de581d17a79c77d9a2591471cb82225ebbe85d004e385/qubox_ufsc-0.1.0.tar.gz",
    "platform": null,
    "description": "# QuBOX UFSC Client\n\nQuBOX is a portable quantum computing simulator developed by Quantuloop\nfor the [Ket language](https://quantumket.org). Accelerated by GPU, QuBOX has two simulation modes, \nbeing able to simulate more than 30 quantum bits.\n    \nIn partnership with Quantuloop, the Quantum Computing Group - UFSC provides\nfree remote access to a QuBOX simulator. You can use this client to access \nthe QuBOX hosted at the Federal University of Santa Catarina (UFSC).\n\nSee <https://qubox.ufsc.br> for more information.\n\n## Installation\n\n```shell\npip install qubox-ufsc\n```\n\n## Usage\n\n```python\nfrom ket import * # import quantum types and functions\nimport qubox_ufsc # import the QuBOX UFSC Client\n\n\n# Request access to the QuBOX UFSC\nqubox_ufsc.login(\n    name=\"Your Name\",\n    email=\"you_email@example.com\",\n    affiliation=\"Your Affiliation\"\n)\n\n# Configure the quantum execution\nqubox_ufsc.config(\n    mode=\"sparse\",\n    precision=1,\n) # Every quantum execution after this line will run on the QuBOX\n\n##################################\n# Bell State preparation example #\n##################################\na, b = quant(2)\ncnot(H(a), b)\nprint(dump(a+b).show())\n```\n\n",
    "bugtrack_url": null,
    "license": "QuBOX UFSC Client EULA",
    "summary": "Client for the QuBOX UFSC",
    "version": "0.1.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9543140d3807bde3d39de581d17a79c77d9a2591471cb82225ebbe85d004e385",
                "md5": "5f1d7fc1ef9740dcb0ba3b509dcca5e5",
                "sha256": "fa0a96aeac0b231e5345f12a9a1d58012fdc064a35d349dfaa7eb85935b004cd"
            },
            "downloads": -1,
            "filename": "qubox_ufsc-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5f1d7fc1ef9740dcb0ba3b509dcca5e5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7.2,<4",
            "size": 7203,
            "upload_time": "2023-03-16T17:19:31",
            "upload_time_iso_8601": "2023-03-16T17:19:31.131617Z",
            "url": "https://files.pythonhosted.org/packages/95/43/140d3807bde3d39de581d17a79c77d9a2591471cb82225ebbe85d004e385/qubox_ufsc-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-16 17:19:31",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "qubox-ufsc"
}
        
Elapsed time: 0.05760s