rich7420 commented on issue #623: URL: https://github.com/apache/mahout/issues/623#issuecomment-3526247974
Agree , the definition should be modified. https://github.com/apache/mahout/blob/7032fa9e079ee9f7b026e8155153c3b59aac93c1/qumat/cirq_backend.py#L149 ``` circuit.append(cirq.rz(lambd).on(qubit)) circuit.append(cirq.ry(phi).on(qubit)) circuit.append(cirq.rx(theta).on(qubit)) ``` to ``` circuit.append(cirq.rz(lambd).on(qubit)) circuit.append(cirq.ry(theta).on(qubit)) circuit.append(cirq.rz(phi).on(qubit)) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
