Skip to content
Merged
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
54 changes: 27 additions & 27 deletions site/news/2025-04-07-weekly-progress-summary.md
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
---
title: Weekly Summary - April 7, 2025
title: Weekly Summary April 7, 2025
authors:
- will
tags: [progress, update, weekly]
---

This week, the team continued their efforts in refining the protocol and its simulation capabilities. The team made significant progress in addressing various topics.
This week, the team continued refining the protocol and its simulation capabilities, making significant progress in addressing various topics.

### Simulation improvements

#### Haskell simulation
- Started specification of a new relay protocol for IB header diffusion without body
- Started specifying a new relay protocol for IB header diffusion without the body
- Improved the shared log format by removing redundancies and harmonizing naming
- Added support for extra events required by conformance testing, including `SlotEvent` and `NoBlockEvent`
- Added support for additional events required by conformance testing, including `SlotEvent` and `NoBlockEvent`
- These events can be enabled using the `--conformance-events` flag with `--shared-log-format`.

#### Rust simulation
- Updated traces to match the new standardized trace format
- Fixed a critical bug related to CPU scheduling where nodes were using more cores than allocated.
- Fixed a critical bug in CPU scheduling where nodes were using more cores than allocated.

### Analysis workflow optimization
### Analysis of workflow optimization

The team significantly improved the workflow for analyzing both Haskell and Rust simulations:

- Replaced MongoDB with more efficient `jq` queries using map-reduce operations
- Created reusable library functions for plotting with R
- Revised and streamlined scripts for creating, executing, and analyzing simulations
- Made the Jupyter notebook for analyses more generic and reusable
- Successfully tested the new workflow on tag `leios-2025w15`
- Successfully tested the new workflow on tag `leios-2025w15`.

These improvements will enable faster setup and execution of future simulation experiments, with quicker turnaround times for analysis. During this optimization work, several discrepancies between the Haskell and Rust simulations were identified and documented as GitHub issues for future investigation.

### Edinburgh Workshop Recaps
### Edinburgh workshop recaps

The Edinburgh Workshop documentation has been made available, covering key discussions and decisions:
The Edinburgh workshop documentation has been made available, covering key discussions and decisions:

#### Day 1 Highlights
- Explored ledger design options comparing Labeled UTxOs (Explicit Shards) vs Accounts (Implicit Shards) approaches
- Discussed conformance testing strategies including QuickCheck Dynamic and Trace Verification approaches
- Analyzed critical edge cases for user onboarding and system properties
#### Day 1 highlights
- Explored ledger design options comparing labeled UTXOs (explicit shards) vs accounts (implicit shards) approaches
- Discussed conformance testing strategies including QuickCheck dynamic and trace verification approaches
- Analyzed critical edge cases for user onboarding and system properties.

#### Day 2 Highlights
- Detailed analysis of Leios node costs at different TPS levels
#### Day 2 highlights
- Conducted a detailed analysis of Leios node costs across different TPS levels
- Key findings on resource usage:
- At 10 TPS: 1.8x increase in egress and 6x increase in compute compared to Praos
- At 1K TPS: Significant scaling improvements with better resource efficiency
- Recommendations for potential integration with Peras, particularly for voting mechanism optimization
- Discussion of performance characteristics at both high and low throughput levels

#### Day 3 Highlights
- In-depth discussion of optimistic ledger state references, exploring three main approaches:
1. RB Reference: Highest security but highest latency
2. EB Reference: Balanced approach with medium security and latency
3. EB-DAG: Advanced approach using directed acyclic graph structure
- At 1K TPS: significant scaling improvements with better resource efficiency
- Provided recommendations for potential integration with Peras, particularly to optimize the voting mechanism
- Discussed performance characteristics at both high and low throughput levels.

#### Day 3 highlights
- Held an in-depth discussion on optimistic ledger state references, exploring three main approaches:
1. RB reference: highest security but highest latency
2. EB reference: balanced approach with medium security and latency
3. EB-DAG: advanced approach using directed acyclic graph structure
- Key advantages of the EB-DAG approach:
- Achieves low latency while maintaining security
- Provides strong inclusion guarantees for EBs
- Enables efficient state management and reconstruction
- Creates complete, verifiable chain history
- Implementation considerations for state management and block ordering in the EB-DAG approach
- Creates a complete, verifiable chain history
- Discussed implementation considerations for state management and block ordering under the EB-DAG model.

For detailed information, see the full workshop recaps in the [Leios documentation](https://github.com/input-output-hk/ouroboros-leios/tree/main/docs/workshop).
For more information, please see the full workshop recaps in the [Leios documentation](https://github.com/input-output-hk/ouroboros-leios/tree/main/docs/workshop).
Loading