-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelper.py
More file actions
270 lines (232 loc) · 7.96 KB
/
helper.py
File metadata and controls
270 lines (232 loc) · 7.96 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# qip/helper.py
import numpy as np
from qiskit.quantum_info import partial_trace
def sfwht(a):
"""Fast walsh hadamard transform with scaling
Args:
a (flat array): array with values to be transformed
Returns:
input array: array of same type as input, inplace transform
"""
n = len(a)
k = ilog2(n)
j = 1
while j < n:
for i in range(n):
if i & j == 0:
j1 = i + j
x = a[i]
y = a[j1]
a[i], a[j1] = (x + y) / 2, (x - y) / 2
j *= 2
return a
def isfwht(a):
"""Inverse of the walsh hadamard transform
Args:
a (array): array of values
Returns:
array: array with inverse transformed applied, inplace
"""
n = len(a)
k = ilog2(n)
j=1
while j< n:
for i in range(n):
if (i&j) == 0:
j1=i+j
x=a[i]
y=a[j1]
a[i],a[j1]=(x+y),(x-y)
j*=2
return a
def ispow2(x):
"""am I a power of two
Args:
x (int): number
Returns:
Bool: is it a power of two? The answer
"""
return not (x&x-1)
def nextpow2(x):
"""Returns next power of two, or identity if x is a power of two
Args:
x (int): number to check
Returns:
int: next power of two (or x if x is a power of two)
"""
x-=1
x|=x>>1
x|=x>>2
x|=x>>4
x|=x>>8
x|=x>>16
x|=x>>32
x+=1
return x
def ilog2(x):
"""Integer log 2"""
return int(np.log2(x))
def grayCode(x):
"""Gray code permutation of x, to change indices"""
return x^(x>>1)
def grayPermutation(a):
"""Gray permutes an array"""
b = np.zeros(len(a))
for i in range(len(a)):
b[i] = a[grayCode(i)]
return b
def invGrayPermutation(a):
"""inverse gray permutes an array"""
b = np.zeros(len(a))
for i in range(len(a)):
b[grayCode(i)] = a[i]
return b
def convertToAngles(a):
"""Converts image to angles"""
scal = np.pi/(a.max()*2)
a = a *scal
return a
def convertToGrayscale(a,maxval=1):
"""Converts encoded postprocessed statevector back to grayscale, normalized to maxval"""
scal = 2*maxval/np.pi
a = a * scal
return a
def countr_zero(n,n_bits=8):
"""Returns the number of consecutive 0 bits
in the value of x, starting from the
least significant bit ("right")."""
if n == 0:
return n_bits
count = 0
while n & 1 == 0:
count += 1
n >>= 1
return count
def preprocess_image(img):
"""Program requires flattened transpose of image array, this returns exactly that"""
return img.T.flatten()
def readpgm(name):
"""Reads pgm P2 files"""
with open(name) as f:
lines = f.readlines()
# This ignores commented lines
for l in list(lines):
if l[0] == '#':
lines.remove(l)
# here,it makes sure it is ASCII format (P2)
assert lines[0].strip() == 'P2'
# Converts data to a list of integers
data = []
for line in lines[1:]:
data.extend([int(c) for c in line.split()])
return (np.array(data[3:]),(data[1],data[0]),data[2])
def pad_0(img):
"""Pads array with 0s to next power of two
Args:
img (numpy array): image, can be wide
Returns:
padded image: flattened image with appropiate padding for quantum algorithm
"""
img = np.array(img)
img.flatten()
return np.pad(img,(0,nextpow2(len(img))-len(img)))
def decodeQPIXL(state,max_pixel_val=255, state_to_prob = np.abs):
"""Automatically decodes qpixl output statevector
Args:
state (statevector array): statevector from simulator - beware of bit ordering
max_pixel_val (int, optional): normalization value. Defaults to 255.
state_to_prob (function): If you made some transforms, your image
may be complex, how would you
like to make the vector real?
Returns:
np.array: your image, flat
"""
state_to_prob(state)
pv = np.zeros(len(state)//2)
for i in range(0,len(state),2):
pv[i//2]=np.arctan2(state[i+1],state[i])
return convertToGrayscale(pv,max_pixel_val)
def permute_bits(b,bitlength=8,shift=1):
"""cyclic permutation of bits
Args:
b (integer): integer to be converted
bitlength (int, optional): how many bits do you want to permute in. Defaults to 8.
shift (int, optional): how many bits to shift. Defaults to 1.
Returns:
int: integer representation of bits
"""
b = bin(b)
b = b[2:].zfill(bitlength)
b = [b[(i + shift) % len(b)] for i in range(len(b))]
return int(''.join(b),2)
def decodeParallelQPIXL(state, qc, length ,max_pixel_val=255):
"""Automatically decodes qpixl output statevector
Args:
state (statevector array): statevector from simulator - beware of bit ordering
qc (qiskit circuit): the circuit used for the state generation
max_pixel_val (int, optional): normalization value. Defaults to 255.
Returns:
np.array: your image, flat
"""
decoded_data = []
for datum in range(length):
to_trace = list(range(length))
popped = to_trace.pop(length-datum-1)
to_trace = [qc.qubits[qub] for qub in to_trace]
traced_over_qubits = [qc.qubits.index(qubit) for qubit in to_trace]
density_matrix = partial_trace(state, traced_over_qubits)
probs = density_matrix.probabilities()
test = decodeQPIXL(probs)
ordered = [test[permute_bits(i,len(qc.qubits)-length,datum)] for i in range(len(test))]
decoded_data.append(convertToGrayscale(np.array(ordered),max_pixel_val))
return decoded_data
def reconstruct_img(pic_vec, shape: tuple):
"""reconstruct image from decoded statevector
Args:
pic_vec (np.array): your decoded statevector
shape (tuple): shape that you want the image back in
Returns:
np.array: array of correct image size, ready to show! May need to be transposed.
"""
ldm = shape[0]
holder = np.zeros(shape)
for row in range(shape[0]):
for col in range(shape[1]):
holder[row,col]=pic_vec[row + col * ldm]
return holder
class examples():
def __init__(self) -> None:
"""SImple holder class with some example images
"""
self.space= np.array([[0,0,0,0,1,1,1,0],
[0,0,0,1,1,0,0,0],
[1,0,1,1,1,1,1,0],
[0,1,1,0,1,1,0,1],
[0,0,1,1,1,1,0,1],
[0,0,1,1,1,1,0,0],
[0,0,1,1,1,1,0,1],
[0,1,1,0,1,1,0,1],
[1,0,1,1,1,1,1,0],
[0,0,0,1,1,0,0,0],
[0,0,0,0,1,1,1,0],
[0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0]])
self.invader = np.array([[0,0,0,0,1,1,1,1],
[0,1,1,1,1,1,0,0],
[0,1,0,0,1,1,1,1],
[0,1,0,1,1,1,0,0],
[1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,0,0],
[1,1,0,0,1,1,1,1],
[0,1,0,1,1,1,0,0],
[0,1,1,1,1,1,1,1],
[0,1,1,1,1,1,0,0],
[0,0,0,0,1,1,1,1],
[0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0]])