<feed xmlns='http://www.w3.org/2005/Atom'>
<title>evtclib/benches, branch v0.7.1</title>
<subtitle>arcdps EVTC reading/parsing library for Rust</subtitle>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/evtclib/'/>
<entry>
<title>EoD strikes: add benchmarks for the analyzers</title>
<updated>2022-03-31T14:57:21+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2022-03-31T14:57:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/evtclib/commit/?id=af780553850426b0f5e43ae08ac493b1c064153d'/>
<id>af780553850426b0f5e43ae08ac493b1c064153d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>formatting fix</title>
<updated>2021-11-18T17:34:16+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2021-11-18T17:34:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/evtclib/commit/?id=24187066c136a01a9cb688e371ca748e36331e58'/>
<id>24187066c136a01a9cb688e371ca748e36331e58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>clean up parsing benchmarks</title>
<updated>2021-11-18T17:33:35+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2021-11-18T17:33:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/evtclib/commit/?id=a327d9a85a0b51eb677d16e90b4fa15bb34bc00e'/>
<id>a327d9a85a0b51eb677d16e90b4fa15bb34bc00e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add a Throughput to the analyzer benchmarks</title>
<updated>2021-11-18T17:20:55+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2021-11-18T17:20:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/evtclib/commit/?id=e98584dba7de1e4306cf5176a7482cfe9afd2227'/>
<id>e98584dba7de1e4306cf5176a7482cfe9afd2227</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add more benchmarks for analyzers</title>
<updated>2021-11-18T16:18:37+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2021-11-18T16:18:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/evtclib/commit/?id=44a7ff8badf109cf18d3cac29122a8df09966761'/>
<id>44a7ff8badf109cf18d3cac29122a8df09966761</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add a benchmark for evtclib::process</title>
<updated>2020-10-23T12:52:06+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2020-10-23T12:52:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/evtclib/commit/?id=b1b3fe58eb18520c5ce86c2938fb3dc2ac292f23'/>
<id>b1b3fe58eb18520c5ce86c2938fb3dc2ac292f23</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add some basic parsing benchmarks</title>
<updated>2020-10-23T12:41:20+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2020-10-23T12:41:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/evtclib/commit/?id=5bfe77d93315111f80e3b56aee929fc33a14cf1f'/>
<id>5bfe77d93315111f80e3b56aee929fc33a14cf1f</id>
<content type='text'>
This adds some simple benchmarks to test the speed of
evtclib::process_{file,stream}, just so we can quickly assess on a
high-level if changes make a big impact.

I'd like to add some more benchmarks in the future as well, mostly
- on the higher level when we go from RawEvtc to a log, benchmarking the
  process function itself (thus not benchmarking all the byte-twiddling
  deserialization code).
- on the Analyzer level
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds some simple benchmarks to test the speed of
evtclib::process_{file,stream}, just so we can quickly assess on a
high-level if changes make a big impact.

I'd like to add some more benchmarks in the future as well, mostly
- on the higher level when we go from RawEvtc to a log, benchmarking the
  process function itself (thus not benchmarking all the byte-twiddling
  deserialization code).
- on the Analyzer level
</pre>
</div>
</content>
</entry>
</feed>
