[Swift-commit] r8353 - www/Swift-T

wozniak at ci.uchicago.edu wozniak at ci.uchicago.edu
Fri Dec 19 16:34:18 CST 2014


Author: wozniak
Date: 2014-12-19 16:34:18 -0600 (Fri, 19 Dec 2014)
New Revision: 8353

Modified:
   www/Swift-T/index.php
Log:
Add Gallery and tooltips


Modified: www/Swift-T/index.php
===================================================================
--- www/Swift-T/index.php	2014-12-19 22:29:11 UTC (rev 8352)
+++ www/Swift-T/index.php	2014-12-19 22:34:18 UTC (rev 8353)
@@ -29,7 +29,7 @@
 	<!-- header -->
 	<?php require('../inc/header2.php') ?>
 	<!-- end header -->
-<div class="grid_12 page-header">				
+<div class="grid_12 page-header">
 	<h1>Swift/T - High Performance Dataflow Computing</h1>
 </div>
 <div class="clear"></div>
@@ -48,8 +48,15 @@
 </p>
 
 <center>
-  <div class="button_175"><a href="guide.html">User Guide</a></div>
-  <div class="button_175"><a href="downloads.html">Downloads</a></div>
+  <div class="button_175"
+       title="Entry point for Swift/T language and runtime guides">
+    <a href="guide.html">User Guide</a></div>
+  <div class="button_175"
+       title="Plenty of useful examples for easy parallel programming">
+    <a href="gallery.html">Gallery</a></div>
+  <div class="button_175"
+       title="Swift/T installation packages and prior versions">
+    <a href="downloads.html">Downloads</a></div>
 </center>
 
 <h3>Language Overview</h3>
@@ -68,11 +75,11 @@
 arrays, etc.  Some functions are connected to leaf tasks, which are
 expected to do the bulk of the computationally intensive work.  Tasks
 run when their input data is available.  Data produced by a task may
-be fed into the next using syntax like: 
+be fed into the next using syntax like:
 </p>
 
-<div class="code">y = f(x); 
-z = g(y);  
+<div class="code">y = f(x);
+z = g(y);
 </div>
 
 <p>
@@ -80,8 +87,8 @@
 executions of <tt>g()</tt> run concurrently.
 </p>
 
-<div class="code">y  = f(x); 
-z1 = g(y, 1); 
+<div class="code">y  = f(x);
+z1 = g(y, 1);
 z2 = g(y, 2);
 </div>
 
@@ -97,16 +104,16 @@
 example, the following code is broken up into the task diagram:
 </p>
 
-<style> 
-table 
-{ 
-  border: 1px solid #999; 
-  margin-left:  auto; 
+<style>
+table
+{
+  border: 1px solid #999;
+  margin-left:  auto;
   margin-right: auto;
 }
 </style>
 
-<img src="images/spawngraph.png" width="45%" style="float: right;  border: 1px solid #999; "/> 
+<img src="images/spawngraph.png" width="45%" style="float: right;  border: 1px solid #999; "/>
 
 <div class="code" style="width:50%; z-index:-1;">int X = 100, Y = 100;
 int A[][];
@@ -133,9 +140,9 @@
 schedulers (PBS, Condor, etc.) and data transfer technologies.
 </p>
 
-<style> 
-ul 
-{ 
+<style>
+ul
+{
   list-style-type: circle;
   margin-left:50px;
 }
@@ -162,7 +169,7 @@
 
 <ul>
   <li>
-    Enhanced performance: 1.5 billion tasks/s 
+    Enhanced performance: 1.5 billion tasks/s
   </li>
   <li>
     Ability to call native code functions (C, C++, Fortran)
@@ -180,14 +187,14 @@
 
 <p> </p>
 </div>
-  
+
   <div class="clear"></div>
-				
+
   </div>
 <!-- end .container_12 -->
 
 <!-- footer -->
-<?php require('../inc/footer2.php') ?> 
+<?php require('../inc/footer2.php') ?>
 <!-- end footer -->
 <script type="text/javascript">
 var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
@@ -202,8 +209,8 @@
 </body>
 </html>
 
-<!-- 
- Local Variables: 
+<!--
+ Local Variables:
  mode: html
  End:
 -->




More information about the Swift-commit mailing list