Skip to content

Commit 0ad71b3

Browse files
committed
Upgrade to latest rust-cuda with syn v2.0
1 parent 6f0bc53 commit 0ad71b3

File tree

8 files changed

+162
-144
lines changed

8 files changed

+162
-144
lines changed

Cargo.lock

Lines changed: 148 additions & 130 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

necsim/core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ cuda = ["rust-cuda"]
1515
necsim-core-maths = { path = "maths" }
1616
necsim-core-bond = { path = "bond" }
1717

18-
const-type-layout = { version = "0.3.1", features = ["derive"] }
18+
const-type-layout = { version = "0.3.2", features = ["derive"] }
1919
contracts = "0.6.3"
2020
serde = { version = "1.0", default-features = false, features = ["derive"] }
2121

2222
[target.'cfg(target_os = "cuda")'.dependencies]
23-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["derive"], optional = true }
23+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["derive"], optional = true }
2424

2525
[target.'cfg(not(target_os = "cuda"))'.dependencies]
26-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["derive", "host"], optional = true }
26+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["derive", "host"], optional = true }

necsim/core/bond/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ default = []
1313
[dependencies]
1414
necsim-core-maths = { path = "../maths" }
1515

16-
const-type-layout = { version = "0.3.1", features = ["derive"] }
16+
const-type-layout = { version = "0.3.2", features = ["derive"] }
1717
serde = { version = "1.0", default-features = false, features = ["derive"] }

necsim/impls/cuda/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ edition = "2021"
1010
[dependencies]
1111
necsim-core = { path = "../../core", features = ["cuda"] }
1212

13-
const-type-layout = { version = "0.3.1", features = ["derive"] }
13+
const-type-layout = { version = "0.3.2", features = ["derive"] }
1414
contracts = "0.6.3"
1515
serde = { version = "1.0", default-features = false, features = ["derive"] }
1616

1717
[target.'cfg(target_os = "cuda")'.dependencies]
18-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["derive"] }
18+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["derive"] }
1919

2020
[target.'cfg(not(target_os = "cuda"))'.dependencies]
21-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["derive", "host"] }
21+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["derive", "host"] }

necsim/impls/no-std/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ necsim-core-maths = { path = "../../core/maths" }
1717
necsim-core-bond = { path = "../../core/bond" }
1818
necsim-partitioning-core = { path = "../../partitioning/core" }
1919

20-
const-type-layout = { version = "0.3.1", features = ["derive"] }
20+
const-type-layout = { version = "0.3.2", features = ["derive"] }
2121
contracts = "0.6.3"
2222
libm = "0.2"
2323
hashbrown = "0.14"
@@ -30,7 +30,7 @@ fnv = { version = "1.0", default-features = false, features = [] }
3030
rand_core = "0.6"
3131

3232
[target.'cfg(target_os = "cuda")'.dependencies]
33-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["derive", "final"], optional = true }
33+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["derive", "final"], optional = true }
3434

3535
[target.'cfg(not(target_os = "cuda"))'.dependencies]
36-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["derive", "final", "host"], optional = true }
36+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["derive", "final", "host"], optional = true }

rustcoalescence/algorithms/cuda/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ thiserror = "1.0"
3333
serde = { version = "1.0", features = ["derive"] }
3434
serde_state = "0.4"
3535
serde_derive_state = "0.4"
36-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["host"] }
36+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["host"] }

rustcoalescence/algorithms/cuda/cpu-kernel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ necsim-impls-no-std = { path = "../../../../necsim/impls/no-std", features = ["c
2424
necsim-impls-cuda = { path = "../../../../necsim/impls/cuda" }
2525
rustcoalescence-algorithms-cuda-gpu-kernel = { path = "../gpu-kernel" }
2626

27-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["host"] }
27+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["host"] }

rustcoalescence/algorithms/cuda/gpu-kernel/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ necsim-impls-no-std = { path = "../../../../necsim/impls/no-std", features = ["c
1717
necsim-impls-cuda = { path = "../../../../necsim/impls/cuda" }
1818

1919
[target.'cfg(target_os = "cuda")'.dependencies]
20-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["derive", "device", "kernel"] }
20+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["derive", "device", "kernel"] }
2121

2222
[target.'cfg(not(target_os = "cuda"))'.dependencies]
23-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "57a16a9", features = ["derive", "kernel"] }
23+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "9059713", features = ["derive", "kernel"] }

0 commit comments

Comments
 (0)