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 = "NamedDimsArrays"
uuid = "60cbd0c0-df58-4cb7-918c-6f5607b73fde"
version = "0.14.18"
version = "0.15.0"
authors = ["ITensor developers <support@itensor.org> and contributors"]

[workspace]
Expand Down Expand Up @@ -43,7 +43,7 @@ LinearAlgebra = "1.10"
Mooncake = "0.4.202, 0.5"
Random = "1.10"
SimpleTraits = "0.9.4"
TensorAlgebra = "0.6.12, 0.7"
TensorAlgebra = "0.8"
TupleTools = "1.6"
TypeParameterAccessors = "0.4"
VectorInterface = "0.5"
Expand Down
4 changes: 2 additions & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ path = ".."
Documenter = "1"
ITensorFormatter = "0.2.27"
Literate = "2"
NamedDimsArrays = "0.14"
TensorAlgebra = "0.6, 0.7"
NamedDimsArrays = "0.15"
TensorAlgebra = "0.8"
4 changes: 2 additions & 2 deletions examples/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
path = ".."

[compat]
NamedDimsArrays = "0.14"
TensorAlgebra = "0.6, 0.7"
NamedDimsArrays = "0.15"
TensorAlgebra = "0.8"
1 change: 0 additions & 1 deletion src/NamedDimsArrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ include("namedarray.jl")
include("abstractnamedunitrange.jl")
include("namedunitrange.jl")
include("abstractnameddimsarray.jl")
include("lazynameddimsarray.jl")
include("broadcast.jl")
include("tensoralgebra.jl")
include("linearalgebra.jl")
Expand Down
66 changes: 0 additions & 66 deletions src/lazynameddimsarray.jl

This file was deleted.

7 changes: 0 additions & 7 deletions src/tensoralgebra.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@ using TupleTools: TupleTools
# This layer is used to define derivative rules (to skip differentiating `setdiff`).
dimnames_setdiff(s1, s2) = setdiff(s1, s2)

function TA.add!(
dest::AbstractNamedDimsArray, src::AbstractNamedDimsArray, α::Number, β::Number
)
TA.add!(denamed(dest), denamed(src, dimnames(dest)), α, β)
return dest
end

Base.:*(a1::AbstractNamedDimsArray, a2::AbstractNamedDimsArray) = mul_nameddims(a1, a2)
function mul_nameddims(a1::AbstractArray, a2::AbstractArray)
a_dest, dimnames_dest = TA.contract(
Expand Down
4 changes: 2 additions & 2 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ Combinatorics = "1"
ITensorPkgSkeleton = "0.3.42"
JLArrays = "0.2, 0.3"
Mooncake = "0.4, 0.5"
NamedDimsArrays = "0.14"
NamedDimsArrays = "0.15"
Random = "1.10"
SafeTestsets = "0.1"
StableRNGs = "1"
Suppressor = "0.2"
TensorAlgebra = "0.6, 0.7"
TensorAlgebra = "0.8"
Test = "1.10"
VectorInterface = "0.5"
27 changes: 0 additions & 27 deletions test/test_lazy.jl

This file was deleted.

Loading