Advertisement · 728 × 90

Posts by Arthur Pastel

Excited to have spent some time building this inlining detection. Will come soon with an example use case showing how to leverage this new feature 🤓

5 months ago 1 0 0 0
Preview
Runs just got 2 minutes faster! - Changelog - CodSpeed GitHub Action setup now uses caching to skip redundant package installations, reducing CI time by 1-5 minutes per run.

It's Friday, and all your @codspeed.io runs got 2 minutes faster😎👇
codspeed.io/changelog/20...

6 months ago 4 2 0 1

Excited to have it out! 🎉 This is just the first step toward adaptive instrumentation: get an overview with wall-time profiling, then zoom in with CPU simulation or other instruments to reach instruction-level detail.
This also edges us nearer to real-world sampling in production 👀

6 months ago 3 1 0 0

If you ship Go services and care about latency and cost, this will save you time and nasty surprises in prod!

6 months ago 1 0 0 0

What’s inside:
- Bench patterns that actually measure your handlers, not the harness
- A tiny DummyResponseWriter to kill recorder overhead
- b.Loop() usage with Go 1.24
- Ready-to-use GitHub Action with CodSpeed and codspeed-macro runners
- PR comments + checks to block regressions before merge

6 months ago 1 0 1 0
Benchmarking a Go Gin API - CodSpeed Docs Build a Gin HTTP API, write Golang benchmarks, and run them with CodSpeed in consistent CI environments

🚀🦫 New guide for Gophers: Benchmarking a Gin HTTP API

codspeed.io/docs/guides/...

6 months ago 3 3 1 0

Want to write faster programs?
Start with the backbone of performance: the memory allocator
Last year, @apas.tel took us deep into an often overlooked topic and made it impossible to forget. Watch it again👇🏼

8 months ago 1 1 1 0
Post image

What’s faster in Rust? 🦀 Your instinct says one thing. The benchmark says something else.

@apas.tel and @adriencaccia.bsky.social are bringing a live Rust performance quiz to #EuroRust25. You don’t want to miss it!

🧵1/3

9 months ago 3 2 1 1
Advertisement
Preview
Introducing p99.chat: the assistant for software performance optimization - Changelog - CodSpeed New updates and improvements released to Codspeed.

Learn more: codspeed.io/changelog/20...

10 months ago 1 0 0 0
Video

Announcing p99.chat, the assistant for software performance optimization 🚀

Describe your performance challenge, share your code, and p99 will analyze, instrument, and visualize the results, cutting the traditional setup overhead down to seconds!

10 months ago 4 1 1 2
Post image

We’re at @pyconit.bsky.social with @adriencaccia.bsky.social!
We’ll quizz you on Python performance again tomorrow! See you in room lasagna at 11:45!

10 months ago 1 0 0 0
The Impact of Memory Allocators on Performance: A Deep Dive - Arthur Pastel | EuroRust 2024
The Impact of Memory Allocators on Performance: A Deep Dive - Arthur Pastel | EuroRust 2024 YouTube video by EuroRust

🦀 @apas.tel - The Impact of Memory Allocators on Performance

Memory allocators are often overlooked. But Arthur makes the case that they’re a key lever for performance in Rust. Learn how they work and when to care.

🧵 5/11

📺 Watch: youtu.be/pJ-FRRB5E84

11 months ago 1 1 1 0
Preview
First Class Bazel Support for C++ - Changelog - CodSpeed New updates and improvements released to Codspeed.

We just improved our C++ integration. Now with first-class Bazel support for larger projects!

codspeed.io/changelog/20...

11 months ago 0 0 0 0

We just released support for C++ benchmarks, enabling the use of our google benchmark compatibility layer to measure the performance of C++ codebases!

Learn more: codspeed.io/changelog/20...

1 year ago 0 1 0 0
Preview
Free Plan and Macro Runners Now Globally Available - Changelog - CodSpeed New updates and improvements released to Codspeed.

Now, even small teams and indie devs can get reliable, high-precision performance insights without breaking the bank.

Learn more: codspeed.io/changelog/20...

1 year ago 0 0 0 0
Advertisement
Post image

Super excited about our latest changes to make performance testing more accessible! Two significant changes:

✅ The Free plan now includes private repositories (up to 5 users)
✅ Macro Runners are now globally available (bare-metal ARM64, 16 cores, 32GB RAM) with 120 min/month included for free

1 year ago 0 0 1 0
Preview
Faster Workflows with Sharded Benchmarks - Changelog - CodSpeed New updates and improvements released to Codspeed.

Check it out: codspeed.io/changelog/20...

1 year ago 0 0 0 0
Post image

We now support sharded benchmark execution to provide even faster performance feedback!

1 year ago 2 1 1 0
Preview
GitHub - karlrupp/microprocessor-trend-data: Data repository for my blog series on microprocessor trend data. Data repository for my blog series on microprocessor trend data. - karlrupp/microprocessor-trend-data

Source: https://github.com/karlrupp/microprocessor-trend-data

1 year ago 0 0 0 0
Post image

But physics is catching up. As transistors shrink, heat and power constraints limit clock speed gains. But to keep Moore’s Law going, we stack more cores. GPUs push this further with thousands of parallel cores, mentioning exponential performance increase but omitting the implementation complexity.

1 year ago 0 0 1 0
Post image

Single-core performance gains have largely plateaued. That means no more relying on “free” hardware speed boosts. CPUs haven't stopped improving, but we must actively tap into new architectures. Concurrency, SIMD, and thoughtful optimizations can still unlock impressive speedups.

1 year ago 0 0 1 0

We can expect the same for most compiled languages. Though, when dealing with an interpreted language, this becomes much harder to optimize before any specialization or JIT compilation.

1 year ago 0 0 0 0
Post image

`x * x` generates exactly the same assembly as `x.pow(2)` in Rust and this goes even beyond powers of 2, thanks to LLVM loop unrolling and exponentiation by squaring.

1 year ago 1 0 1 0
CodSpeed showing PR performance improvements between 38% for frozen class to 52% for make_class.

CodSpeed showing PR performance improvements between 38% for frozen class to 52% for make_class.

https://codspeed.io is pretty cool and class creation will be 38–52% faster in attrs 25.2.0

https://github.com/python-attrs/attrs/pull/1407

1 year ago 13 2 3 0
Advertisement

So for VM bytecode instrumentation, external execution path like native FFI calls need specific handling. Just like system calls need specific handing for performance measurement with native binary instrumentation.

1 year ago 0 0 0 0

The big issue with such an approach is that the instrumentation is limited to the interpreter itself while for native binary instrumentation the boundary is system calls and only the user space can be instrumented.

1 year ago 1 0 1 0

Kudos to Nikolai Vazquez for building such an intuitive benchmarking framework. We hope to contribute as much as we can to the project!

1 year ago 0 0 0 0
Preview
Divan Support for Rust - Changelog - CodSpeed New updates and improvements released to Codspeed.

We just released a Divan 🛋️ integration. So far, this is the best developer experience you can hope for building performance tests in Rust 🦀!
codspeed.io/changelog/20...

1 year ago 4 2 1 0

Yes. First time but it was quite simple getting started

1 year ago 1 0 1 0
Post image

Started hacking on a small TUI for managing EC2 instances and SSH connections. Can’t wait to ditch AWS Console's clunkiness.

1 year ago 0 0 1 0