This file is indexed.

/usr/share/doc/libsprng2-doc/EXAMPLES/fsprngf-simple_mpi.F is in libsprng2-doc 2.0a-10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
C
C          Demonstrates use of the single precision generator      
C One stream is maintained per processor. Each processor prints a few 
C single precision random numbers.
C

       program fsprngf_simple_mpi
       implicit none

#define SIMPLE_SPRNG		! simple interface                        */
#define USE_MPI			! use MPI to find number of processes     */
#define FLOAT_GEN 1	! make 'sprng()' return single precision numbers
#include <mpif.h>
#include "sprng_f.h"

       SPRNG_POINTER stream
       real*4 rn
       integer i, seed, myid, ierror, junk
C---   
       integer gtype
C---


       call MPI_INIT(ierror)
       call MPI_COMM_RANK(MPI_COMM_WORLD, myid, ierror)

       seed = 985456376

C--- node 0 is reading in a generator type
       if (myid .eq. 0) then
#include "genf_types_menu.h"
         print *,'Type in a generator type (integers: 0,1,2,3,4,5):  '
         read *, gtype
       endif
       call MPI_BCAST(gtype,1, MPI_INTEGER,0,MPI_COMM_WORLD,ierror)
C---

C 
       stream = init_sprng(gtype,seed,SPRNG_DEFAULT)
       write(*, "('Process',i2,': Print information about stream:')"
     &      ) myid
       junk = print_sprng()

       do 100 i = 1, 3
          rn = sprng()
          write(*, "('Process',i2,', random number',i2,': ',f8.6)")
     &          myid,i,rn
 100   continue

       call MPI_FINALIZE(ierror)

       end