Changes between Version 2 and Version 3 of application_pages/tutorial_apps/python/wordcount_merge


Ignore:
Timestamp:
01/18/17 11:47:35 (7 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • application_pages/tutorial_apps/python/wordcount_merge

    v2 v3  
    1616 
    1717== Description == 
    18 Wordcount is an application that counts the number of words of a given file.  
     18Wordcount is an application that counts the number of words for a given set of files.  
    1919 
    20 To allow parallelism the file is divided in blocks that are treated separately and merged afterwards. 
     20To allow parallelism every file is treated separately and merged afterwards. 
    2121 
    2222 
    2323== Execution instructions == 
    2424Usage: 
    25 runcompss --lang=python /home/compss/tutorial_apps/python/wordcount/workcount.py <filePath> <resultPath> <blockSize> 
     25runcompss --lang=python /home/compss/tutorial_apps/python/wordcount/workcount.py <datasetPath> 
    2626 
    2727where: 
    28                  * - filePath: Absolute path of the file to parse 
    29                  * - resultPath: Absolute path to the result file 
    30                  * - blockSize: Size of each block 
     28                 * - datasetPath: Absolute path of the file to parse 
    3129 
    3230 
    3331== Execution Example == 
    34 runcompss --lang=python /home/compss/tutorial_apps/python/wordcount/wordcount.py /sharedDisk/wordcount/compss.txt /home/compss/tutorial_apps/python/wordcount/result.txt 300 
     32runcompss --lang=python /home/compss/tutorial_apps/python/wordcount/wordcount.py /sharedDisk/wordcount/ 
    3533 
    3634