Skip to main content

A library to simulate quantum computations

Project description

Quantum Computing Simulator


A python library to simulate quantum programs and circuits.

Table of Contents

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

This library is self contained, and optionally uses matplotlib for plotting graphs.

Installing

This library can be installed from pypi using pip:

$ pip install quantumcomputingsim

To make sure everything installed properly, import the main and only module in python:

from quantum import *

Usage

Go through example.ipynb for a comprehensive guide on using this library

Sample workflow:

entangler = qprogram(
    nqbits = 2,
    name = "Entangler"
)
entangler.addgates(0, [HGATE, CNOT0])
entangler.compile()

Compiler result:

Compiling Entangler...

Entangler
q0(0) ⮕  -----[ h ]--⌈ c0 c0 ⌉-------
q1(0) ⮕  ------------⌊ c0 c0 ⌋-------


Compilation of Entangler complete!

and to run the program:

entangler.run(graph = True)

and view bloch spheres for qubits:

plotbloch(HGATE * [0, 1])

Authors

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

quantumcomputingsim-1.0.7.tar.gz (14.1 kB view hashes)

Uploaded Source

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