Giter Site home page Giter Site logo

Comments (5)

albi3ro avatar albi3ro commented on July 20, 2024

Thanks for opening this issue.

When trying it out locally, I get True for both master and v0.36.0, the latest release. But I do get False for version v0.35.0. We changed our system for representing arithmetic observables in v0.36.0.

Would you mind posting type(hamiltonian) and it's contents?

def ground_state(j1, j2):
    
    hamiltonian = 0
    
    for i in range(nqubits):
        hamiltonian += Z(i)
        hamiltonian -= j1 * X(i) @ X((i+1)%nqubits)
        hamiltonian -= j2 * X((i-1)%nqubits) @ Z(i) @ X((i+1)%nqubits)

    print(type(hamiltonian))
    print(hamiltonian)
    ham_matrix = qml.matrix(hamiltonian)
    _, eigvecs = jnp.linalg.eigh(ham_matrix)
    
    return eigvecs[:,0]

from pennylane.

erikrecio avatar erikrecio commented on July 20, 2024

Seems like the new version fixes it! The types of hamiltonians before were different (from vmap to direct calling). Now they are both <class 'pennylane.ops.op_math.sum.Sum'>. The issues I was having seem to be fixed. Thanks for the quick answer!

from pennylane.

albi3ro avatar albi3ro commented on July 20, 2024

Also, with the latest release, you can directly create qml.X ,qml.Y, qml.Z and qml.I.

from pennylane.

albi3ro avatar albi3ro commented on July 20, 2024

Sorry. one last thing to mention, you may also want to do ham_matrix = qml.matrix(hamiltonian, wire_order=(0,1,2,3)). The new Sum operator gets it's wires from order of occurance.

from pennylane.

erikrecio avatar erikrecio commented on July 20, 2024

Great, I'll take a look. Thanks!

from pennylane.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.