<?php 
#TODO this is ugly...
  $level = 1; // can be automated - later
  $rel = "./";
  for($i=0;$i<$level;$i++)
    $rel = "../".$rel;
  
	include($rel."include.php");

	f_html_header("Publications of Torsten Hoefler", $level, "", "<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js\"></script><link rel='stylesheet' href='pubs.css'/><script src='pubs.js' type='text/javascript'></script>");

  include("./pubs.php");

  include("./funcs.php");

  include("pubs_search.php");
?> 

<?php
  include("pubs_list.php");

if (!isset($_GET['pub'])) {
?>

  
<div style="color:#777777">Copyright Notice:</div>
<p style="background-color:#777777; color:#eeeeee">
The documents distributed by this server have been provided by the 
contributing authors as a means to ensure timely dissemination of
scholarly and technical work on a noncommercial basis. Copyright and all
rights therein are maintained by the authors or by other copyright
holders, notwithstanding that they have offered their works here
electronically.  It is understood that all persons copying this
information will adhere to the terms and constraints invoked by each
author's copyright. These works may not be reposted without the explicit
permission of the copyright holder. 
</p>

<P>
Citation Listings: 
<A HREF="http://www.informatik.uni-trier.de/~ley/db/indices/a-tree/h/Hoefler:Torsten.html">DBLP</A>
&nbsp;
<A HREF="http://liinwww.ira.uka.de/csbib?query=%2Bau:HoeflerT*+%2Bau:Hoefler&maxnum=200&sort=year">CSB</A>
&nbsp;
<A HREF="http://scholar.google.com/citations?user=DdBvcBEAAAAJ">Google Scholar</A>
&nbsp;
<A HREF="http://portal.acm.org/author_page.cfm?id=81490653040">ACM Digital Librar</A><A href="http://dl.acm.org/author_page.cfm?id=81548023658">y</A>
&nbsp;
<?php /* <A HREF="http://academic.research.microsoft.com/Author/2303637/">MS Academic Search</A> */ ?>
<A HREF="https://www.semanticscholar.org/author/Torsten-Hoefler/1713648">Semantic Scholar</A>
&nbsp;
<A HREF="https://orcid.org/0000-0002-1333-9797">ORCID</A>

</P>




<center><TABLE BORDER="0">

<tr>
 <td><b>Research overview &nbsp;&nbsp;&nbsp;
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
 <td><b>Using Advanced MPI&nbsp;&nbsp;&nbsp;
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
 <td><b>Edited volumes</b></td>
</tr>
  
 <tr>
  <td>
  <a href="../hoefler-research-overview.pdf"><img src="research1.jpg"></a>
  </td>

  <td>
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.amazon.com/Using-Advanced-MPI-Message-Passing-Engineering/dp/0262527634/ref=sr_1_2?ie=UTF8&qid=1413026959"><img src="/img/AdvancedMPILogo.jpg" width=80></a>
  </td>
  
   <td>
   <a href="http://www.unixer.de/publications/edited"><img src="pile1.jpg"></a>
   </td>
 </tr>
</table>
</center>   

<?php
    pubs_search_create($pubs);
  }
?>

<div id="pubs">
<?php
  if (isset($_GET['pub'])) {
      printpub_detail($pubs[$_GET['pub']], $_GET['pub']);
  } else if (isset($_GET['bibtex'])) {
      echo '<font size="+1"><br>Bibtex entry:<br><br>';
      print_bibtex($_GET['bibtex']);
      echo "</font>";
  } else {
      pubs_search_print($pubs);
  }
?>
</div>
<br>

<?php 	f_html_end(); ?>
