1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<!-- $Id: configuration.shtml 84656 2009-03-01 07:37:10Z johnnyw $ -->
<TITLE>Configuration</TITLE>
<LINK href="Stats.css" rel="stylesheet" type="text/css">
</HEAD>
<BODY>
<!--#include file="navigation.html"-->
<P>All the experiments run the system described below.
The machine is running Linux
(<!--#include file="data/linuxversion.txt"-->),
and we use GCC (<!--#include file="data/gccversion.txt"-->),
to compile ACE+TAO, with static libraries
and optimizations enabled.
</P>
<TABLE border="2">
<!-- <THEAD>
<TR><TH>Name</TH><TH>Obtained Using</TH></TR>
<TR><TH colspan="2">Details</TH></TR>
</THEAD>
-->
<TBODY>
<TR><TD>ACE+TAO Configuration</TD><TD>config.h</TD></TR>
<TR><TD colspan="2">
<PRE>
<!--#include file="data/config.h.txt"-->
</PRE>
</TD>
</TR>
<TR><TD>ACE+TAO Configuration</TD><TD>platform_macros.GNU</TD></TR>
<TR><TD colspan="2">
<PRE>
<!--#include file="data/platform_macros.GNU.txt"-->
</PRE>
</TD>
</TR>
</TR>
<TR><TD>ACE+TAO Configuration</TD><TD>default.features</TD></TR>
<TR><TD colspan="2">
<PRE>
<!--#include file="data/default.features.txt"-->
</PRE>
</TD>
</TR>
<TR><TD>CPU Information</TD><TD>/proc/cpuinfo</TD></TR>
<TR><TD colspan="2">
<PRE>
<!--#include file="data/cpuinfo.txt"-->
</PRE>
</TD>
</TR>
<TR><TD>Available Memory</TD><TD>/proc/meminfo</TD></TR>
<TR><TD colspan="2">
<PRE>
<!--#include file="data/meminfo.txt"-->
</PRE>
</TD>
</TR>
<TR><TD>OS Version</TD><TD>uname -a</TD></TR>
<TR><TD colspan="2">
<PRE>
<!--#include file="data/uname.txt"-->
</PRE>
</TD>
</TR>
<TR><TD>Compiler Version</TD><TD>gcc -v</TD></TR>
<TR><TD colspan="2">
<PRE>
<!--#include file="data/gcc.txt"-->
</PRE>
</TD>
</TR>
<TR><TD>Library Version</TD><TD>/lib/libc.so.6</TD></TR>
<TR><TD colspan="2">
<PRE>
<!--#include file="data/libc.txt"-->
</PRE>
</TD>
</TR>
</TBODY>
</TABLE>
<!--#include file="footer.html"-->
</BODY>
</HTML>
|