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
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ rust-version = "1.98"
[dependencies]
tracing = "0.1"
itertools = { version = "0.14", optional = true }
rayon = { version = "1", optional = true }
serde = { version = "1", features = ["derive"] }
bincode = { version = "2", features = ["serde"] }
p3-air = { git = "https://github.com/Plonky3/Plonky3", rev = "3152b14a89067c83775a8076cc262ffc48a1fd7c" }
Expand Down Expand Up @@ -47,7 +48,7 @@ parallel = ["p3-maybe-rayon/parallel"]
# Use the first-party CUDA Goldilocks DFT/LDE backend. Enabling this feature
# requires a CUDA toolkit at build time and an NVIDIA GPU at runtime; the
# default CPU build never invokes nvcc or links the CUDA runtime.
cuda = ["dep:itertools"]
cuda = ["dep:itertools", "dep:rayon"]

# Similar to `release`, but preserves debug info
[profile.dev-ci]
Expand Down
1,109 changes: 1,055 additions & 54 deletions cuda/kernels.cu

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# Pins the Rust toolchain
rustToolchain = fenix.packages.${system}.fromToolchainFile {
file = ./rust-toolchain.toml;
sha256 = "sha256-P30Tm3O7vQAE725YtDCDHGjNrSsfZO4us11UwJGZSJo=";
sha256 = "sha256-p8h3Sl/YRByZfZTAKXdsvF6xEenXKrXSVvpphmZENH4=";
};

craneLib = (crane.mkLib pkgs).overrideToolchain rustToolchain;
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
# The default profile includes rustc, rust-std, cargo, rust-docs, rustfmt and clippy.
profile = "default"
channel = "1.98"
channel = "1.98.1"
Loading