view ext/DiffinitiveSparseArraysExt.jl @ 1726:471a948cd2b2 rename_module

Rename project from Sbplib to Diffinitive
author Vidar Stiernström <vidar.stiernstrom@gmail.com>
date Sat, 07 Sep 2024 12:11:53 -0700
parents ext/SbplibSparseArraysExt.jl@8787b2f9f5f8
children
line wrap: on
line source

module DiffinitiveSparseArraysExt

using Diffinitive
using Diffinitive.LazyTensors

using SparseArrays
using Tokens

"""
    sparse(t::LazyTensor)

The sparse matrix representation of `t`.

If `L` is a `LazyTensor` and `v` a tensor, then `A = sparse(L)` is constructed
so that `A*reshape(v,:) == reshape(L*v,:)`.
"""
function SparseArrays.sparse(t::LazyTensor)
    v = ArrayToken(:v, prod(domain_size(t)))

    v̄ = reshape(v,domain_size(t)...)
    tv = reshape(t*v̄, :)
    return Tokens._to_matrix(tv, prod(range_size(t)), prod(domain_size(t)))
end

end