Skip to content

Commit 99513c3

Browse files
authored
[BlockSparseArrys] Fix nested slicing in Julia 1.11 (#1575)
* [BlockSparseArrys] Fix nested slicing in Julia 1.11 * [NDTensors] Bump to v0.3.60
1 parent 49c1202 commit 99513c3

File tree

3 files changed

+21
-28
lines changed

3 files changed

+21
-28
lines changed

NDTensors/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NDTensors"
22
uuid = "23ae76d9-e61a-49c4-8f12-3f1a16adf9cf"
33
authors = ["Matthew Fishman <[email protected]>"]
4-
version = "0.3.59"
4+
version = "0.3.60"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"

NDTensors/src/lib/BlockSparseArrays/src/BlockArraysExtensions/BlockArraysExtensions.jl

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ struct NonBlockedArray{T,N,Array<:AbstractArray{T,N}} <: AbstractArray{T,N}
4242
end
4343
Base.size(a::NonBlockedArray) = size(a.array)
4444
Base.getindex(a::NonBlockedArray{<:Any,N}, I::Vararg{Integer,N}) where {N} = a.array[I...]
45+
# Views of `NonBlockedArray`/`NonBlockedVector` are eager.
46+
# This fixes an issue in Julia 1.11 where reindexing defaults to using views.
47+
# TODO: Maybe reconsider this design, and allows views to work in slicing.
48+
Base.view(a::NonBlockedArray, I...) = a[I...]
4549
BlockArrays.blocks(a::NonBlockedArray) = SingleBlockView(a.array)
4650
const NonBlockedVector{T,Array} = NonBlockedArray{T,1,Array}
4751
NonBlockedVector(array::AbstractVector) = NonBlockedArray(array)
@@ -81,6 +85,9 @@ function Base.getindex(
8185
)
8286
return i
8387
end
88+
# Views of `BlockIndices` are eager.
89+
# This fixes an issue in Julia 1.11 where reindexing defaults to using views.
90+
Base.view(S::BlockIndices, i) = S[i]
8491

8592
# Used in indexing such as:
8693
# ```julia

NDTensors/src/lib/BlockSparseArrays/test/test_basics.jl

+13-27
Original file line numberDiff line numberDiff line change
@@ -691,31 +691,21 @@ using .NDTensorsTestUtils: devices_list, is_supported_eltype
691691
c = @view b[4:8, 4:8]
692692
@test c isa SubArray{<:Any,<:Any,<:BlockSparseArray}
693693
@test size(c) == (5, 5)
694-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
695-
@test block_nstored(c) == 2 broken = VERSION > v"1.11-"
694+
@test block_nstored(c) == 2
696695
@test blocksize(c) == (2, 2)
697696
@test blocklengths.(axes(c)) == ([2, 3], [2, 3])
698-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
699-
@test size(c[Block(1, 1)]) == (2, 2) broken = VERSION v"1.11-"
700-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
701-
@test c[Block(1, 1)] == a[Block(2, 2)[2:3, 2:3]] broken = VERSION v"1.11-"
702-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
703-
@test size(c[Block(2, 2)]) == (3, 3) broken = VERSION v"1.11-"
704-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
705-
@test c[Block(2, 2)] == a[Block(1, 1)[1:3, 1:3]] broken = VERSION v"1.11-"
706-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
707-
@test size(c[Block(2, 1)]) == (3, 2) broken = VERSION v"1.11-"
708-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
709-
@test iszero(c[Block(2, 1)]) broken = VERSION v"1.11-"
710-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
711-
@test size(c[Block(1, 2)]) == (2, 3) broken = VERSION v"1.11-"
712-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
713-
@test iszero(c[Block(1, 2)]) broken = VERSION v"1.11-"
697+
@test size(c[Block(1, 1)]) == (2, 2)
698+
@test c[Block(1, 1)] == a[Block(2, 2)[2:3, 2:3]]
699+
@test size(c[Block(2, 2)]) == (3, 3)
700+
@test c[Block(2, 2)] == a[Block(1, 1)[1:3, 1:3]]
701+
@test size(c[Block(2, 1)]) == (3, 2)
702+
@test iszero(c[Block(2, 1)])
703+
@test size(c[Block(1, 2)]) == (2, 3)
704+
@test iszero(c[Block(1, 2)])
714705

715706
x = randn(elt, 3, 3)
716707
c[Block(2, 2)] = x
717-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
718-
@test c[Block(2, 2)] == x broken = VERSION v"1.11-"
708+
@test c[Block(2, 2)] == x
719709
@test a[Block(1, 1)[1:3, 1:3]] == x
720710

721711
a = BlockSparseArray{elt}([2, 3], [3, 4])
@@ -776,17 +766,13 @@ using .NDTensorsTestUtils: devices_list, is_supported_eltype
776766
@test copy(b) == a[J, J]
777767
@test blocksize(b) == (2, 2)
778768
@test blocklengths.(axes(b)) == ([4, 4], [4, 4])
779-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
780-
@test b[Block(1, 1)] == Array(a)[[7, 8, 5, 6], [7, 8, 5, 6]] broken =
781-
VERSION v"1.11-"
769+
@test b[Block(1, 1)] == Array(a)[[7, 8, 5, 6], [7, 8, 5, 6]]
782770
c = @views b[Block(1, 1)][2:3, 2:3]
783771
@test c == Array(a)[[8, 5], [8, 5]]
784-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
785-
@test copy(c) == Array(a)[[8, 5], [8, 5]] broken = VERSION v"1.11-"
772+
@test copy(c) == Array(a)[[8, 5], [8, 5]]
786773
c = @view b[Block(1, 1)[2:3, 2:3]]
787774
@test c == Array(a)[[8, 5], [8, 5]]
788-
# TODO: Fix in Julia 1.11 (https://github.com/ITensor/ITensors.jl/pull/1539).
789-
@test copy(c) == Array(a)[[8, 5], [8, 5]] broken = VERSION v"1.11-"
775+
@test copy(c) == Array(a)[[8, 5], [8, 5]]
790776
end
791777

792778
# TODO: Add more tests of this, it may

0 commit comments

Comments
 (0)