Jacobi Iteration - Example Parallel Mesh
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
send/recv: 6 iterations in 0.000405 secs (1.038072 MFlops); diffnorm 0.008134, m=7 n=4 np=1
send/recv: 7 iterations in 0.073226 secs (5.481746 MFlops); diffnorm 0.006899, m=4098 n=4 np=1
send/recv: 24 iterations in 0.008283 secs (0.811284 MFlops); diffnorm 0.009895, m=7 n=10 np=4
send/recv: 25 iterations in 0.335028 secs (17.116197 MFlops); diffnorm 0.138820, m=4098 n=10 np=4
send/recv: 25 iterations in 0.010352 secs (2.704678 MFlops); diffnorm 0.036615, m=7 n=34 np=16
send/recv: 25 iterations in 0.343764 secs (66.724932 MFlops); diffnorm 0.468864, m=4098 n=34 np=16
send/recv: 25 iterations in 0.011204 secs (4.998133 MFlops); diffnorm 0.055291, m=7 n=66 np=32
send/recv: 25 iterations in 0.348401 secs (131.673455 MFlops); diffnorm 0.470684, m=4098 n=66 np=32
Jacobi Iteration - Shift up and down
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
shift/sendrecv: 6 iterations in 0.000403 secs (1.043220 MFlops); diffnorm 0.008134, m=7 n=4 np=1
shift/sendrecv: 7 iterations in 0.073227 secs (5.481690 MFlops); diffnorm 0.006899, m=4098 n=4 np=1
shift/sendrecv: 24 iterations in 0.007461 secs (0.900664 MFlops); diffnorm 0.009895, m=7 n=10 np=4
shift/sendrecv: 25 iterations in 0.333797 secs (17.179308 MFlops); diffnorm 0.138820, m=4098 n=10 np=4
shift/sendrecv: 25 iterations in 0.009682 secs (2.891938 MFlops); diffnorm 0.036615, m=7 n=34 np=16
shift/sendrecv: 25 iterations in 0.343012 secs (66.871199 MFlops); diffnorm 0.468864, m=4098 n=34 np=16
shift/sendrecv: 25 iterations in 0.010580 secs (5.293034 MFlops); diffnorm 0.055291, m=7 n=66 np=32
shift/sendrecv: 25 iterations in 0.346898 secs (132.243985 MFlops); diffnorm 0.470684, m=4098 n=66 np=32
Jacobi Iteration - Exchange head-to-head
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
head-to-head sendrecv: 6 iterations in 0.000451 secs (0.931452 MFlops); diffnorm 0.008134, m=7 n=4 np=1
head-to-head sendrecv: 7 iterations in 0.073266 secs (5.478792 MFlops); diffnorm 0.006899, m=4098 n=4 np=1
head-to-head sendrecv: 24 iterations in 0.007900 secs (0.850649 MFlops); diffnorm 0.009895, m=7 n=10 np=4
head-to-head sendrecv: 25 iterations in 0.337048 secs (17.013619 MFlops); diffnorm 0.138820, m=4098 n=10 np=4
head-to-head sendrecv: 25 iterations in 0.009789 secs (2.860417 MFlops); diffnorm 0.036615, m=7 n=34 np=16
head-to-head sendrecv: 25 iterations in 0.341918 secs (67.085116 MFlops); diffnorm 0.468864, m=4098 n=34 np=16
head-to-head sendrecv: 25 iterations in 0.010634 secs (5.266169 MFlops); diffnorm 0.055291, m=7 n=66 np=32
head-to-head sendrecv: 25 iterations in 0.346055 secs (132.566039 MFlops); diffnorm 0.470684, m=4098 n=66 np=32
Jacobi Iteration - Nonblocking send/recv
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
irecv/isend: 6 iterations in 0.000471 secs (0.892349 MFlops); diffnorm 0.008134, m=7 n=4 np=1
irecv/isend: 7 iterations in 0.073304 secs (5.475920 MFlops); diffnorm 0.006899, m=4098 n=4 np=1
irecv/isend: 24 iterations in 0.007527 secs (0.892811 MFlops); diffnorm 0.009895, m=7 n=10 np=4
irecv/isend: 25 iterations in 0.340959 secs (16.818447 MFlops); diffnorm 0.138820, m=4098 n=10 np=4
irecv/isend: 25 iterations in 0.009413 secs (2.974552 MFlops); diffnorm 0.036615, m=7 n=34 np=16
irecv/isend: 25 iterations in 0.342298 secs (67.010587 MFlops); diffnorm 0.468864, m=4098 n=34 np=16
irecv/isend: 25 iterations in 0.010331 secs (5.420373 MFlops); diffnorm 0.055291, m=7 n=66 np=32
irecv/isend: 25 iterations in 0.346965 secs (132.218654 MFlops); diffnorm 0.470684, m=4098 n=66 np=32
Jacobi Iteration - Nonblocking send/recv for receiver pull
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
isend/irecv: 6 iterations in 0.000471 secs (0.891502 MFlops); diffnorm 0.008134, m=7 n=4 np=1
isend/irecv: 7 iterations in 0.073308 secs (5.475602 MFlops); diffnorm 0.006899, m=4098 n=4 np=1
isend/irecv: 24 iterations in 0.008612 secs (0.780274 MFlops); diffnorm 0.009895, m=7 n=10 np=4
isend/irecv: 25 iterations in 0.335173 secs (17.108764 MFlops); diffnorm 0.138820, m=4098 n=10 np=4
isend/irecv: 25 iterations in 0.010377 secs (2.698262 MFlops); diffnorm 0.036615, m=7 n=34 np=16
isend/irecv: 25 iterations in 0.341237 secs (67.219063 MFlops); diffnorm 0.468864, m=4098 n=34 np=16
isend/irecv: 25 iterations in 0.011247 secs (4.978970 MFlops); diffnorm 0.055291, m=7 n=66 np=32
isend/irecv: 25 iterations in 0.343636 secs (133.499410 MFlops); diffnorm 0.470684, m=4098 n=66 np=32
Jacobi Iteration - Synchronous send
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
ssend/irecv: 6 iterations in 0.000454 secs (0.925214 MFlops); diffnorm 0.008134, m=7 n=4 np=1
ssend/irecv: 7 iterations in 0.073278 secs (5.477860 MFlops); diffnorm 0.006899, m=4098 n=4 np=1
ssend/irecv: 24 iterations in 0.009956 secs (0.674966 MFlops); diffnorm 0.009895, m=7 n=10 np=4
ssend/irecv: 25 iterations in 0.293455 secs (19.540989 MFlops); diffnorm 0.138820, m=4098 n=10 np=4
ssend/irecv: 25 iterations in 0.011647 secs (2.404037 MFlops); diffnorm 0.036615, m=7 n=34 np=16
ssend/irecv: 25 iterations in 0.301037 secs (76.195380 MFlops); diffnorm 0.468864, m=4098 n=34 np=16
ssend/irecv: 25 iterations in 0.012464 secs (4.492987 MFlops); diffnorm 0.055291, m=7 n=66 np=32
ssend/irecv: 25 iterations in 0.308954 secs (148.485492 MFlops); diffnorm 0.470684, m=4098 n=66 np=32
Jacobi Iteration - Ready send
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b95c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021dc ci: 0x00002d0000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064c10
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000000038
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000006 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d60f1f38a1 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d60f1f38a1
f03:0x41a9b4d60f1ef84c f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f11580000000000 f11:0x3f80a88865903544
f12:0x3f80a88865903545 f13:0x3f1157ffffffffff f14:0x3f1157ffffffffff
f15:0xbbd0000000000000 f16:0x3f11580000000000 f17:0x3ff0000000000000
f18:0x3fd4400000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x404ebc414efb607a f23:0x3f88fccc98561dcf
f24:0x3f70a888658bd115 f25:0x4060000000000000 f26:0x3cb0000000000000
f27:0x3c40000000000000 f28:0x40009937258f3ca1 f29:0xbff0eed847a3911c
f30:0x405ebc414efb607a fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6755 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b95c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021dc ci: 0x00002d0000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bf0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064c18 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000008010
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000007 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d61a9f5d52 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d61a9f5d52
f03:0x41a9b4d61a7a33db f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f08f40000000000 f11:0x3f7c41fb66456959
f12:0x3f7c41fb6645695b f13:0x3f08f40000000000 f14:0x3f08f40000000002
f15:0x0000000000000000 f16:0x3f08f40000000000 f17:0x3ff0000000000000
f18:0x3fd4740000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x40521e7211ce9219 f23:0x3f85317c8cb40f03
f24:0x3f6c41fb66456958 f25:0x4060000000000000 f26:0x3cb0000000000000
f27:0x3c30000000000000 f28:0x3ff9271b63a6a929 f29:0xbff0eed847a3911c
f30:0x40621e7211ce9219 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6769 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b95c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021dc ci: 0x00002d0000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bf0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bd8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000000038
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000018 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d62638b153 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d62638b153
f03:0x41a9b4d62634c9b3 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f19aab76ce5406a f11:0x3f8443d652b0baab
f12:0x3f8443d652b0baad f13:0x3f19aab76ce5406a f14:0x3f19aab76ce5406d
f15:0x0000000000000000 f16:0x3f19aab76ce5406a f17:0x3fe88aa67be6be00
f18:0x3fc44ba66463f200 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x404943e760423bf0 f23:0x3f8e65c17c08b84c
f24:0x3f7443d652affb41 f25:0x4060000000000000 f26:0x3cb0000000000000
f27:0x3c40000000000000 f28:0x40102edb29a92532 f29:0xbff0eed847a3911c
f30:0x405943e760423bf0 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6786 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b95c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021dc ci: 0x00002d0000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000008010
t12:0xfffffffffffffc02 t13:0x0000000000000000
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d632087775 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d632087775
f03:0x41a9b4d63158857f f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f93bbce179cee76 f11:0x3fc1c4de05aa0587
f12:0x3fc1c4de05aa0589 f13:0x3f93bbce179cee77 f14:0x3f93bbce179cee79
f15:0x3c50000000000000 f16:0x3f93bbce179cee76 f17:0x3fe87b96d44c38a0
f18:0x3fc35d32eee31900 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x400cd06fd2bbe320 f23:0x3fcaa74d087f06f8
f24:0x3fb1c4de05aa02e1 f25:0x4020000000000000 f26:0x3cb0000000000000
f27:0x3c80000000000000 f28:0x4003fa4e9e17d999 f29:0xbff0eed847a3911c
f30:0x401cd06fd2bbe320 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6802 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b95c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021dc ci: 0x00002d0000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000000038
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d63cfd3294 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d63cfd3294
f03:0x41a9b4d63cf84b21 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f55f739f73981d7 f11:0x3fa2bf3e43707ca5
f12:0x3fa2bf3e43707ca7 f13:0x3f55f739f73981d8 f14:0x3f55f739f73981da
f15:0x3c10000000000000 f16:0x3f55f739f73981d7 f17:0x3fe8708df2950fe0
f18:0x3fc40525a336bc00 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x402b4f9be68119bb f23:0x3fac1edd6523c7ea
f24:0x3f92bf3e43669689 f25:0x4040000000000000 f26:0x3cb0000000000000
f27:0x3c60000000000000 f28:0x4007f827604dbc5b f29:0xbff0eed847a3911c
f30:0x403b4f9be68119bb fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6821 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b95c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021dc ci: 0x00002d0000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000008010
t12:0xfffffffffffffc02 t13:0x0000000000000000
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d648cfc70f f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d648cfc70f
f03:0x41a9b4d6481e924d f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3fcc238004d7933a f11:0x3fde01ddd195cb85
f12:0x3fde01ddd195cb87 f13:0x3fcc238004d79338 f14:0x3fcc238004d7933a
f15:0xbc90000000000000 f16:0x3fcc238004d7933a f17:0x3fe84e2b32eaea00
f18:0x3fc2b904b872d000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x3ff110014e93f95f f23:0x3fe681665d2e64d6
f24:0x3fce01ddd18dfc4d f25:0x4000000000000000 f26:0x3cb0000000000000
f27:0x3c90000000000000 f28:0x3ffaf0cb49c11ca2 f29:0xbff0eed847a3911c
f30:0x400110014e93f95f fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6840 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b95c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021dc ci: 0x00002d0000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000000038
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d65457a82a f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d65457a82a
f03:0x41a9b4d6545251cb f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f690b25a0f0d78e f11:0x3fac4f138de942c4
f12:0x3fac4f138de942c5 f13:0x3f690b25a0f0d78b f14:0x3f690b25a0f0d78b
f15:0xbc38000000000000 f16:0x3f690b25a0f0d78e f17:0x3fe8708df2950fe0
f18:0x3fc40525a336bc00 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x402216108b4184e2 f23:0x3fb53b4eaa6ef214
f24:0x3f9c4f138de942c7 f25:0x4030000000000000 f26:0x3cb0000000000000
f27:0x3c60000000000000 f28:0x3ff931328352a223 f29:0xbff0eed847a3911c
f30:0x403216108b4184e2 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6861 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b95c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021dc ci: 0x00002d0000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000008010
t12:0xfffffffffffffc02 t13:0x0000000000000000
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d6609af36d f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d6609af36d
f03:0x41a9b4d65fe9fb88 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3fcc5b88017f6edc f11:0x3fde1faf456b2a54
f12:0x3fde1faf456b2a56 f13:0x3fcc5b88017f6edb f14:0x3fcc5b88017f6edd
f15:0xbc80000000000000 f16:0x3fcc5b88017f6edc f17:0x3fe84e2b32eaea00
f18:0x3fc2b904b872d000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x3ff0ff1d9d169a6c f23:0x3fe697c3740e04fb
f24:0x3fce1faf4561bf42 f25:0x4000000000000000 f26:0x3cb0000000000000
f27:0x3c90000000000000 f28:0x3ffb17f6b55f4196 f29:0xbff0eed847a3911c
f30:0x4000ff1d9d169a6c fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6885 Operand range error
Jacobi Iteration - Nonblocking Ready send
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b97c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021fc ci: 0x0000300000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064c10
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000000038
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000006 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d691c77ff2 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d691c77ff2
f03:0x41a9b4d691c73b94 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f11580000000000 f11:0x3f80a88865903544
f12:0x3f80a88865903545 f13:0x3f1157ffffffffff f14:0x3f1157ffffffffff
f15:0xbbd0000000000000 f16:0x3f11580000000000 f17:0x3ff0000000000000
f18:0x3fd4400000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x404ebc414efb607a f23:0x3f88fccc98561dcf
f24:0x3f70a888658bd115 f25:0x4060000000000000 f26:0x3cb0000000000000
f27:0x3c40000000000000 f28:0x40009937258f3ca1 f29:0xbff0eed847a3911c
f30:0x405ebc414efb607a fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6923 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b97c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021fc ci: 0x0000300000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bf0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064c18 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000008010
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000007 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d69d49bcf6 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d69d49bcf6
f03:0x41a9b4d69d243152 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f08f40000000000 f11:0x3f7c41fb66456959
f12:0x3f7c41fb6645695b f13:0x3f08f40000000000 f14:0x3f08f40000000002
f15:0x0000000000000000 f16:0x3f08f40000000000 f17:0x3ff0000000000000
f18:0x3fd4740000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x40521e7211ce9219 f23:0x3f85317c8cb40f03
f24:0x3f6c41fb66456958 f25:0x4060000000000000 f26:0x3cb0000000000000
f27:0x3c30000000000000 f28:0x3ff9271b63a6a929 f29:0xbff0eed847a3911c
f30:0x40621e7211ce9219 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6937 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b97c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021fc ci: 0x0000300000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bf0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bd8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000000038
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000018 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d6a7f49456 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d6a7f49456
f03:0x41a9b4d6a7f06f6b f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f19aab76ce5406a f11:0x3f8443d652b0baab
f12:0x3f8443d652b0baad f13:0x3f19aab76ce5406a f14:0x3f19aab76ce5406d
f15:0x0000000000000000 f16:0x3f19aab76ce5406a f17:0x3fe88aa67be6be00
f18:0x3fc44ba66463f200 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x404943e760423bf0 f23:0x3f8e65c17c08b84c
f24:0x3f7443d652affb41 f25:0x4060000000000000 f26:0x3cb0000000000000
f27:0x3c40000000000000 f28:0x40102edb29a92532 f29:0xbff0eed847a3911c
f30:0x405943e760423bf0 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6954 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b97c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021fc ci: 0x0000300000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000008010
t12:0xfffffffffffffc02 t13:0x0000000000000000
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d6b37bd393 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d6b37bd393
f03:0x41a9b4d6b2c98c36 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f93bbce179cee76 f11:0x3fc1c4de05aa0587
f12:0x3fc1c4de05aa0589 f13:0x3f93bbce179cee77 f14:0x3f93bbce179cee79
f15:0x3c50000000000000 f16:0x3f93bbce179cee76 f17:0x3fe87b96d44c38a0
f18:0x3fc35d32eee31900 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x400cd06fd2bbe320 f23:0x3fcaa74d087f06f8
f24:0x3fb1c4de05aa02e1 f25:0x4020000000000000 f26:0x3cb0000000000000
f27:0x3c80000000000000 f28:0x4003fa4e9e17d999 f29:0xbff0eed847a3911c
f30:0x401cd06fd2bbe320 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6970 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b97c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021fc ci: 0x0000300000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000000038
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d6be4c4e6f f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d6be4c4e6f
f03:0x41a9b4d6be473c9e f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f55f739f73981d7 f11:0x3fa2bf3e43707ca5
f12:0x3fa2bf3e43707ca7 f13:0x3f55f739f73981d8 f14:0x3f55f739f73981da
f15:0x3c10000000000000 f16:0x3f55f739f73981d7 f17:0x3fe8708df2950fe0
f18:0x3fc40525a336bc00 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x402b4f9be68119bb f23:0x3fac1edd6523c7ea
f24:0x3f92bf3e43669689 f25:0x4040000000000000 f26:0x3cb0000000000000
f27:0x3c60000000000000 f28:0x4007f827604dbc5b f29:0xbff0eed847a3911c
f30:0x403b4f9be68119bb fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 6989 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b97c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021fc ci: 0x0000300000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000008010
t12:0xfffffffffffffc02 t13:0x0000000000000000
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d6ca50a3ef f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d6ca50a3ef
f03:0x41a9b4d6c99f4cf9 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3fcc238004d7933a f11:0x3fde01ddd195cb85
f12:0x3fde01ddd195cb87 f13:0x3fcc238004d79338 f14:0x3fcc238004d7933a
f15:0xbc90000000000000 f16:0x3fcc238004d7933a f17:0x3fe84e2b32eaea00
f18:0x3fc2b904b872d000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x3ff110014e93f95f f23:0x3fe681665d2e64d6
f24:0x3fce01ddd18dfc4d f25:0x4000000000000000 f26:0x3cb0000000000000
f27:0x3c90000000000000 f28:0x3ffaf0cb49c11ca2 f29:0xbff0eed847a3911c
f30:0x400110014e93f95f fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7008 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b97c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021fc ci: 0x0000300000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000000038
t12:0x000000000000000d t13:0x000000400006a390
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d6d59ef3a8 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d6d59ef3a8
f03:0x41a9b4d6d5995ac5 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3f690b25a0f0d78e f11:0x3fac4f138de942c4
f12:0x3fac4f138de942c5 f13:0x3f690b25a0f0d78b f14:0x3f690b25a0f0d78b
f15:0xbc38000000000000 f16:0x3f690b25a0f0d78e f17:0x3fe8708df2950fe0
f18:0x3fc40525a336bc00 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x402216108b4184e2 f23:0x3fb53b4eaa6ef214
f24:0x3f9c4f138de942c7 f25:0x4030000000000000 f26:0x3cb0000000000000
f27:0x3c60000000000000 f28:0x3ff931328352a223 f29:0xbff0eed847a3911c
f30:0x403216108b4184e2 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7030 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000000 pa1: 0x0000000000001600 pa2: 0x0000000000000000
pc: 0x000000200003b97c sp: 0x00000060ffffec40 fp: 0x00000060ffffed40
v0: 0x0000000000000000 ra: 0x00000020000021fc ci: 0x0000300000000101
a0: 0x00000060ffffeeb8 a1: 0x0000000000000000 a2: 0x0000004000064bd0
a3: 0x0000004000064840 a4: 0x0000ffffffffffff a5: 0x0000000000000030
t0: 0x0000000000000000 t1: 0x0000004000029470 t2: 0x00000000000000fe
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000000588
t6: 0x0000000000000000 t7: 0x0000004000064bf8 t8: 0x0000000000000001
t9: 0x0000000000000001 t10:0x0000000000000000 t11:0x0000000000008010
t12:0xfffffffffffffc02 t13:0x0000000000000000
s0: 0x00000060ffffee78 s1: 0x0000000000000000 s2: 0x0000000000000002
s3: 0x0000000000000019 s4: 0x0000004000000398 s5: 0x0000000000000000
f00:0x41a9b4d6e18b48b9 f01:0x3e3c58c6d8a67ba9 f02:0x41a9b4d6e18b48b9
f03:0x41a9b4d6e0d8bedc f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x3fcc5b88017f6edc f11:0x3fde1faf456b2a54
f12:0x3fde1faf456b2a56 f13:0x3fcc5b88017f6edb f14:0x3fcc5b88017f6edd
f15:0xbc80000000000000 f16:0x3fcc5b88017f6edc f17:0x3fe84e2b32eaea00
f18:0x3fc2b904b872d000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x3ff0ff1d9d169a6c f23:0x3fe697c3740e04fb
f24:0x3fce1faf4561bf42 f25:0x4000000000000000 f26:0x3cb0000000000000
f27:0x3c90000000000000 f28:0x3ffb17f6b55f4196 f29:0xbff0eed847a3911c
f30:0x4000ff1d9d169a6c fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7078 Operand range error
Jacobi Iteration - Overlapping communication
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
isend/overlap: 6 iterations in 0.000484 secs (0.867146 MFlops); diffnorm 0.008134, m=7 n=4 np=1
isend/overlap: 7 iterations in 0.073551 secs (5.457540 MFlops); diffnorm 0.006899, m=4098 n=4 np=1
isend/overlap: 24 iterations in 0.007798 secs (0.861774 MFlops); diffnorm 0.009895, m=7 n=10 np=4
isend/overlap: 25 iterations in 0.339263 secs (16.902538 MFlops); diffnorm 0.138820, m=4098 n=10 np=4
isend/overlap: 25 iterations in 0.009587 secs (2.920470 MFlops); diffnorm 0.036615, m=7 n=34 np=16
isend/overlap: 25 iterations in 0.344060 secs (66.667389 MFlops); diffnorm 0.468864, m=4098 n=34 np=16
isend/overlap: 25 iterations in 0.010373 secs (5.398586 MFlops); diffnorm 0.055291, m=7 n=66 np=32
isend/overlap: 25 iterations in 0.348687 secs (131.565393 MFlops); diffnorm 0.470684, m=4098 n=66 np=32
Jacobi Iteration - Overlapping communication (sends first)
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
send first/overlap: 6 iterations in 0.000480 secs (0.875877 MFlops); diffnorm 0.008134, m=7 n=4 np=1
send first/overlap: 7 iterations in 0.073561 secs (5.456819 MFlops); diffnorm 0.006899, m=4098 n=4 np=1
send first/overlap: 24 iterations in 0.008630 secs (0.778721 MFlops); diffnorm 0.009895, m=7 n=10 np=4
send first/overlap: 25 iterations in 0.336819 secs (17.025180 MFlops); diffnorm 0.138820, m=4098 n=10 np=4
send first/overlap: 25 iterations in 0.010557 secs (2.652247 MFlops); diffnorm 0.036615, m=7 n=34 np=16
send first/overlap: 25 iterations in 0.342447 secs (66.981411 MFlops); diffnorm 0.468864, m=4098 n=34 np=16
send first/overlap: 25 iterations in 0.011267 secs (4.970238 MFlops); diffnorm 0.055291, m=7 n=66 np=32
send first/overlap: 25 iterations in 0.345109 secs (132.929693 MFlops); diffnorm 0.470684, m=4098 n=66 np=32
Jacobi Iteration - Persistent send/recv
mpicc -c -O jacobi.c
mpicc -c -O cmdline.c
mpicc -c -O setupmesh.c
mpicc -c -O exchng.c
mpicc -o jacobi -O jacobi.o cmdline.o setupmesh.o exchng.o -lm
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000068 pa1: 0x0000000000001610 pa2: 0x0000000000000000
pc: 0x000000200003e79c sp: 0x00000060ffffea00 fp: 0x00000060ffffeb80
v0: 0x0000000000000000 ra: 0x0000002000044284 ci: 0x000b120000000101
a0: 0x00000060ffffee88 a1: 0x00000060ffffee88 a2: 0x0000000000000009
a3: 0xffffffffffffffff a4: 0x0000000000000001 a5: 0x0000000000000002
t0: 0x00000060ffffee88 t1: 0x0000004000029470 t2: 0x0000000000000001
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x000000400006fc68
t6: 0x000000400006fd68 t7: 0x000000400006fdb0 t8: 0x000000400006fdb0
t9: 0x000000400006fdb0 t10:0x00000060fffff72d t11:0x00000040000003d5
t12:0x000000000000000d t13:0x000000400006fcc0
s0: 0x0000000000000000 s1: 0x00000060ffffee88 s2: 0x000000400001ee80
s3: 0x0000000000000000 s4: 0x0000000000000000 s5: 0x0000000000000000
f00:0x41a9b4d82263531f f01:0x3e3c58c6d8a67ba9 f02:0x0000000000000000
f03:0x41a9b4d82263531f f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x4000000000000000 f11:0x3ff0000000000000
f12:0x0000000000000000 f13:0x0000000000000000 f14:0x0000000000000000
f15:0x0000000000000000 f16:0x0000000000000000 f17:0x0000000000000000
f18:0x0000000000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x0000000000000000 f23:0x0000000000000000
f24:0x0000000000000000 f25:0x0000000000000000 f26:0x0000000000000000
f27:0x0000000000000000 f28:0x0000000000000000 f29:0x0000000000000000
f30:0x0000000000000000 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7454 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000068 pa1: 0x0000000000001610 pa2: 0x0000000000000000
pc: 0x000000200003e79c sp: 0x00000060ffffea00 fp: 0x00000060ffffeb80
v0: 0x0000000000000000 ra: 0x0000002000044284 ci: 0x000b120000000101
a0: 0x00000060ffffee88 a1: 0x00000060ffffee88 a2: 0x0000000000000009
a3: 0xffffffffffffffff a4: 0x0000000000000001 a5: 0x0000000000000002
t0: 0x00000060ffffee88 t1: 0x0000004000029470 t2: 0x0000000000000001
t3: 0x0000000000000001 t4: 0x0000000000000000 t5: 0x0000004000087bf0
t6: 0x00000040000a7c70 t7: 0x00000040000afcb0 t8: 0x00000040000afcb0
t9: 0x00000040000afcb0 t10:0x00000060fffff72a t11:0x00000040000003d5
t12:0x000000000000000d t13:0x000000400008fc40
s0: 0x0000000000000000 s1: 0x00000060ffffee88 s2: 0x000000400001ee80
s3: 0x0000000000000000 s4: 0x0000000000000000 s5: 0x0000000000000000
f00:0x41a9b4d82e2b69af f01:0x3e3c58c6d8a67ba9 f02:0x0000000000000000
f03:0x41a9b4d82e2b69af f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x4000000000000000 f11:0x3ff0000000000000
f12:0x0000000000000000 f13:0x0000000000000000 f14:0x0000000000000000
f15:0x0000000000000000 f16:0x0000000000000000 f17:0x0000000000000000
f18:0x0000000000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x0000000000000000 f23:0x0000000000000000
f24:0x0000000000000000 f25:0x0000000000000000 f26:0x0000000000000000
f27:0x0000000000000000 f28:0x0000000000000000 f29:0x0000000000000000
f30:0x0000000000000000 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7468 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000068 pa1: 0x0000000000001610 pa2: 0x0000000000000000
pc: 0x000000200003e79c sp: 0x00000060ffffea00 fp: 0x00000060ffffeb80
v0: 0x0000000000000000 ra: 0x0000002000044284 ci: 0x000b120000000101
a0: 0x00000060ffffee88 a1: 0x00000060ffffee88 a2: 0x0000000000000000
a3: 0x0000000000000000 a4: 0x0000000000000001 a5: 0x0000000000000002
t0: 0x00000060ffffee88 t1: 0x0000004000029470 t2: 0x0000000000000000
t3: 0x0000000000000001 t4: 0x0000000000000008 t5: 0x0000000000000001
t6: 0x000000560003f540 t7: 0x0000004000070df0 t8: 0x0000004000070df0
t9: 0x0000004000070df0 t10:0x00000060fffff72d t11:0x00000040000003d5
t12:0x000000000000000d t13:0x0000004000070d00
s0: 0x0000000000000000 s1: 0x00000060ffffee88 s2: 0x000000400001ee80
s3: 0x0000000000000000 s4: 0x0000000000000000 s5: 0x0000000000000000
f00:0x41a9b4d8394b57de f01:0x3e3c58c6d8a67ba9 f02:0x0000000000000000
f03:0x41a9b4d8394b57de f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x0000000000000002 f11:0x4010000000000000
f12:0x0000000000000000 f13:0x0000000000000000 f14:0x0000000000000000
f15:0x0000000000000000 f16:0x0000000000000000 f17:0x0000000000000000
f18:0x0000000000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x0000000000000000 f23:0x0000000000000000
f24:0x0000000000000000 f25:0x0000000000000000 f26:0x0000000000000000
f27:0x0000000000000000 f28:0x0000000000000000 f29:0x0000000000000000
f30:0x0000000000000000 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7485 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000068 pa1: 0x0000000000001610 pa2: 0x0000000000000000
pc: 0x000000200003e79c sp: 0x00000060ffffea00 fp: 0x00000060ffffeb80
v0: 0x0000000000000000 ra: 0x0000002000044284 ci: 0x000b120000000101
a0: 0x00000060ffffee88 a1: 0x00000060ffffee88 a2: 0x0000000000000000
a3: 0x0000000000000000 a4: 0x0000000000000001 a5: 0x0000000000000002
t0: 0x00000060ffffee88 t1: 0x0000004000029470 t2: 0x0000000000000000
t3: 0x0000000000000001 t4: 0x0000000000000008 t5: 0x0000000000000001
t6: 0x000000560003f540 t7: 0x00000040000b0cf0 t8: 0x00000040000b0cf0
t9: 0x00000040000b0cf0 t10:0x00000060fffff72a t11:0x00000040000003d5
t12:0x000000000000000d t13:0x0000004000090c80
s0: 0x0000000000000000 s1: 0x00000060ffffee88 s2: 0x000000400001ee80
s3: 0x0000000000000000 s4: 0x0000000000000000 s5: 0x0000000000000000
f00:0x41a9b4d8441385cf f01:0x3e3c58c6d8a67ba9 f02:0x0000000000000000
f03:0x41a9b4d8441385cf f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x0000000000000002 f11:0x4010000000000000
f12:0x0000000000000000 f13:0x0000000000000000 f14:0x0000000000000000
f15:0x0000000000000000 f16:0x0000000000000000 f17:0x0000000000000000
f18:0x0000000000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x0000000000000000 f23:0x0000000000000000
f24:0x0000000000000000 f25:0x0000000000000000 f26:0x0000000000000000
f27:0x0000000000000000 f28:0x0000000000000000 f29:0x0000000000000000
f30:0x0000000000000000 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7501 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000068 pa1: 0x0000000000001610 pa2: 0x0000000000000000
pc: 0x000000200003e79c sp: 0x00000060ffffea00 fp: 0x00000060ffffeb80
v0: 0x0000000000000000 ra: 0x0000002000044284 ci: 0x000b120000000101
a0: 0x00000060ffffee88 a1: 0x00000060ffffee88 a2: 0x0000000000000000
a3: 0x0000000000000000 a4: 0x0000000000000001 a5: 0x0000000000000002
t0: 0x00000060ffffee88 t1: 0x0000004000029470 t2: 0x0000000000000000
t3: 0x0000000000000001 t4: 0x0000000000000008 t5: 0x0000000000000001
t6: 0x000000560003f540 t7: 0x000000400006ffb0 t8: 0x000000400006ffb0
t9: 0x000000400006ffb0 t10:0x00000060fffff72d t11:0x00000040000003d5
t12:0x000000000000000d t13:0x000000400006fec0
s0: 0x0000000000000000 s1: 0x00000060ffffee88 s2: 0x000000400001ee80
s3: 0x0000000000000000 s4: 0x0000000000000000 s5: 0x0000000000000000
f00:0x41a9b4d84f3ae3fa f01:0x3e3c58c6d8a67ba9 f02:0x0000000000000000
f03:0x41a9b4d84f3ae3fa f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x0000000000000002 f11:0x4030000000000000
f12:0x0000000000000000 f13:0x0000000000000000 f14:0x0000000000000000
f15:0x0000000000000000 f16:0x0000000000000000 f17:0x0000000000000000
f18:0x0000000000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x0000000000000000 f23:0x0000000000000000
f24:0x0000000000000000 f25:0x0000000000000000 f26:0x0000000000000000
f27:0x0000000000000000 f28:0x0000000000000000 f29:0x0000000000000000
f30:0x0000000000000000 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7520 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000068 pa1: 0x0000000000001610 pa2: 0x0000000000000000
pc: 0x000000200003e79c sp: 0x00000060ffffea00 fp: 0x00000060ffffeb80
v0: 0x0000000000000000 ra: 0x0000002000044284 ci: 0x000b120000000101
a0: 0x00000060ffffee88 a1: 0x00000060ffffee88 a2: 0x0000000000000000
a3: 0x0000000000000000 a4: 0x0000000000000001 a5: 0x0000000000000002
t0: 0x00000060ffffee88 t1: 0x0000004000029470 t2: 0x0000000000000000
t3: 0x0000000000000001 t4: 0x0000000000000008 t5: 0x0000000000000001
t6: 0x000000560003f540 t7: 0x00000040000afeb0 t8: 0x00000040000afeb0
t9: 0x00000040000afeb0 t10:0x00000060fffff72a t11:0x00000040000003d5
t12:0x000000000000000d t13:0x000000400008fe40
s0: 0x0000000000000000 s1: 0x00000060ffffee88 s2: 0x000000400001ee80
s3: 0x0000000000000000 s4: 0x0000000000000000 s5: 0x0000000000000000
f00:0x41a9b4d85a6213b9 f01:0x3e3c58c6d8a67ba9 f02:0x0000000000000000
f03:0x41a9b4d85a6213b9 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x0000000000000002 f11:0x4030000000000000
f12:0x0000000000000000 f13:0x0000000000000000 f14:0x0000000000000000
f15:0x0000000000000000 f16:0x0000000000000000 f17:0x0000000000000000
f18:0x0000000000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x0000000000000000 f23:0x0000000000000000
f24:0x0000000000000000 f25:0x0000000000000000 f26:0x0000000000000000
f27:0x0000000000000000 f28:0x0000000000000000 f29:0x0000000000000000
f30:0x0000000000000000 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7539 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000068 pa1: 0x0000000000001610 pa2: 0x0000000000000000
pc: 0x000000200003e79c sp: 0x00000060ffffea00 fp: 0x00000060ffffeb80
v0: 0x0000000000000000 ra: 0x0000002000044284 ci: 0x000b120000000101
a0: 0x00000060ffffee88 a1: 0x00000060ffffee88 a2: 0x0000000000000000
a3: 0x0000000000000000 a4: 0x0000000000000001 a5: 0x0000000000000002
t0: 0x00000060ffffee88 t1: 0x0000004000029470 t2: 0x0000000000000000
t3: 0x0000000000000001 t4: 0x0000000000000008 t5: 0x0000000000000001
t6: 0x000000560003f540 t7: 0x0000004000070130 t8: 0x0000004000070130
t9: 0x0000004000070130 t10:0x00000060fffff72d t11:0x00000040000003d5
t12:0x000000000000000d t13:0x0000004000070040
s0: 0x0000000000000000 s1: 0x00000060ffffee88 s2: 0x000000400001ee80
s3: 0x0000000000000000 s4: 0x0000000000000000 s5: 0x0000000000000000
f00:0x41a9b4d8658afcc8 f01:0x3e3c58c6d8a67ba9 f02:0x0000000000000000
f03:0x41a9b4d8658afcc8 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x0000000000000002 f11:0x4040000000000000
f12:0x0000000000000000 f13:0x0000000000000000 f14:0x0000000000000000
f15:0x0000000000000000 f16:0x0000000000000000 f17:0x0000000000000000
f18:0x0000000000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x0000000000000000 f23:0x0000000000000000
f24:0x0000000000000000 f25:0x0000000000000000 f26:0x0000000000000000
f27:0x0000000000000000 f28:0x0000000000000000 f29:0x0000000000000000
f30:0x0000000000000000 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7560 Operand range error
Agent printing core file information:
user exiting after receiving signal 11
Exit message came from virtual PE 0, logical PE 0x0
Register dump
pa0: 0x0000000000000068 pa1: 0x0000000000001610 pa2: 0x0000000000000000
pc: 0x000000200003e79c sp: 0x00000060ffffea00 fp: 0x00000060ffffeb80
v0: 0x0000000000000000 ra: 0x0000002000044284 ci: 0x000b120000000101
a0: 0x00000060ffffee88 a1: 0x00000060ffffee88 a2: 0x0000000000000000
a3: 0x0000000000000000 a4: 0x0000000000000001 a5: 0x0000000000000002
t0: 0x00000060ffffee88 t1: 0x0000004000029470 t2: 0x0000000000000000
t3: 0x0000000000000001 t4: 0x0000000000000008 t5: 0x0000000000000001
t6: 0x000000560003f540 t7: 0x00000040000b0030 t8: 0x00000040000b0030
t9: 0x00000040000b0030 t10:0x00000060fffff72a t11:0x00000040000003d5
t12:0x000000000000000d t13:0x000000400008ffc0
s0: 0x0000000000000000 s1: 0x00000060ffffee88 s2: 0x000000400001ee80
s3: 0x0000000000000000 s4: 0x0000000000000000 s5: 0x0000000000000000
f00:0x41a9b4d8713a9221 f01:0x3e3c58c6d8a67ba9 f02:0x0000000000000000
f03:0x41a9b4d8713a9221 f04:0x0000000000000000 f05:0x0000000000000000
f06:0x0000000000000000 f07:0x0000000000000000 f08:0x0000000000000000
f09:0x0000000000000000 f10:0x0000000000000002 f11:0x4040000000000000
f12:0x0000000000000000 f13:0x0000000000000000 f14:0x0000000000000000
f15:0x0000000000000000 f16:0x0000000000000000 f17:0x0000000000000000
f18:0x0000000000000000 f19:0x0000000000000000 f20:0x0000000000000000
f21:0x0000000000000000 f22:0x0000000000000000 f23:0x0000000000000000
f24:0x0000000000000000 f25:0x0000000000000000 f26:0x0000000000000000
f27:0x0000000000000000 f28:0x0000000000000000 f29:0x0000000000000000
f30:0x0000000000000000 fpcr:0x8900000000000000
Agent finished printing core file information.
User core dump completed (./mppcore)
/u4/gropp/mpiexmpl/maint/envs/t3d-epcc/mpirun[83]: 7584 Operand range error