summaryrefslogtreecommitdiff
path: root/benchmark
Commit message (Collapse)AuthorAgeFilesLines
* Show libxml2 version in benchmark output.Stefan Behnel2021-07-051-1/+2
|
* Revive benchmarks.Stefan Behnel2021-07-042-2/+6
|
* Keep parenthesesHugo2018-08-261-1/+1
|
* Remove redundant parenthesesHugo2018-08-251-6/+6
|
* Remove unused imports.Chris Gavin2017-04-245-10/+4
|
* make io imports unconditionalJakub Wilk2017-03-171-4/+1
| | | | | The compat imports were needed for Python 2.5, which is no longer supported.
* add benchmark for throw-away iteration for searching a specific tagStefan Behnel2013-04-061-0/+4
|
* fix XPath expressions in benchmark and add a new comparisonStefan Behnel2013-04-062-5/+29
|
* add one-at-a-time iteration benchmarkStefan Behnel2013-04-061-0/+4
|
* use .iter() instead of .getiterator() in benchmarksStefan Behnel2013-04-051-12/+12
|
* fix benchmarkStefan Behnel2013-04-051-1/+1
|
* rename StringIO benchmarks to BytesIO (which they now use)Stefan Behnel2013-04-051-4/+4
|
* minor benchmark output tweakStefan Behnel2013-04-051-1/+1
|
* adapt benchmarks to Py3.3Stefan Behnel2013-04-052-50/+82
|
* removed unused importStefan Behnel2011-03-083-3/+0
| | | | | --HG-- branch : trunk
* [svn r3969] r4788@delle: sbehnel | 2008-09-07 19:55:29 +0200scoder2008-09-071-0/+1
| | | | | | | streamlined the _utf8() function (a very common helper function) --HG-- branch : trunk
* [svn r3901] r4639@delle: sbehnel | 2008-07-18 09:23:35 +0200scoder2008-07-181-1/+19
| | | | | | | new benchmarks to compare multiple .iter(tag) loops to an or-ed XPath expression --HG-- branch : trunk
* [svn r3588] r4058@delle: sbehnel | 2008-04-24 15:48:15 +0200scoder2008-04-241-9/+7
| | | | | | | some more benchmark results on text serialisation --HG-- branch : trunk
* [svn r3586] r4056@delle: sbehnel | 2008-04-24 09:55:51 +0200scoder2008-04-241-9/+10
| | | | | | | more reliable benchmark numbers --HG-- branch : trunk
* [svn r3585] r4055@delle: sbehnel | 2008-04-24 09:53:44 +0200scoder2008-04-241-1/+1
| | | | | | | fix benchmark --HG-- branch : trunk
* [svn r3584] r4054@delle: sbehnel | 2008-04-24 07:57:21 +0200scoder2008-04-244-15/+97
| | | | | | | faster benchmark runs: avoid rebuilding trees when the benchmark does not change them --HG-- branch : trunk
* [svn r3581] r4045@delle: sbehnel | 2008-04-23 23:44:28 +0200scoder2008-04-242-9/+10
| | | | | | | changed trees to a somewhat more realistic szenario with smaller XML vocabularies - absolute numbers are no longer comparable to previous benchmarks --HG-- branch : trunk
* [svn r3482] r3854@delle: sbehnel | 2008-03-27 13:46:25 +0100scoder2008-03-271-0/+1
| | | | | | | fix callgrind instrumentation setup in benchmarks --HG-- branch : trunk
* [svn r3430] r3783@delle: sbehnel | 2008-03-14 08:07:45 +0100scoder2008-03-145-11/+22
| | | | | | | benchmark fixes --HG-- branch : trunk
* [svn r3400] r3730@delle: sbehnel | 2008-03-04 22:44:06 +0100scoder2008-03-052-5/+35
| | | | | | | rewrite of 'text' serialiser: fix default encoding, faster .tail adding and 'unicode' encoding --HG-- branch : trunk
* [svn r3204] r3322@delle: sbehnel | 2008-01-25 18:21:09 +0100scoder2008-01-251-0/+6
| | | | | | | benchmark to compare findall() and xpath() --HG-- branch : trunk
* [svn r3142] r3195@delle: sbehnel | 2007-12-29 17:14:16 +0100scoder2007-12-291-0/+3
| | | | | | | benchmark for result-free tree iteration --HG-- branch : trunk
* [svn r3124] r3158@delle: sbehnel | 2007-12-20 17:28:08 +0100scoder2007-12-201-1/+1
| | | | | | | API usage fix --HG-- branch : trunk
* [svn r3122] r3156@delle: sbehnel | 2007-12-20 13:31:26 +0100scoder2007-12-201-4/+4
| | | | | | | prefer locally installed ET/cET in benchmark imports --HG-- branch : trunk
* [svn r3120] r3151@delle: sbehnel | 2007-12-20 11:34:50 +0100scoder2007-12-201-4/+4
| | | | | | | API usage fix --HG-- branch : trunk
* [svn r3048] benchmark on attribute assignmentscoder2007-11-091-0/+10
| | | | | --HG-- branch : trunk
* [svn r2993] fix API usagescoder2007-10-251-1/+1
| | | | | --HG-- branch : trunk
* [svn r2936] findall() benchmark with a longer pathscoder2007-09-281-0/+3
| | | | | --HG-- branch : trunk
* [svn r2935] new benchmarkscoder2007-09-281-0/+3
| | | | | --HG-- branch : trunk
* [svn r2933] iterfind() benchmarks, set_text() fixscoder2007-09-271-0/+15
| | | | | --HG-- branch : trunk
* [svn r2871] benchmark for list(element)scoder2007-09-151-0/+3
| | | | | --HG-- branch : trunk
* [svn r2282] deepcopy with attributesscoder2007-05-091-0/+4
| | | | | --HG-- branch : trunk
* [svn r2245] benchmark for indexed child accessscoder2007-05-031-0/+13
| | | | | --HG-- branch : trunk
* [svn r2233] cleanup in benchmarks, use children where appropriatescoder2007-04-202-20/+28
| | | | | --HG-- branch : trunk
* [svn r2232] cleanupscoder2007-04-201-2/+2
| | | | | --HG-- branch : trunk
* [svn r2231] take minimum time instead of averaging over repeated runsscoder2007-04-201-3/+6
| | | | | --HG-- branch : trunk
* [svn r2230] benchmark fix: remove child iteration overhead from benchmark ↵scoder2007-04-202-57/+93
| | | | | | | loops to restrict timings to the benchmark target --HG-- branch : trunk
* [svn r2213] merged extension_refactoring branchscoder2007-03-291-11/+12
| | | | | --HG-- branch : trunk
* [svn r2199] benchmark both the old and the new way of using extension functionsscoder2007-03-161-1/+17
| | | | | --HG-- branch : trunk
* [svn r2095] support regexps in benchmark selectionscoder2007-02-101-2/+4
| | | | | --HG-- branch : trunk
* [svn r2007] fixes in bench_objectify.py, some more benchmarksscoder2006-10-271-11/+39
| | | | | --HG-- branch : trunk
* [svn r2006] revertedscoder2006-10-271-39/+11
| | | | | --HG-- branch : trunk
* [svn r2005] fixes in bench_objectify.py, some more benchmarksscoder2006-10-271-11/+39
| | | | | --HG-- branch : trunk
* [svn r1994] cleanup in benchmarks, new objectify benchmark classscoder2006-10-262-6/+66
| | | | | --HG-- branch : trunk
* [svn r1926] cleanup in benchmarksscoder2006-09-201-2/+2
| | | | | --HG-- branch : trunk