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

(opt) lock free DAG #65

Merged
merged 1 commit into from
Mar 25, 2025
Merged

(opt) lock free DAG #65

merged 1 commit into from
Mar 25, 2025

Conversation

AshinGau
Copy link
Collaborator

@AshinGau AshinGau commented Mar 25, 2025

Performance Optimizations: Lock-free DAG & Scheduling Improvements

This PR introduces significant performance optimizations to the DAG execution engine:

Lock-free DAG Dependency Updates

  • Eliminated mutex contention during dependency updates using lock-free DAG implementation
  • Enables fully concurrent dependency resolution

​Atomic-based Scheduler

  • Replaced traditional locks with AtomicUsize-based cursor for scheduling
  • Reduces synchronization overhead in task dispatching

​Priority Execution Optimization

  • Accelerates scheduling of distance-1 execution tasks through fast-path detection
  • Minimizes latency for immediate dependency resolution

Lock-free Continuity Detection

  • Implemented non-blocking ContinuousDetectSet using atomic operations
  • Ensures zero-wait detection of execution continuity

Performance Impact:

These optimizations collectively achieve ​over 30% throughput improvement in task execution workloads, particularly benefiting highly parallel dependency graphs.

@AshinGau AshinGau merged commit 56b6beb into main Mar 25, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant