GithubHelp home page GithubHelp logo

Problem with sparsity pattern about cppad HOT 2 CLOSED

coin-or avatar coin-or commented on July 23, 2024
Problem with sparsity pattern

from cppad.

Comments (2)

bradbell avatar bradbell commented on July 23, 2024

The sparsity pattern 'pattern_in' should be an n2 by n2 identity matrix:
sparse_rc<s_vector> pattern_in;
pattern_in.resize(n2, n2, n2);
for(size_t k = 0; k < n2; k++)
pattern_in.set(k, k, k);

In addition, the pattern passed into sparse_jac_for should be the pattern for the Jacobian:
auto n_sweep = g.sparse_jac_for(
group_max, x2, subset, pattern_jac, coloring, work
);

At the end, I would also print the values as follows:
std::cout << "n_sweep: " << n_sweep << std::endl;
const auto& c = subset.col();
const auto& r = subset.row();
const auto& v = subset.val();
for (int l = 0; l < subset.nnz(); ++l) {
std::cout << "J( " << r[l] << "," << c[l] << ")=" << v[l] << std::endl;
}

It this solves the problem for you, please close this issue.

from cppad.

bradbell avatar bradbell commented on July 23, 2024

I have not head back, so I am closing this issue. Please reopen it with further details if this solution did not work for you.

from cppad.

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.