<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mc2-scripts-and-benchmarks.git/dis/Makefile, branch sd-vbs</title>
<subtitle>Benchmarks and execution scripts for testing spatial isolation and SMT interference in MC^2</subtitle>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/'/>
<entry>
<title>wip</title>
<updated>2020-10-23T19:36:47+00:00</updated>
<author>
<name>leochanj105</name>
<email>leochanj@live.unc.edu</email>
</author>
<published>2020-10-23T07:46:12+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/commit/?id=010690950e295802405f2d538be859ef21bec155'/>
<id>010690950e295802405f2d538be859ef21bec155</id>
<content type='text'>
wip

wip

wip
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
wip

wip

wip
</pre>
</div>
</content>
</entry>
<entry>
<title>wip</title>
<updated>2020-10-23T06:11:48+00:00</updated>
<author>
<name>leochanj</name>
<email>jbakita@cs.unc.edu</email>
</author>
<published>2020-10-23T06:11:48+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/commit/?id=e0217a963c6c0e0667d41d075038685956bcfacf'/>
<id>e0217a963c6c0e0667d41d075038685956bcfacf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Transform LITMUS-RT support in libextra to imply case-study mode</title>
<updated>2020-10-23T02:51:29+00:00</updated>
<author>
<name>Joshua Bakita</name>
<email>jbakita@cs.unc.edu</email>
</author>
<published>2020-10-23T02:46:39+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/commit/?id=a7c3210215bd1181ae93b23c313941dfb44519fb'/>
<id>a7c3210215bd1181ae93b23c313941dfb44519fb</id>
<content type='text'>
Adds &lt;period&gt; and &lt;criticality level&gt; parameters to benchmarks and
disables cache flushing when compiled with LITMUS. Also fixes build
with LITMUS enabled on yamaha.cs.unc.edu.

Also allows output to be disabled, automatically infers _rt_lock_id,
and allows for a specific pair ID for paired tasks. (The pair ID is
added to all the semaphore and shared memory names, allowing multiple
pairs to run in the system at a time.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds &lt;period&gt; and &lt;criticality level&gt; parameters to benchmarks and
disables cache flushing when compiled with LITMUS. Also fixes build
with LITMUS enabled on yamaha.cs.unc.edu.

Also allows output to be disabled, automatically infers _rt_lock_id,
and allows for a specific pair ID for paired tasks. (The pair ID is
added to all the semaphore and shared memory names, allowing multiple
pairs to run in the system at a time.)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Makefiles so that a custom CFLAGS doesn't break the build</title>
<updated>2020-10-22T04:25:05+00:00</updated>
<author>
<name>Joshua Bakita</name>
<email>jbakita@cs.unc.edu</email>
</author>
<published>2020-10-22T04:24:34+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/commit/?id=4f634d4cd3254dfc68b65e63be32708105032101'/>
<id>4f634d4cd3254dfc68b65e63be32708105032101</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Unify all the versions of extra.h into a single multipurpose header</title>
<updated>2020-10-19T05:09:53+00:00</updated>
<author>
<name>Joshua Bakita</name>
<email>jbakita@cs.unc.edu</email>
</author>
<published>2020-10-19T05:09:53+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/commit/?id=a71fc97fd262e1b5770f827047ea60bbaf38d9a2'/>
<id>a71fc97fd262e1b5770f827047ea60bbaf38d9a2</id>
<content type='text'>
There was previously a huge amount of shared code that had to be
copied back and forth. This should reduce the maintenance burden
by containing all future changes to a single file.

New unified library is fully backwards-compatible but also
introduces and the easy-to-use `for_each_job` macro which
replaces the specific `for(...) START_LOOP ... STOP_LOOP`
format requirement and is generally much harder to abuse.

New unified library also automatically cleans up its shared memory
and semaphores, so this commit also removes the separate
`cleanupSemaphores` binary.

I also found a precursor of `extra.h` written by Sims in
`litmusStuff.h`. This code is only interesting for historical
purposes, so it is also removed in this commit.

This commit also adds debug options to all the Makefiles and
silences rm's complaints about non-existent files in make clean.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There was previously a huge amount of shared code that had to be
copied back and forth. This should reduce the maintenance burden
by containing all future changes to a single file.

New unified library is fully backwards-compatible but also
introduces and the easy-to-use `for_each_job` macro which
replaces the specific `for(...) START_LOOP ... STOP_LOOP`
format requirement and is generally much harder to abuse.

New unified library also automatically cleans up its shared memory
and semaphores, so this commit also removes the separate
`cleanupSemaphores` binary.

I also found a precursor of `extra.h` written by Sims in
`litmusStuff.h`. This code is only interesting for historical
purposes, so it is also removed in this commit.

This commit also adds debug options to all the Makefiles and
silences rm's complaints about non-existent files in make clean.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix DIS coding style by running them all through clang-format</title>
<updated>2020-10-18T00:54:41+00:00</updated>
<author>
<name>Joshua Bakita</name>
<email>jbakita@cs.unc.edu</email>
</author>
<published>2020-10-17T23:07:11+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/commit/?id=1120161286ee5c855b630bccc9e0b37bb8a3ee65'/>
<id>1120161286ee5c855b630bccc9e0b37bb8a3ee65</id>
<content type='text'>
Also fixes a missing header in DISstressmarkRNG.h and the "all"
make target. No functional changes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also fixes a missing header in DISstressmarkRNG.h and the "all"
make target. No functional changes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup `extra.h` for pairs and add option to use that in DIS build</title>
<updated>2020-10-17T19:17:24+00:00</updated>
<author>
<name>Joshua Bakita</name>
<email>jbakita@cs.unc.edu</email>
</author>
<published>2020-10-17T19:17:24+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/commit/?id=97c1685def13be3724a6d025f4e12f236777a911'/>
<id>97c1685def13be3724a6d025f4e12f236777a911</id>
<content type='text'>
Also remove some unused code from the cleanupSemaphores utility
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also remove some unused code from the cleanupSemaphores utility
</pre>
</div>
</content>
</entry>
<entry>
<title>Move the DIS benchmarks up a directory and update hardcoded paths</title>
<updated>2020-10-16T20:55:14+00:00</updated>
<author>
<name>Joshua Bakita</name>
<email>jbakita@cs.unc.edu</email>
</author>
<published>2020-10-16T20:55:14+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/mc2-scripts-and-benchmarks.git/commit/?id=6ea9939e0610a809f6f47d13ec68df00d1ca0afc'/>
<id>6ea9939e0610a809f6f47d13ec68df00d1ca0afc</id>
<content type='text'>
Note that this repo does not attempt to keep a copy of the original
DIS benchmark distributions. UNC real-time has another repo for that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note that this repo does not attempt to keep a copy of the original
DIS benchmark distributions. UNC real-time has another repo for that.
</pre>
</div>
</content>
</entry>
</feed>
