<feed xmlns='http://www.w3.org/2005/Atom'>
<title>allocbench, branch logging</title>
<subtitle>benchmark tool for POSIX memory allocators</subtitle>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/'/>
<entry>
<title>use logging in mysql benchmark</title>
<updated>2019-08-12T19:05:41+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T19:05:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=9def09b57ae59593791fb577049bb7600175120b'/>
<id>9def09b57ae59593791fb577049bb7600175120b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>introduce logging to allocbench</title>
<updated>2019-08-12T19:02:22+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T19:02:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=b9fa969cc2d56ee0e3d170e2b6f8cca3e7e333f1'/>
<id>b9fa969cc2d56ee0e3d170e2b6f8cca3e7e333f1</id>
<content type='text'>
Introduce root logger "allocbench" and add custom level "Status".
Change print_* to logger.* calls.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduce root logger "allocbench" and add custom level "Status".
Change print_* to logger.* calls.
</pre>
</div>
</content>
</entry>
<entry>
<title>don't try to prefix cmd with is already an absolute path</title>
<updated>2019-08-12T18:30:32+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T18:30:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=dd5973823b4af5f73d03a6dd3d00f0c073871eaf'/>
<id>dd5973823b4af5f73d03a6dd3d00f0c073871eaf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>load benchmarks using importlib instead of eval</title>
<updated>2019-08-12T18:25:40+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T18:22:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=dd7a89ba321e06a08af40aa14b29c5e7bdacbdb0'/>
<id>dd7a89ba321e06a08af40aa14b29c5e7bdacbdb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add requirement check for matplotlib and python version &gt;= 3.6</title>
<updated>2019-08-12T18:25:36+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T18:19:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=c66f450aa1af3b7e3097d49bbbb4579735cbccac'/>
<id>c66f450aa1af3b7e3097d49bbbb4579735cbccac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>let the loader load the benchmark not exec</title>
<updated>2019-08-12T17:24:36+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T17:24:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=7714046607622de1a9fe6282e8d8ea12824b27c3'/>
<id>7714046607622de1a9fe6282e8d8ea12824b27c3</id>
<content type='text'>
If the loader calls build/exec the execvp from build/exec is handled
by the system loader.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the loader calls build/exec the execvp from build/exec is handled
by the system loader.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix benchmarks for any glibc version</title>
<updated>2019-08-12T16:21:44+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T16:21:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=f3a2f62edd79deedff5e6ffaa1d2d7a9f3ac5d11'/>
<id>f3a2f62edd79deedff5e6ffaa1d2d7a9f3ac5d11</id>
<content type='text'>
use the included loader of the build glibc instead of LD_LIBRARY_PATH.
Using LD_LIBRARY_PATH probably fails because of incompatible system
loaders and newer glibc versions.
Then we have to reverse the positions of {measure cmd} and {cmd prefix}
in the exec chain because ld loads only ELF binaries and {measure cmd}
could be a script.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
use the included loader of the build glibc instead of LD_LIBRARY_PATH.
Using LD_LIBRARY_PATH probably fails because of incompatible system
loaders and newer glibc versions.
Then we have to reverse the positions of {measure cmd} and {cmd prefix}
in the exec chain because ld loads only ELF binaries and {measure cmd}
could be a script.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix scalloc definition</title>
<updated>2019-08-12T16:08:02+00:00</updated>
<author>
<name>Florian Fischer</name>
<email>florian.fl.fischer@fau.de</email>
</author>
<published>2019-08-12T16:08:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=3556ba5007193bb1bee5577b1e33a82936af7fe5'/>
<id>3556ba5007193bb1bee5577b1e33a82936af7fe5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor changes on TODO</title>
<updated>2019-08-12T13:29:16+00:00</updated>
<author>
<name>Florian Schmaus</name>
<email>flow@cs.fau.de</email>
</author>
<published>2019-08-12T13:29:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=5fffbcde70ce50942dd2e263052c75bb1b9832ec'/>
<id>5fffbcde70ce50942dd2e263052c75bb1b9832ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use "git reset --hard" instead of "git stash"</title>
<updated>2019-08-12T13:26:08+00:00</updated>
<author>
<name>Florian Schmaus</name>
<email>flow@cs.fau.de</email>
</author>
<published>2019-08-12T13:26:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.muhq.space/allocbench/commit/?id=041082cad564ddba3bc55a66a81684ac9d9018b8'/>
<id>041082cad564ddba3bc55a66a81684ac9d9018b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
