Hi all, I’m trying to solve codercise F.2.2 in the codebook. My solution looks like this:
dev = qml.device("default.qubit", wires=num_wires)
@qml.qnode(dev)
def two_qubit_QFT(basis_id):
"""A circuit that computes the QFT on two qubits using qml.QubitUnitary.
Args:
basis_id (int): An integer value identifying the basis state to construct.
Returns:
array[complex]: The state of the qubits after the QFT operation.
"""
# Prepare the basis state |basis_id>
bits = [int(x) for x in np.binary_repr(basis_id, width=num_wires)]
qml.BasisState(bits, wires=[0, 1])
##################
# YOUR CODE HERE #
##################
N = 2 ** num_wires
omega = np.exp((2 * (0 + 1j) * np.pi) / N)
fourier_matrix = np.zeros((2 ** num_wires, 2 ** num_wires))
for i in range(N):
for j in range(N):
fourier_matrix[i][j] = omega ** (i * j)
fourier_matrix = fourier_matrix / np.sqrt(N)
qml.QubitUnitary(fourier_matrix, wires=[0, 1])
return qml.state()
When I submit the code: I get an error message that says “Error: ‘import’”. Is this an error in my code, or is there an issue with the codebook itself?