Skip to content

Commit 9648aca

Browse files
committed
Update to latest const-type-layout and rust-cuda
1 parent 8c04fe9 commit 9648aca

File tree

8 files changed

+28
-47
lines changed

8 files changed

+28
-47
lines changed

Cargo.lock

Lines changed: 15 additions & 34 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 = { git = "https://github.com/juntyr/const-type-layout", rev = "8c7d721" }
18+
const-type-layout = { git = "https://github.com/juntyr/const-type-layout", rev = "e163b36" }
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 = "6739fd0b", features = ["derive"], optional = true }
23+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", features = ["derive"], optional = true }
2424

2525
[target.'cfg(not(target_os = "cuda"))'.dependencies]
26-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "6739fd0b", features = ["derive", "host"], optional = true }
26+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", 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 = { git = "https://github.com/juntyr/const-type-layout", rev = "8c7d721" }
16+
const-type-layout = { git = "https://github.com/juntyr/const-type-layout", rev = "e163b36" }
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 = { git = "https://github.com/juntyr/const-type-layout", rev = "8c7d721" }
13+
const-type-layout = { git = "https://github.com/juntyr/const-type-layout", rev = "e163b36" }
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 = "6739fd0b", features = ["derive"] }
18+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", features = ["derive"] }
1919

2020
[target.'cfg(not(target_os = "cuda"))'.dependencies]
21-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "6739fd0b", features = ["derive", "host"] }
21+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", 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 = { git = "https://github.com/juntyr/const-type-layout", rev = "8c7d721" }
20+
const-type-layout = { git = "https://github.com/juntyr/const-type-layout", rev = "e163b36" }
2121
contracts = "0.6.3"
2222
libm = "0.2"
2323
hashbrown = "0.13"
@@ -31,7 +31,7 @@ rand_core = "0.6"
3131
rand_distr = { version = "0.4", default-features = false, features = [] }
3232

3333
[target.'cfg(target_os = "cuda")'.dependencies]
34-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "6739fd0b", features = ["derive"], optional = true }
34+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", features = ["derive"], optional = true }
3535

3636
[target.'cfg(not(target_os = "cuda"))'.dependencies]
37-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "6739fd0b", features = ["derive", "host"], optional = true }
37+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", features = ["derive", "host"], optional = true }

rustcoalescence/algorithms/cuda/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ thiserror = "1.0"
2323
serde = { version = "1.0", features = ["derive"] }
2424
serde_state = "0.4"
2525
serde_derive_state = "0.4"
26-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "6739fd0b", features = ["host"] }
26+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", features = ["host"] }

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

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

17-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "6739fd0b", features = ["host"] }
17+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", features = ["host"] }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ necsim-core-bond = { path = "../../../../necsim/core/bond" }
1616
necsim-impls-no-std = { path = "../../../../necsim/impls/no-std", features = ["cuda"] }
1717
necsim-impls-cuda = { path = "../../../../necsim/impls/cuda" }
1818

19-
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "6739fd0b", features = ["derive"] }
19+
rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "7a41652", features = ["derive"] }

0 commit comments

Comments
 (0)