Problem This is a follow-up from: Reversing a domain name string in Java There are a number of ways of […]
Tag: benchmarking
Timing word-searching code in Python
Problem I’m using a linear search as a spell checker. I need to time my code to get averages as […]
Is this a reasonable way to test/compare javascript loop speeds?
Problem I’m playing around with understanding array looping speed. I’m trying to make the contenders equivalent and close to realistic. […]
Simple micro-benchmarking library
Problem I’m working on a simple micro-benchmarking library in Java. This library makes it easy to benchmark multiple reference implementations. […]
Measuring method execution time
Problem I want to easily measure method’s execution time. Of course instead of doing something like this: var timer = […]
Micro-Benchmark framework
Problem Performance benchmarking small functions in Java is notoriously difficult, and there are a number of tools out there to […]
Benchmarking String splitting – follow-up
Problem This is a follow-up from: Reversing a domain name string in Java There are a number of ways of […]
A simple Java class for implementing code stop watches
Problem (The next iteration: A simple Java class for implementing code stop watches – follow-up) Here is my attempt at […]
Abstract graphing-and-timing functions
Problem I like to use timeit to measure performance of small, and sometimes big, functions. However it can be uncertain […]
Measure time and space requirements of different Python containers
Problem I was actually kind of bored and since I’m studying some Python data structures I decided to make some […]
- 1
- 2