Skip to content

Commit 8c5b690

Browse files
committed
Bump minimum version of CUDA and cuTENSOR
1 parent ec7af8f commit 8c5b690

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "TensorKit"
22
uuid = "07d1fe3e-3e46-537d-9eac-e9e13d0d4cec"
3-
version = "0.16.3"
3+
version = "0.17.0"
44
authors = ["Jutho Haegeman, Lukas Devos"]
55

66
[deps]
@@ -38,7 +38,7 @@ projects = ["test"]
3838

3939
[compat]
4040
Adapt = "4"
41-
CUDA = "5.9"
41+
CUDA = "6"
4242
ChainRulesCore = "1"
4343
Dictionaries = "0.4"
4444
FiniteDifferences = "0.12"
@@ -55,5 +55,5 @@ TensorKitSectors = "0.3.6"
5555
TensorOperations = "5.1"
5656
TupleTools = "1.5"
5757
VectorInterface = "0.4.8, 0.5"
58-
cuTENSOR = "2"
58+
cuTENSOR = "6"
5959
julia = "1.10"

test/cuda/factorizations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ for V in spacelist
373373

374374
d1, d2 = dim(codomain(t)), dim(domain(t))
375375
r = rank(t)
376-
@test r == min(d1, d2)
376+
@test r min(d1, d2)
377377
@test typeof(r) == typeof(d1)
378378
M = left_null(t)
379379
@test @constinferred(rank(M)) + r d1

0 commit comments

Comments
 (0)