Skip to main content

Quantastica quantum simulator tools

Project description

Quantum programming language converter

Supported languages

Python version of quantastica-qconvert currently supports only:

  • Qobj to pyQuil

  • Qobj to QubitToaster

More formats will be added soon.

Until then, for more formats see:

Usage

from quantastica import qconvert

source_code = ...
options = {}

converted = qconvert.convert(qconvert.Format.QOBJ,
                    source_code,
                    qconvert.Format.PYQUIL,
                    options)
print(converted)

Details

convert(source_format, source_dict, dest_format, options)

  • source_format

    • Format.QOBJ
  • dest_format

    • Format.PYQUIL

    • Format.TOASTER

options Dict:

For all destination formats:

  • all_experiments

    • False (default) only first experiment will be converted and returned as string
    • True all experiments form Qobj will be converted and returned as list of strings.
  • create_exec_code

    • True (default) generated source code will contain command which executes circuit e.g. qc.run()

For PYQUIL destination:

  • lattice name of the backend (e.g. for pyQuil destination "Aspen-7-28Q-A"). If ommited then "Nq-qvm" will be generated where N is number fo qubits in the circuit.
    • special values:

      • "qasm_simulator" will produce "Nq-qvm" backend
      • "statevector_simulator" will produce WaveFunction simulator code
    • as_qvm (default False) if True QVM will mimic QPU specified by lattice argument.

For TOASTER destination:

No options yet

That's it. Enjoy! :)

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

quantastica-qconvert-0.9.8.tar.gz (14.2 kB view hashes)

Uploaded Source

Built Distribution

quantastica_qconvert-0.9.8-py3-none-any.whl (15.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page