GeistHaus
log in · sign up

Linux Performance

brendangregg.com

A collection of documents, slides, and videos about Linux performance, mostly created by Brendan Gregg, and with a focus on performance analysis.

6 pages link to this URL
How I sped up the PNG export in darktable using perf - LIEBERBIBER

I do a lot of photo editing nowadays, mostly for my travel blog over at One Man, One Map. I’ve always had the impression that the PNG export in darktable might be slower than it has to be, but it had become a real issue since I've upgraded my desktop PC to a six-core Ryzen 7 1600X CPU and an NVIDIA GTX 950 GPU.

0 inbound links article en Open SourcePhotography darktablegprofperf
Analyzing PostgreSQL Performance Using Flame Graphs

A flame graph is a graphical representation that helps to quickly understand where a program spends most of its processing time. These graphs are based on sampled information collected by a profiler while the observed software is running. At regular intervals, the profiler captures and stores the current call stack. A flame graph is then generated from this data to provide a visual representation of the functions in which the software spends most of its processing time. This is useful for understanding the characteristics of a program and for improving its performance. This blog post explores the fundamentals of flame graphs and offers a few practical tips on utilizing them to identify and debug performance bottlenecks in PostgreSQL.

0 inbound links article en