Skip to content

fix(profiling): upgrade echion to pick up performance fixes #13230

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

Merged
merged 8 commits into from
Apr 21, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ endif()

# Add echion
set(ECHION_COMMIT
"0876677add34925dbb5beaa7048226fabaddd0df" # https://github.com/P403n1x87/echion/commit/0876677add34925dbb5beaa7048226fabaddd0df
"6ebe7dddb604aa97e89f072c0fc65c9785e023a0" # https://github.com/P403n1x87/echion/commit/6ebe7dddb604aa97e89f072c0fc65c9785e023a0
CACHE STRING "Commit hash of echion to use")
FetchContent_Declare(
echion
Expand Down
11 changes: 11 additions & 0 deletions releasenotes/notes/prof-perf-echion-bbb657265d18148c.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
fixes:
- |
profiling: Upgrades echion to pick up fixes which enables the stack sampler
to avoid extra calls to ``process_vm_readv()`` syscalls for Python frame
objects for Python versions 3.11+.
upgrade:
- |
profiling: Upgrades echion, improving the performance of stack sampler by
replacing proc filesystem reads with ``clock_gettime()``.

Loading