This file is indexed.

/usr/share/doc/python-netcdf/examples/mpi.py is in python-netcdf 2.9.4-1.

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
53
54
55
56
57
58
59
60
61
from Scientific import MPI
from Scientific import N
import sys

communicator = MPI.world.duplicate()

# Send and receive

if communicator.rank == 0:

    data = 1.*N.arange(10)
    communicator.send(data, 1, 0)
    print "%d sent:\n%s" % (communicator.rank, str(data))

    data, source, tag = communicator.receiveString(1, None)
    print "%d received string from %d: %s" % (communicator.rank, source, data)

elif communicator.rank == 1:

    data, source, tag, count = \
          communicator.receive(N.Float, None, None)
    print "%d received from %d:\n%s" \
          % (communicator.rank, source, str(data))

    communicator.send("Hello world", 0, 42)

else:

    print "%d idle" % communicator.rank

# Barrier

print "%d waiting at barrier" % communicator.rank
sys.stdout.flush()
communicator.barrier()
print "%d passed barrier" % communicator.rank
sys.stdout.flush()

# Broadcast

data = N.zeros((5,), N.Float)
if communicator.rank == 0:
    data[:] = 42.
communicator.broadcast(data, 0)
print "%d has:\n   %s" % (communicator.rank, str(data))

sys.stdout.flush()
communicator.barrier()

# Reduce
data_send = (communicator.rank+1) * N.arange(3)
data_recv = N.zeros_st(3, data_send)
communicator.reduce(data_send, data_recv, MPI.sum, 0)
print "%d has:\n   %s" % (communicator.rank, str(data_recv))

# Share

to_share = (communicator.rank+1)*N.arange(5)
all = N.zeros_st((communicator.size,)+to_share.shape, to_share)
communicator.share(to_share, all)
print "%d has:\n%s" % (communicator.rank, str(all))