Changes between Version 1 and Version 2 of cypress/Inspector Brief Tutorial


Ignore:
Timestamp:
08/19/15 22:28:59 (9 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/Inspector Brief Tutorial

    v1 v2  
    11= Inspector Brief Tutorial =
     2
     3Sample code
     4{{{#!c
     5#include <stdio.h>
     6#include <stdlib.h>
     7
     8int main() {
     9  double * p = malloc(sizeof(double) * 10);
     10  if (p[0] < 1) {
     11    printf("p[0] < 1\n");
     12  } else {
     13    printf("p[1] >= 1\n");
     14  }
     15  return 0;
     16}
     17}}}
    218{{{#!bash
    319[fuji@cypress01-089 ~]$ module load intel-psxe/2015-update1