SQLite Forum

Can I use the performance chart from https://sqlite.org/cpu.html in an article?
Login

Can I use the performance chart from https://sqlite.org/cpu.html in an article?

(1) By anonymous on 2020-12-08 20:36:04 [link] [source]

Hi,

I'm writing an article on using Cachegrind for performance benchmarking (will be up on https://pythonspeed.com) and was wondering if I could use the graph on that page embedded in my article for illustrative purposes? Linking back to your page of course.

Thanks,

—Itamar Turner-Trauring

(2) By Richard Hipp (drh) on 2020-12-08 20:57:52 in reply to 1 [source]

Yes you may.

The spreadsheet that generated this graph (and which is up-to-date with recent changes) can be downloaded here:

(3) By anonymous on 2020-12-09 15:33:27 in reply to 2 [link] [source]

Thank you! And thank you for coming up with this idea and writing it down for others to find.

Article is up here: https://pythonspeed.com/articles/consistent-benchmarking-in-ci/

Beyond what you do, I am also suggesting people take into account L1 and L3 misses, combined into one number—as someone who is still learning about low-level performance I think it'll be useful for me, at least, to have a single representative number in addition to the details.

—Itamar