QFaaS Library supporting QFaaS Serverless framework for Quantum Computing
Project description
qfaas-lib
qfaas-lib is a supporting library for QFaaS Serverless framework for Quantum Computing.
Installation
Install qfaas-lib with pip (Python >=3.10)
pip install qfaas
Usage/Examples
from qfaas import Backend, RequestData, Utils
# Define sdk name
sdk = "braket"
# Pre-processing input data
def pre_process(input):
data = RequestData(input, sdk)
return data
# Post-processing output data
def post_process(job):
output = Utils.counts_post_process(job)
return output
def handle(event, context):
# 1. Pre-processing
requestData = pre_process(event)
# 2. Generate Quantum Circuit
qc = generate_circuit(requestData.input)
# 3. Verify and get Backend information
backend = Backend(requestData, qc)
# 4. Submit job and wait up to 1 min for job to complete.
job = backend.submit_job(qc)
# 5. Post-process
if job.jobResult:
job = post_process(job)
response = Utils.generate_response(job)
# 6. Send back the result
return response
Authors
Documentation
TBA
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
qfaas-0.2.0.tar.gz
(10.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
qfaas-0.2.0-py3-none-any.whl
(12.3 kB
view details)
File details
Details for the file qfaas-0.2.0.tar.gz.
File metadata
- Download URL: qfaas-0.2.0.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec1fe6bf126a664b21536f22812c7443db8a1174ecc71a16bfe8a67230efc5a0
|
|
| MD5 |
12a328de89c1f8eefbc43549e049d926
|
|
| BLAKE2b-256 |
4a1a3d82883a6130c1fd4db4688a263cd9c631e1ac95f10e7dd0b5b413fa928a
|
File details
Details for the file qfaas-0.2.0-py3-none-any.whl.
File metadata
- Download URL: qfaas-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d684be04049cb5d2f2e37b7247f38b411568b730972be367d8ea8c6197dbf62
|
|
| MD5 |
8aa44463cd2f7983f653f3ef7d749209
|
|
| BLAKE2b-256 |
fc981813f49101ac750c670e7afeb5a236bad2356965e63214e366c47b62fe37
|