From 9857e3df748a8e091c3cf38881b5a9f87f820248 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sun, 22 Oct 2017 18:40:50 -0400 Subject: [PATCH] Added caption to gifs. --- introduction/getting-started.html | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/introduction/getting-started.html b/introduction/getting-started.html index bb851fb..bf6f51b 100644 --- a/introduction/getting-started.html +++ b/introduction/getting-started.html @@ -67,7 +67,17 @@ Aparapi | Getting Started <p>Below you will find two side-by-side comparisons for the nbody problem on a CPU vs a GPU. The simulation is being run on an inexpensive graphics card; you can even run it yourself from the <a href="https://github.com/Syncleus/aparapi-examples" rel="nofollow">examples project</a>. Its obvious the drastic performance gains that can be acheived with Aparapi.</p> -<p><img src="http://aparapi.com/images/nbody_gpu.gif" alt="NBody GPU" /> <img src="http://aparapi.com/images/nbody_cpu.gif" alt="NBody CPU" /></p> +<table><thead> +<tr> +<th style="text-align: center"><img src="http://aparapi.com/images/nbody_gpu.gif" alt="NBody GPU" /></th> +<th style="text-align: center"><img src="http://aparapi.com/images/nbody_cpu.gif" alt="NBody CPU" /></th> +</tr> +</thead><tbody> +<tr> +<td style="text-align: center">GPU Accelerated</td> +<td style="text-align: center">CPU Multi-threaded (8 cores)</td> +</tr> +</tbody></table> <h2>Support and Documentation</h2> -- GitLab