Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > c5653a35bb94fee65ffe21230992c863 > files > 406

linbox-doc-1.2.1-1.fc15.noarch.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>linbox: examples/dot-product.C</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
  return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}

function addClass(ele,cls) {
  if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}

function removeClass(ele,cls) {
  if (hasClass(ele,cls)) {
    var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
    ele.className=ele.className.replace(reg,' ');
  }
}

function toggleVisibility(linkObj) {
 var base = linkObj.getAttribute('id');
 var summary = document.getElementById(base + '-summary');
 var content = document.getElementById(base + '-content');
 var trigger = document.getElementById(base + '-trigger');
 if ( hasClass(linkObj,'closed') ) {
   summary.style.display = 'none';
   content.style.display = 'block';
   trigger.src = 'open.png';
   removeClass(linkObj,'closed');
   addClass(linkObj,'opened');
 } else if ( hasClass(linkObj,'opened') ) {
   summary.style.display = 'block';
   content.style.display = 'none';
   trigger.src = 'closed.png';
   removeClass(linkObj,'opened');
   addClass(linkObj,'closed');
 }
 return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">linbox</div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
      <li><a href="dirs.html"><span>Directories</span></a></li>
      <li><a href="examples.html"><span>Examples</span></a></li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="headertitle">
<div class="title">examples/dot-product.C</div>  </div>
</div>
<div class="contents">
<p>Timings on dot products of random vectors. </p>
<dl class="author"><dt><b>Author:</b></dt><dd>Bradford Hovinen &lt;<a href="mailto:hovinen@cis.udel.edu">hovinen@cis.udel.edu</a>&gt;</dd></dl>
<p>Use of vectors meeting the <a class="el" href="namespace_lin_box.html" title="Namespace in which all linbox code resides.">LinBox</a> dense and sparse vector archetypes is illustrated and their dot-product times are benchmarked.</p>
<p>Constructs random vectors and computes their dot product, giving the required time.</p>
<div class="fragment"><pre class="fragment"><span class="comment">/* -*- mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */</span>
<span class="comment">// vim:sts=8:sw=8:ts=8:noet:sr:cino=&gt;s,f0,{0,g0,(0,\:0,t0,+0,=s</span>
<span class="comment">/* -*- mode: C++; style: linux -*- */</span>
<span class="comment">/*</span>
<span class="comment"> * examples/dot-product.C</span>
<span class="comment"> *</span>
<span class="comment"> * Copyright (C) 2002, 2010 Bradford Hovinen &lt;hovinen@cis.udel.edu&gt;</span>
<span class="comment"> *</span>
<span class="comment"> * This file is part of LinBox.</span>
<span class="comment"> *</span>
<span class="comment"> *   LinBox is free software: you can redistribute it and/or modify</span>
<span class="comment"> *   it under the terms of the GNU Lesser General Public License as</span>
<span class="comment"> *   published by the Free Software Foundation, either version 2 of</span>
<span class="comment"> *   the License, or (at your option) any later version.</span>
<span class="comment"> *</span>
<span class="comment"> *   LinBox is distributed in the hope that it will be useful,</span>
<span class="comment"> *   but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<span class="comment"> *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span>
<span class="comment"> *   GNU Lesser General Public License for more details.</span>
<span class="comment"> *</span>
<span class="comment"> *   You should have received a copy of the GNU Lesser General Public</span>
<span class="comment"> *   License along with LinBox.  If not, see</span>
<span class="comment"> *   &lt;http://www.gnu.org/licenses/&gt;.</span>
<span class="comment"> */</span>

<span class="preprocessor">#include &quot;linbox/linbox-config.h&quot;</span>

<span class="preprocessor">#include &lt;iostream&gt;</span>

<span class="preprocessor">#include &quot;<a class="code" href="field_2modular_8h.html" title="A Modular field is a representations of Z/mZ.">linbox/field/modular.h</a>&quot;</span>
<span class="preprocessor">#include &quot;linbox/vector/vector-domain.h&quot;</span>
<span class="preprocessor">#include &quot;<a class="code" href="stream_8h.html" title="Generation of sequences of random vectors.">linbox/vector/stream.h</a>&quot;</span>
<span class="preprocessor">#include &quot;<a class="code" href="commentator_8h.html" title="Reports information to the user.">linbox/util/commentator.h</a>&quot;</span>

<span class="keyword">using namespace </span>LinBox;

<span class="keyword">typedef</span> <a name="_a0"></a><a class="code" href="class_lin_box_1_1_modular_3_01uint32__t_01_4.html" title="Specialization of class Modular for uint32_t element type.">Modular&lt;uint32_t&gt;</a> <a class="code" href="class_lin_box_1_1_modular_3_01uint32__t_01_4.html" title="Specialization of class Modular for uint32_t element type.">Field</a>;

<span class="keywordtype">int</span> main (<span class="keywordtype">int</span> argc, <span class="keywordtype">char</span> **argv)
{
    <span class="comment">// Constants: we are working with an n x n matrix over GF(q)</span>
    <span class="keyword">const</span> <span class="keywordtype">int</span>    n = 10000000;
    <span class="keyword">const</span> <span class="keywordtype">double</span> p = .001;
    <span class="keyword">const</span> <span class="keywordtype">int</span>    q = 32749;


    commentator.<a name="a1"></a>setMaxDepth (1);
    commentator.<a name="a2"></a>setReportStream (std::cout);

    <a class="code" href="class_lin_box_1_1_modular_3_01uint32__t_01_4.html" title="Specialization of class Modular for uint32_t element type.">Field</a> F (q);

    <a name="_a3"></a><a class="code" href="class_lin_box_1_1_random_dense_stream.html" title="Random dense vector stream.">RandomDenseStream&lt;Field, Vector&lt;Field&gt;::Dense</a>&gt; factory1 (F, n);
    <a name="_a4"></a><a class="code" href="class_lin_box_1_1_random_sparse_stream.html" title="Random sparse vector stream.">RandomSparseStream&lt;Field, Vector&lt;Field&gt;::SparseSeq</a>&gt; factory2 (F, p, n);
    <a class="code" href="class_lin_box_1_1_random_sparse_stream.html" title="Random sparse vector stream.">RandomSparseStream&lt;Field, Vector&lt;Field&gt;::SparsePar</a>&gt; factory3 (F, p, n);

    Vector&lt;Field&gt;::Dense v1 (n), v2 (n);
    Vector&lt;Field&gt;::SparseSeq v3;
    Vector&lt;Field&gt;::SparsePar v4;

    factory1 &gt;&gt; v1 &gt;&gt; v2;
    factory2 &gt;&gt; v3;
    factory3 &gt;&gt; v4;

    VectorDomain&lt;Field&gt; VD (F);
    Field::Element res;

    commentator.<a name="a5"></a><a class="code" href="class_lin_box_1_1_commentator.html#a9b3772c898bc20f270af8d75ddc62090" title="Start an activity.">start</a> (<span class="stringliteral">&quot;dense/dense dot product (1)&quot;</span>);
    <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i &lt; 1; i++)
        VD.dot (res, v1, v2);
    commentator.<a name="a6"></a><a class="code" href="class_lin_box_1_1_commentator.html#a3a418a21b882e15baa44fe8bef7aca84" title="Stop an activity.">stop</a> (<span class="stringliteral">&quot;done&quot;</span>);

    commentator.<a class="code" href="class_lin_box_1_1_commentator.html#a9b3772c898bc20f270af8d75ddc62090" title="Start an activity.">start</a> (<span class="stringliteral">&quot;dense/sparse sequence dot product (1000)&quot;</span>);
    <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i &lt; 1000; i++)
        VD.dot (res, v1, v3);
    commentator.<a class="code" href="class_lin_box_1_1_commentator.html#a3a418a21b882e15baa44fe8bef7aca84" title="Stop an activity.">stop</a> (<span class="stringliteral">&quot;done&quot;</span>);

    commentator.<a class="code" href="class_lin_box_1_1_commentator.html#a9b3772c898bc20f270af8d75ddc62090" title="Start an activity.">start</a> (<span class="stringliteral">&quot;dense/sparse parallel dot product (1000)&quot;</span>);
    <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i &lt; 1000; i++)
        VD.dot (res, v1, v4);
    commentator.<a class="code" href="class_lin_box_1_1_commentator.html#a3a418a21b882e15baa44fe8bef7aca84" title="Stop an activity.">stop</a> (<span class="stringliteral">&quot;done&quot;</span>);

    <span class="keywordflow">return</span> 0;
}
</pre></div> </div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Tue Aug 30 2011 for linbox by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>