From c325c0e0857e74174feee57af26e112846a8963f Mon Sep 17 00:00:00 2001 From: evghenii Date: Wed, 19 Feb 2014 13:40:06 +0100 Subject: [PATCH] added layout --- docs/ispc.rst | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/docs/ispc.rst b/docs/ispc.rst index 2c41301c..8c1feaec 100644 --- a/docs/ispc.rst +++ b/docs/ispc.rst @@ -177,6 +177,13 @@ Contents: + `Data Alignment and Aliasing`_ + `Restructuring Existing Programs to Use ISPC`_ +* `Experimental support for PTX`_ + + + `Overview`_ + + `Generation of PTX`_ + + `Execution of PTX`_ + + `Hints`_ + * `Disclaimer and Legal Information`_ * `Optimization Notice`_ @@ -4869,6 +4876,31 @@ program instances improves performance. .. _ispc Performance Tuning Guide: http://ispc.github.com/perfguide.html +Experimental support for PTX +============================ +One of the ``ispc`` goals is also to offer performance portability of ISPC +program across various parallel processors, in particular CPUs and GPUs. This +section describes how to use ISPC in combination with CUDA Toolkit to generate +and execute PTX. + +Overview +-------- +SPMD programming model can be mapped to CUDA cores. + + +Generation of PTX +------------------ +To generate PTX. + +Execution of PTX +---------------- +To execute PTX + +Hints +----- +Few things to observe + + Disclaimer and Legal Information ================================