Skip to content

rust-leipzig/regex-performance

Repository files navigation

Regex Performance

Build Status

Introduction

Regular expressions are commonly used in pattern search algorithms. This tool is based on the work of John Maddock (See his own regex comparison here) and the sljit project (See their regex comparison here).

Requirements

dependency version
Cmake >=3.0
Ragel 6.9
Python >=3.0
Boost (*2) >=1.57
Pcap >=0.8
Autoconf 2.69 (*)
Automake 1.15 (*)
Autopoint 0.19.7 (*)
Gettext 0.19.7 (*)
Libtool 2.4.6 (*)
Git 2.11.0 (*)

(*) Tested with named version only. Older versions may work too. (*2) Needs boost-regex to be installed as a component

Supported engines

The following regex engines are supported and covered by the tool:

The engines are built from their sources. In the case an installed engine should be used, the corresponding cmake variable INCLUDE_<name> has to be set to system. The configuration script tries to locate the library and uses the library for linking the benchmark. The same variable can be set to disabled to exclude an engine.

The configuration script distinguishes between nightly and other Rust toolchains to enable the SIMD-feature which is currently available in the nightly built only. The SIMD-feature improves the throughput of the regex crate for defined expressions.

Building the tool

The different engines have different requirements which are not described here. Please see the related project documentations.

In the case all depencies are fulfilled, just configure and build the cmake based project:

mkdir build && cd build
cmake ..
make

The make command will build all engines and the test tool regex_perf.

To build the test tool or a library only, call make with corresponding target, i.e.:

make regex_perf

Usage

The test tool calls each engine with a defined set of different regular expression on a given file. The repository contains a ~16Mbyte large text file (3200.txt) which can be used for measuring.

./src/regex_perf -f ./3200.txt

By default, the tool repeats each test 5 times and prints the best time of each test. The overall time to process each regular expression is measured and accounted. The scoring algorithhm distributes the fastest engine 5 points, the second fastest 4 points and so on. The score points help to limit the impact of a slow regular expression eninge test in comparision to the absolut time value.

You can specify a file to write the test results per expression and engine:

./src/regex_perf -f ./3200.txt -o ./results.csv

The test tool writes the results in a csv-compatible format.

Spreadsheet generator

We included a spreadsheet generator for easy visualization of the results. Once you have ran the results and obtained the results.csv file, you can create a spreadsheet with (assuming you are still in the build directory)

python3 ../genspreadsheet.py results.csv

It will save an Excel spreadsheet with the name regex-results-YYYYMMDD-HHMMSS.xlsx in the current directory.

Results

These results were obtained in an AMD Threadripper 3960X (Zen2) at 3.8 GHz running Ubuntu 20.04.5 LTS.

Updated Performance Results