aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* print signal message before exitcatch_abortFlorian Fischer2019-09-301-0/+1
|
* catch SIGSEGV as well; register sa_handlers only if its SIG_DLF beforeFlorian Fischer2019-09-295-31/+40
|
* catch if cmd abortsFlorian Fischer2019-09-293-2/+33
| | | | | | perf stat does not propagate if the measured cmd aborts. To solve thing in a universal way we register a SIGABRT handler which creates the file aborted
* Merge branch 'artifact'Florian Fischer2019-09-2926-475/+448
|\
| * don't prepare fd if it was already preparedFlorian Fischer2019-09-231-0/+3
| |
| * use ArchiveArtifacts for all benchmark resourcesFlorian Fischer2019-09-237-179/+90
| |
| * Add ArchiveArtifactsFlorian Fischer2019-09-225-15/+78
| | | | | | | | | | | | | | ArchiveArtifacts check a downloaded archive against a provided checksum. The Archive is downloaded to cache/<name>/<name>.<format>. The only suported format is tar. ArchiveArtifacts can be used as sources of an Allocator.
| * fix tbbmalloc definitionFlorian Fischer2019-09-222-1/+1
| |
| * fix patchdirartifactFlorian Fischer2019-09-221-2/+3
| | | | | | | | | | The designated patchdir of an Allocator class is located at src/allocators/<class name>
| * add missing patchdirFlorian Fischer2019-09-211-0/+1
| |
| * ignore cache/*Florian Fischer2019-09-211-0/+1
| |
| * replace AllocatorSources with ArtifactsFlorian Fischer2019-09-2116-282/+188
| |
| * add artifactsFlorian Fischer2019-09-212-9/+96
| | | | | | | | | | | | | | | | | | Artifacts are downloadable external ressources. They provide their ressource (vcs commit, extracted archive) using Artifact.provide. GitArtifact download a bare git repository and provides specific commits using worktrees. Use GitArtifact for the linux kernel source
* | remove whitespace and comment global varsFlorian Fischer2019-09-212-2/+8
| |
* | don't measure analyse runsFlorian Fischer2019-09-211-0/+4
| |
* | add verbosity aware system() wrapper to TODOFlorian Fischer2019-09-211-0/+2
|/
* only search for Makefiles in src/Florian Fischer2019-09-211-2/+2
|
* add fd benchmarkFlorian Fischer2019-09-191-0/+104
| | | | | benchmark inspired by this blog post. https://dev.to/sharkdp/an-unexpected-performance-regression-11ai
* add blowup testFlorian Fischer2019-09-193-0/+177
| | | | | Blowup tests the described blowup problem of ptmalloc described in the TCMalloc post.
* add perm substitution for benchmarks with empty argsFlorian Fischer2019-09-191-0/+2
|
* add streamflow allocatorFlorian Fischer2019-09-181-0/+41
|
* add raxml-ng benchmarkFlorian Fischer2019-09-142-3/+123
|
* fix barplots for Ideal_RSSFlorian Fischer2019-09-141-1/+2
|
* fix mysld server after server changeFlorian Fischer2019-09-141-1/+1
|
* store start, end and duration for every benchmarkFlorian Fischer2019-09-141-0/+5
|
* silence cmake on make -sFlorian Fischer2019-09-141-1/+8
|
* improve debug output of Allocator.buildFlorian Fischer2019-09-111-1/+2
|
* don't exit if we fail to prepare a benchmarkFlorian Fischer2019-09-114-18/+12
| | | | | benchmark.prepare should raise an Exception if it encounters an unrecoverable, intolerable error.
* explicitly collect binary versionsFlorian Fischer2019-09-116-4/+21
| | | | | | | There is no generic way to retrieve the version of a binary. Not everyone followes GNU cli guidelines and supports "--version". The larson benchmark for example reads input from stdin when started with "larson --version" blocking the Benchmark.prepare() call.
* abort if there are no allocators to benchmarkFlorian Fischer2019-09-111-0/+4
|
* fix wrong use of benchmark.results["facts"]Florian Fischer2019-09-111-1/+1
|
* port building of redis to pythonFlorian Fischer2019-09-112-20/+52
|
* add build_dir member to Benchmark objectsFlorian Fischer2019-09-111-0/+4
|
* add redis benchmark inspired by mimalloc-benchFlorian Fischer2019-09-113-0/+114
| | | | | | redis is build using a bash script because I wasn't able to build with make alone. TODO: build redis using only a Makefile
* improve server benchmarksFlorian Fischer2019-09-113-23/+62
| | | | | | | servers are now dictionary with two mandatory keys: "name" and "cmd". Optional keys are: * "prepare_cmds": commands are run after a server is started * "shutdown_cmds": commands are run before a server is terminated
* add runs to benchmark factsFlorian Fischer2019-09-111-0/+2
|
* Merge branch 'speedymalloc'Florian Fischer2019-09-113-1/+293
|\
| * fix speedymalloc's size2bin and bin2size functionsFlorian Fischer2019-09-111-19/+24
| |
| * use size information in reallocFlorian Fischer2019-09-091-2/+2
| |
| * simplify cached sizeclassesFlorian Fischer2019-09-091-47/+44
| |
| * add first speedymalloc draftFlorian Fischer2019-09-053-1/+291
| | | | | | | | speedymalloc is a thread-local cached bump pointer allocator
* | ignore src/obj directoryFlorian Fischer2019-09-091-0/+1
| |
* | render whole usage as codeFlorian Fischer2019-09-081-21/+21
| |
* | render usage as codeFlorian Fischer2019-09-081-5/+5
|/
* fix src.util.prefix_cmd_with_abspath for commands without argumentsFlorian Fischer2019-09-041-2/+7
|
* add "time" suffix to realloc time plotFlorian Fischer2019-09-041-1/+2
|
* fix barplot for benchmarks with empty args dictFlorian Fischer2019-09-041-3/+9
|
* rework Benchmark.terminate_subprocess to use Popen.communicateFlorian Fischer2019-09-041-10/+12
| | | | code is inspired by the example in the python3 subprocess documentation
* add reset command to supermalloc definitionFlorian Fischer2019-09-041-1/+2
|
* try to get version of benchmark requirementsFlorian Fischer2019-08-302-1/+15
|