Changes between Version 16 and Version 17 of Introduction


Ignore:
Timestamp:
12/31/18 14:30:52 (7 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Introduction

    v16 v17  
    584584=== Verifying C/MPI Programs ===
    585585
     586CIVL can verify C/MPI programs that use a subset of MPI.    The instructions for sequential programs apply equally to MPI programs.  In addition, one must specify either (1) the number of processes for the MPI program, or (2) an upper and a lower bound on the number of processes for the MPI program.
     587
     588In the following example, the C/MPI program `ring.c` is verified for exactly 5 processes:
     589
     590{{{
     591civl verify -input_mpi_nprocs=5 ring.c
     592}}}
     593
     594In the following example, `ring.c` is verified for any number of processes between 2 and 5, inclusive:
     595
     596{{{
     597civl verify -input_mpi_nprocs_lo=2 -input_mpi_nprocs_hi=5 ring.c
     598}}}
     599
    586600
    587601