Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "SparseArraysBase"
uuid = "0d5efcca-f356-4864-8770-e1ed8d78f208"
version = "0.10.4"
version = "0.10.5"
authors = ["ITensor developers <support@itensor.org> and contributors"]

[workspace]
Expand Down Expand Up @@ -35,5 +35,5 @@ LinearAlgebra = "1.10"
MapBroadcast = "0.1.5"
Random = "1.10"
SparseArrays = "1.10"
TensorAlgebra = "0.14"
TensorAlgebra = "0.15"
julia = "1.10"
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ SparseArrays = "1.10"
SparseArraysBase = "0.10"
StableRNGs = "1.0.2"
Suppressor = "0.2.8"
TensorAlgebra = "0.14"
TensorAlgebra = "0.15"
Test = "<0.0.1, 1"
4 changes: 2 additions & 2 deletions test/test_tensoralgebraext.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using SparseArrays: SparseMatrixCSC, findnz, nnz
using SparseArraysBase:
SparseMatrixDOK, eachstoredindex, isstored, sparsezeros, storedlength
using TensorAlgebra: contract, matricize
using TensorAlgebra: contract, matricizeperm
using Test: @test, @testset

@testset "TensorAlgebraExt (eltype = $elt)" for elt in (Float32, ComplexF64)
Expand All @@ -10,7 +10,7 @@ using Test: @test, @testset
a[2, 1, 2] = 2

# matricize
m = matricize(a, (1, 3), (2,))
m = matricizeperm(a, (1, 3), (2,))
@test m isa SparseMatrixCSC{elt}
@test nnz(m) == 2
@test isstored(m, 1, 1)
Expand Down
Loading