Changes between Version 24 and Version 25 of cypress/using


Ignore:
Timestamp:
06/17/15 10:38:01 (9 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/using

    v24 v25  
    339339* Debug memory errors like leaks and allocation errors and threading errors like data races and deadlocks.
    340340
    341 === Setting Environment and Compiling your code ===
     341==== Setting Environment and Compiling your code ====
    342342Load module to setup Intel compilers and tools.
    343343{{{#!bash
     
    349349}}}
    350350
    351 
     351==== Run and Collect Information ====
     352Start an interactive job,
     353{{{#!bash
     354[fuji@cypress1 ~]$ idev
     355}}}
     356To collect information, run the code by
     357{{{#!bash
     358[fuji@cypress1 ~]$ inspxe-cl -collect=mi2 -app-working-dir=$PWD -result-dir=$PWD/results $PWD/mytest
     359}}}
     360See [https://software.intel.com/sites/products/documentation/doclib/iss/2013/inspector/lin/ug_docs/GUID-634DB62A-CE9B-4301-8530-BDF6C183AF1E.htm] for details.
     361
     362To show results,
     363{{{#!bash
     364[fuji@cypress1 ~]$ inspxe-cl -R problems -r $PWD/results
     365}}}
     366See [https://software.intel.com/sites/products/documentation/doclib/iss/2013/inspector/lin/ug_docs/GUID-1C6FCC6A-E343-40FF-BF31-B74567A554A8.htm] for details.
    352367
    353368== Intel® Advisor XE ==