-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathinterface.py
49 lines (40 loc) · 1.27 KB
/
interface.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/env python
# -*- coding: utf-8 -*-
##
# interface.py: Contains classes that define the interface to the qubit
# simulator in simulator.py.
##
# Copyright (c) Sarah Kaiser and Cassandra Granade.
# Code sample from the book "Learn Quantum Computing with Python and Q#" by
# Sarah Kaiser and Cassandra Granade, published by Manning Publications Co.
# Book ISBN 9781617296130.
# Code licensed under the MIT License.
##
from abc import ABCMeta, abstractmethod
from contextlib import contextmanager
class Qubit(metaclass=ABCMeta):
@abstractmethod
def h(self): pass
@abstractmethod
def x(self): pass
@abstractmethod
def ry(self, angle: float): pass
@abstractmethod
def measure(self) -> bool: pass
@abstractmethod
def reset(self): pass
class QuantumDevice(metaclass=ABCMeta):
@abstractmethod
def allocate_qubit(self) -> Qubit:
pass
@abstractmethod
def deallocate_qubit(self, qubit: Qubit):
pass
@contextmanager
def using_qubit(self):
qubit = self.allocate_qubit()
try:
yield qubit
finally:
qubit.reset()
self.deallocate_qubit(qubit)