Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: v1.2.0-rc.2 #1438

Merged
merged 8 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from 7 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
48 changes: 24 additions & 24 deletions Cargo.lock

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

46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "1.2.0-rc1"
version = "1.2.0-rc2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/succinctlabs/sp1"
Expand Down Expand Up @@ -48,28 +48,28 @@ debug-assertions = true

[workspace.dependencies]
# sp1
sp1-build = { path = "crates/build", version = "1.2.0-rc1" }
sp1-cli = { path = "crates/cli", version = "1.2.0-rc1", default-features = false }
sp1-core-machine = { path = "crates/core/machine", version = "1.2.0-rc1" }
sp1-core-executor = { path = "crates/core/executor", version = "1.2.0-rc1" }
sp1-curves = { path = "crates/curves", version = "1.2.0-rc1" }
sp1-derive = { path = "crates/derive", version = "1.2.0-rc1" }
sp1-eval = { path = "crates/eval", version = "1.2.0-rc1" }
sp1-helper = { path = "crates/helper", version = "1.2.0-rc1", default-features = false }
sp1-primitives = { path = "crates/primitives", version = "1.2.0-rc1" }
sp1-prover = { path = "crates/prover", version = "1.2.0-rc1" }
sp1-recursion-compiler = { path = "crates/recursion/compiler", version = "1.2.0-rc1" }
sp1-recursion-core = { path = "crates/recursion/core", version = "1.2.0-rc1", default-features = false }
sp1-recursion-core-v2 = { path = "crates/recursion/core-v2", version = "1.2.0-rc1", default-features = false }
sp1-recursion-derive = { path = "crates/recursion/derive", version = "1.2.0-rc1", default-features = false }
sp1-recursion-gnark-ffi = { path = "crates/recursion/gnark-ffi", version = "1.2.0-rc1", default-features = false }
sp1-recursion-program = { path = "crates/recursion/program", version = "1.2.0-rc1", default-features = false }
sp1-recursion-circuit = { path = "crates/recursion/circuit", version = "1.2.0-rc1", default-features = false }
sp1-sdk = { path = "crates/sdk", version = "1.2.0-rc1" }
sp1-cuda = { path = "crates/cuda", version = "1.2.0-rc1" }
sp1-stark = { path = "crates/stark", version = "1.2.0-rc1" }
sp1-lib = { path = "crates/zkvm/lib", version = "1.2.0-rc1", default-features = false }
sp1-zkvm = { path = "crates/zkvm/entrypoint", version = "1.2.0-rc1", default-features = false }
sp1-build = { path = "crates/build", version = "1.2.0-rc2" }
sp1-cli = { path = "crates/cli", version = "1.2.0-rc2", default-features = false }
sp1-core-machine = { path = "crates/core/machine", version = "1.2.0-rc2" }
sp1-core-executor = { path = "crates/core/executor", version = "1.2.0-rc2" }
sp1-curves = { path = "crates/curves", version = "1.2.0-rc2" }
sp1-derive = { path = "crates/derive", version = "1.2.0-rc2" }
sp1-eval = { path = "crates/eval", version = "1.2.0-rc2" }
sp1-helper = { path = "crates/helper", version = "1.2.0-rc2", default-features = false }
sp1-primitives = { path = "crates/primitives", version = "1.2.0-rc2" }
sp1-prover = { path = "crates/prover", version = "1.2.0-rc2" }
sp1-recursion-compiler = { path = "crates/recursion/compiler", version = "1.2.0-rc2" }
sp1-recursion-core = { path = "crates/recursion/core", version = "1.2.0-rc2", default-features = false }
sp1-recursion-core-v2 = { path = "crates/recursion/core-v2", version = "1.2.0-rc2", default-features = false }
sp1-recursion-derive = { path = "crates/recursion/derive", version = "1.2.0-rc2", default-features = false }
sp1-recursion-gnark-ffi = { path = "crates/recursion/gnark-ffi", version = "1.2.0-rc2", default-features = false }
sp1-recursion-program = { path = "crates/recursion/program", version = "1.2.0-rc2", default-features = false }
sp1-recursion-circuit = { path = "crates/recursion/circuit", version = "1.2.0-rc2", default-features = false }
sp1-sdk = { path = "crates/sdk", version = "1.2.0-rc2" }
sp1-cuda = { path = "crates/cuda", version = "1.2.0-rc2" }
sp1-stark = { path = "crates/stark", version = "1.2.0-rc2" }
sp1-lib = { path = "crates/zkvm/lib", version = "1.2.0-rc2", default-features = false }
sp1-zkvm = { path = "crates/zkvm/entrypoint", version = "1.2.0-rc2", default-features = false }

# p3
p3-air = "0.1.3-succinct"
Expand Down
5 changes: 5 additions & 0 deletions crates/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0-rc2](https://github.com/succinctlabs/sp1/compare/sp1-cli-v1.2.0-rc1...sp1-cli-v1.2.0-rc2) - 2024-08-29

### Other
- update Cargo.lock dependencies

## [1.1.0](https://github.com/succinctlabs/sp1/compare/sp1-cli-v1.0.1...sp1-cli-v1.1.0) - 2024-08-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/core/executor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0-rc1](https://github.com/succinctlabs/sp1/releases/tag/sp1-core-executor-v1.2.0-rc1) - 2024-08-23
## [1.2.0-rc.1](https://github.com/succinctlabs/sp1/releases/tag/sp1-core-executor-v1.2.0-rc1) - 2024-08-23

### Added

Expand Down
1 change: 1 addition & 0 deletions crates/core/executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ mod report;
mod state;
pub mod subproof;
pub mod syscalls;
mod utils;

pub use context::*;
pub use executor::*;
Expand Down
17 changes: 9 additions & 8 deletions crates/core/executor/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ use crate::{
events::MemoryRecord,
record::{ExecutionRecord, MemoryAccessRecord},
syscalls::SyscallCode,
utils::{deserialize_hashmap_as_vec, serialize_hashmap_as_vec},
ExecutorMode,
};

Expand All @@ -39,18 +40,18 @@ pub struct ExecutionState {

/// The memory which instructions operate over. Values contain the memory value and last shard
/// + timestamp that each memory address was accessed.
// #[serde(
// serialize_with = "serialize_hashmap_as_vec",
// deserialize_with = "deserialize_hashmap_as_vec"
// )]
#[serde(
serialize_with = "serialize_hashmap_as_vec",
deserialize_with = "deserialize_hashmap_as_vec"
)]
pub memory: HashMap<u32, MemoryRecord, BuildNoHashHasher<u32>>,

/// Uninitialized memory addresses that have a specific value they should be initialized with.
/// SyscallHintRead uses this to write hint data into uninitialized memory.
// #[serde(
// serialize_with = "serialize_hashmap_as_vec",
// deserialize_with = "deserialize_hashmap_as_vec"
// )]
#[serde(
serialize_with = "serialize_hashmap_as_vec",
deserialize_with = "deserialize_hashmap_as_vec"
)]
pub uninitialized_memory: HashMap<u32, u32, BuildNoHashHasher<u32>>,

/// A stream of input values (global to the entire program).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::collections::HashMap;
use hashbrown::HashMap;

use nohash_hasher::BuildNoHashHasher;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
Expand Down
2 changes: 1 addition & 1 deletion crates/core/machine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0-rc1](https://github.com/succinctlabs/sp1/releases/tag/sp1-core-machine-v1.2.0-rc1) - 2024-08-23
## [1.2.0-rc.1](https://github.com/succinctlabs/sp1/releases/tag/sp1-core-machine-v1.2.0-rc1) - 2024-08-23

### Added

Expand Down
2 changes: 0 additions & 2 deletions crates/core/machine/src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ mod logger;
#[cfg(any(test, feature = "programs"))]
mod programs;
mod prove;
mod serde;
mod span;
mod tracer;

pub use buffer::*;
pub use logger::*;
pub use prove::*;
pub use serde::*;
use sp1_curves::params::Limbs;
pub use span::*;
pub use tracer::*;
Expand Down
4 changes: 2 additions & 2 deletions crates/cuda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0-rc1](https://github.com/succinctlabs/sp1/releases/tag/sp1-cuda-v1.2.0-rc1) - 2024-08-23
## [1.2.0-rc.1](https://github.com/succinctlabs/sp1/releases/tag/sp1-cuda-v1.2.0-rc1) - 2024-08-23

### Added

- 1.2.0-rc1 cuda prover ([#1353](https://github.com/succinctlabs/sp1/pull/1353))
- 1.2.0-rc.1 cuda prover ([#1353](https://github.com/succinctlabs/sp1/pull/1353))

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion crates/curves/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0-rc1](https://github.com/succinctlabs/sp1/releases/tag/sp1-curves-v1.2.0-rc1) - 2024-08-23
## [1.2.0-rc.1](https://github.com/succinctlabs/sp1/releases/tag/sp1-curves-v1.2.0-rc1) - 2024-08-23

### Other

Expand Down
Loading
Loading