There was an error fetching the commit references. Please try again later.
PVF: Move PVF workers into separate crate (#7101)
* Move PVF workers into separate crate * Fix indentation * Fix compilation errors * Fix more compilation errors * Rename `worker.rs` files, make host interface to worker more clear * Fix more compilation errors * Fix more compilation errors * Add link to issue * Address review comments * Update comment
Showing
- polkadot/Cargo.lock 56 additions, 27 deletionspolkadot/Cargo.lock
- polkadot/Cargo.toml 3 additions, 2 deletionspolkadot/Cargo.toml
- polkadot/cli/Cargo.toml 3 additions, 2 deletionspolkadot/cli/Cargo.toml
- polkadot/cli/src/command.rs 2 additions, 2 deletionspolkadot/cli/src/command.rs
- polkadot/cli/src/host_perf_check.rs 0 additions, 1 deletionpolkadot/cli/src/host_perf_check.rs
- polkadot/node/core/pvf/Cargo.toml 3 additions, 24 deletionspolkadot/node/core/pvf/Cargo.toml
- polkadot/node/core/pvf/src/artifacts.rs 2 additions, 0 deletionspolkadot/node/core/pvf/src/artifacts.rs
- polkadot/node/core/pvf/src/error.rs 1 addition, 15 deletionspolkadot/node/core/pvf/src/error.rs
- polkadot/node/core/pvf/src/execute/mod.rs 3 additions, 3 deletionspolkadot/node/core/pvf/src/execute/mod.rs
- polkadot/node/core/pvf/src/execute/queue.rs 10 additions, 5 deletionspolkadot/node/core/pvf/src/execute/queue.rs
- polkadot/node/core/pvf/src/execute/worker_intf.rs 26 additions, 157 deletionspolkadot/node/core/pvf/src/execute/worker_intf.rs
- polkadot/node/core/pvf/src/lib.rs 13 additions, 19 deletionspolkadot/node/core/pvf/src/lib.rs
- polkadot/node/core/pvf/src/prepare/mod.rs 28 additions, 7 deletionspolkadot/node/core/pvf/src/prepare/mod.rs
- polkadot/node/core/pvf/src/prepare/pool.rs 3 additions, 3 deletionspolkadot/node/core/pvf/src/prepare/pool.rs
- polkadot/node/core/pvf/src/prepare/queue.rs 1 addition, 1 deletionpolkadot/node/core/pvf/src/prepare/queue.rs
- polkadot/node/core/pvf/src/prepare/worker_intf.rs 5 additions, 191 deletionspolkadot/node/core/pvf/src/prepare/worker_intf.rs
- polkadot/node/core/pvf/src/pvf.rs 11 additions, 6 deletionspolkadot/node/core/pvf/src/pvf.rs
- polkadot/node/core/pvf/src/worker_common.rs 3 additions, 117 deletionspolkadot/node/core/pvf/src/worker_common.rs
- polkadot/node/core/pvf/worker/Cargo.toml 49 additions, 0 deletionspolkadot/node/core/pvf/worker/Cargo.toml
- polkadot/node/core/pvf/worker/bin/puppet_worker.rs 1 addition, 1 deletionpolkadot/node/core/pvf/worker/bin/puppet_worker.rs
Please register or sign in to comment