Changes between Initial Version and Version 1 of application_pages/tutorial_apps/c/increment


Ignore:
Timestamp:
10/26/15 09:33:54 (9 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • application_pages/tutorial_apps/c/increment

    v1 v1  
     1[[PageOutline]] 
     2 
     3= Application Name = 
     4 
     5INCREMENT 
     6 
     7= Summary = 
     8 
     9* '''Name''': {{{INCREMENT}}} 
     10* '''Contact Person''': {{{support-compss@bsc.es}}} 
     11* '''Access Level''': {{{public}}} 
     12* '''License Agreement''': {{{Apache2}}} 
     13* '''Platform''': {{{COMPSs}}} 
     14* '''Repository''': [[https://compss.bsc.es/svn/bar/tutorial_apps/c/increment|INCREMENT]] 
     15 
     16 
     17== Description == 
     18Increment is an application that takes three different values and increases them a number of given times. The purpose of this application is to show parallelism between the different increments.  
     19 
     20== Execution instructions == 
     21Usage: 
     22runcompss --lang=c /home/compss/workspace_c/increment/master/increment <N> <initValue1> <initValue2> <initValue3> 
     23 
     24where: 
     25                 * - N: Number of times to increase the counters 
     26                 * - initValue1: Initial value for counter 1 
     27                 * - initValue2: Initial value for counter 2 
     28                 * - initValue3: Initial value for counter 3 
     29 
     30 
     31== Execution Example == 
     32runcompss --lang=c /home/compss/workspace_c/increment/master/increment 10 1 2 3 
     33 
     34 
     35== Build == 
     36buildapp increment