Skip to content

Commit ea38b4b

Browse files
committed
Bump hotfix version 0.11.1
1 parent 7703e4b commit ea38b4b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "TensorKit"
22
uuid = "07d1fe3e-3e46-537d-9eac-e9e13d0d4cec"
33
authors = ["Jutho Haegeman"]
4-
version = "0.11.0"
4+
version = "0.11.1"
55

66
[deps]
77
HalfIntegers = "f0d1745a-41c9-11e9-1dd9-e5d34d218721"

src/tensors/indexmanipulations.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,19 +326,19 @@ function _add_general_kernel!(tdst, tsrc, p, fusiontreetransform, α, β, backen
326326
elseif β != 1
327327
tdst = scale!(tdst, β)
328328
end
329-
329+
330330
# TODO: implement multithreading for general symmetries
331331
# Currently disable multithreading for general symmetries, requires more testing and
332332
# possibly a different approach. Ideally, we'd loop over output blocks in parallel, to
333333
# avoid parallel writing, but this requires the inverse of the fusiontreetransform.
334-
334+
335335
for (f₁, f₂) in fusiontrees(tsrc)
336336
for ((f₁′, f₂′), coeff) in fusiontreetransform(f₁, f₂)
337337
TO.tensoradd!(tdst[f₁′, f₂′], p, tsrc[f₁, f₂], :N, α * coeff, true,
338338
backend...)
339339
end
340340
end
341-
341+
342342
# if Threads.nthreads() > 1
343343
# Threads.@sync for s₁ in sectors(codomain(tsrc)), s₂ in sectors(domain(tsrc))
344344
# _add_sectors!(tdst, tsrc, fusiontreemap, s₁, s₂, α, β, backend...)
@@ -351,7 +351,7 @@ function _add_general_kernel!(tdst, tsrc, p, fusiontreetransform, α, β, backen
351351
# end
352352
# end
353353
# end
354-
354+
355355
return nothing
356356
end
357357

0 commit comments

Comments
 (0)