Giter Club home page Giter Club logo

Comments (1)

randomir avatar randomir commented on July 30, 2024

You should call close() on Client instance (ex. Connection) as soon as you're done using the client, i.e. as soon as you obtain the result (samples) from SAPI.

Calling close() will release all allocated resources (several thread pools) which would not be garbage collected otherwise, but released to system only on program exit. Not following this rule becomes an issue if multiple (as in dozens) clients are instantiated, each one having its own thread pool.

The preferred way of using the Client is via context manager (refer to examples for details):

with Client(...) as client:
    solver = client.get_solver()
    future = solver.sample_ising(...)
    samples = future.result()

Note that future returned by sampling method on Solver must be resolved before closing the client (and killing thread pool workers), otherwise you will not be able to obtain the results.

from dwave-cloud-client.

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.