Code Monkey home page Code Monkey logo

cholmodsolve2.jl-609d6d7d-3426-5c8e-a8cc-9e956266946b's Introduction

CholmodSolve2

Build Status

Coverage Status

codecov.io

Package for solving linear systems given an LDLt factorization, with no unnessesary allocations.

This package supplies a wrapper for the solve2 routine in SuiteSparse/CHOLMOD, callable using A_ldiv_B!(c, F, b). The package keeps the necessary workspace variables in memory to avoid new allocations on every solve.

Example:

using CholmodSolve2
m = 400;  n = 500;
A = randn(m, n);
Q = sparse([I A'; A -I]);
x = randn(m+n); y = similar(x);
F = ldltfact(Q)
A_ldiv_B!(y, F, x) # Will do some allocations
A_ldiv_B!(y, F, x) # Should be free of allocations
Q*y โ‰ˆ x

CHOLMOD reallocates workspace variables if they do not have correct dimensions, even if the allocated space is large enough. This package tries to avoid this by manually reshaping the workspace variables before sending them to CHOLMOD.

There is currently no support for complex vectors or sparse RHS.

cholmodsolve2.jl-609d6d7d-3426-5c8e-a8cc-9e956266946b's People

Contributors

mfalt avatar

Watchers

James Cloos avatar

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.