-
Notifications
You must be signed in to change notification settings - Fork 2
/
p5.txt
4098 lines (3784 loc) · 331 KB
/
p5.txt
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
NOTE : Using LSA mode.
]> Creating Groups
]> Creating intercommunicators
-One Way :
*> 0 -> 5 *> 1 -> 5 *> 2 -> 3 *> 4 -> 2 *> 5 -> 0 *> 3 -> 2
]> The Other :
*> 0 -> 1 *> 1 -> 0 *> 2 -> 3 *> 0 -> 1 *> 2 -> 3 *> 3 -> 2
]> In and Out communicators :
GMRES : 0: 5 (1) -> 0 (2) -> 2 (1)
]> MPI communications ready to be used
ARNOLDI : 4: 2 (1) -> 2 (2) -> 5 (1)
GMRES : 1: 5 (1) -> 0 (2) -> 2 (1)
MAIN : 2: 0 (2) -> 1 (1) -> 3 (2)
ARNOLDI : 3: 2 (1) -> 2 (2) -> 5 (1)
LS : 5: 3 (2) -> 3 (1) -> 0 (2)
rank: 0/2 in group 0
rank: 0/1 in group 1
rank: 0/2 in group 2
rank: 1/2 in group 2
MPI WORLD SIZE = 2
]> Initializing PETSc/SLEPc
rank: 1/2 in group 0
rank: 0/1 in group 3
]> Opening input data files
Loading Matrix : ./data/utm300_300x300.dat
Loading Matrix : ./data/utm300_300x300.dat
Generated right hand side matrix b
Generated right hand side matrix b
]> Launching GMRES
]> Launching Father
]> Launching Arnoldi
]> Launching LS
#} GMRES Creating and setting vector x
GMRES has sent RESOLUTION COUNT = 1
------------
Start the 1 times Resolution
-------------
GMRES has sent RESOLUTION COUNT = 1
ERAM receving 1
0 KSP unpreconditioned resid norm 1.000000000000e+00 true resid norm 1.000000000000e+00 ||r(i)||/||b|| 1.000000000000e+00
i = 1
1 KSP unpreconditioned resid norm 8.169922768333e-01 true resid norm 8.169922768333e-01 ||r(i)||/||b|| 8.169922768333e-01
2 KSP unpreconditioned resid norm 7.909146328251e-01 true resid norm 7.909146328251e-01 ||r(i)||/||b|| 7.909146328251e-01
3 KSP unpreconditioned resid norm 7.658897308698e-01 true resid norm 7.658897308698e-01 ||r(i)||/||b|| 7.658897308698e-01
4 KSP unpreconditioned resid norm 7.454240458069e-01 true resid norm 7.454240458069e-01 ||r(i)||/||b|| 7.454240458069e-01
5 KSP unpreconditioned resid norm 7.428922616563e-01 true resid norm 7.428922616563e-01 ||r(i)||/||b|| 7.428922616563e-01
6 KSP unpreconditioned resid norm 7.382183648829e-01 true resid norm 7.382183648829e-01 ||r(i)||/||b|| 7.382183648829e-01
7 KSP unpreconditioned resid norm 7.317749999246e-01 true resid norm 7.317749999246e-01 ||r(i)||/||b|| 7.317749999246e-01
8 KSP unpreconditioned resid norm 7.259914375436e-01 true resid norm 7.259914375436e-01 ||r(i)||/||b|| 7.259914375436e-01
9 KSP unpreconditioned resid norm 7.227629390148e-01 true resid norm 7.227629390148e-01 ||r(i)||/||b|| 7.227629390148e-01
10 KSP unpreconditioned resid norm 7.169525651402e-01 true resid norm 7.169525651402e-01 ||r(i)||/||b|| 7.169525651402e-01
11 KSP unpreconditioned resid norm 7.104246450154e-01 true resid norm 7.104246450154e-01 ||r(i)||/||b|| 7.104246450154e-01
12 KSP unpreconditioned resid norm 6.965250043464e-01 true resid norm 6.965250043464e-01 ||r(i)||/||b|| 6.965250043464e-01
13 KSP unpreconditioned resid norm 6.877617068482e-01 true resid norm 6.877617068482e-01 ||r(i)||/||b|| 6.877617068482e-01
14 KSP unpreconditioned resid norm 6.864963088359e-01 true resid norm 6.864963088359e-01 ||r(i)||/||b|| 6.864963088359e-01
15 KSP unpreconditioned resid norm 6.864498634807e-01 true resid norm 6.864498634807e-01 ||r(i)||/||b|| 6.864498634807e-01
16 KSP unpreconditioned resid norm 6.864282406384e-01 true resid norm 6.864282406384e-01 ||r(i)||/||b|| 6.864282406384e-01
17 KSP unpreconditioned resid norm 6.861845976969e-01 true resid norm 6.861845976969e-01 ||r(i)||/||b|| 6.861845976969e-01
18 KSP unpreconditioned resid norm 6.846879848903e-01 true resid norm 6.846879848903e-01 ||r(i)||/||b|| 6.846879848903e-01
19 KSP unpreconditioned resid norm 6.833686593965e-01 true resid norm 6.833686593965e-01 ||r(i)||/||b|| 6.833686593965e-01
20 KSP unpreconditioned resid norm 6.832727548279e-01 true resid norm 6.832727548279e-01 ||r(i)||/||b|| 6.832727548279e-01
21 KSP unpreconditioned resid norm 6.826821000948e-01 true resid norm 6.826821000948e-01 ||r(i)||/||b|| 6.826821000948e-01
22 KSP unpreconditioned resid norm 6.749441304350e-01 true resid norm 6.749441304350e-01 ||r(i)||/||b|| 6.749441304350e-01
23 KSP unpreconditioned resid norm 6.646852853797e-01 true resid norm 6.646852853797e-01 ||r(i)||/||b|| 6.646852853797e-01
24 KSP unpreconditioned resid norm 6.640268872023e-01 true resid norm 6.640268872023e-01 ||r(i)||/||b|| 6.640268872023e-01
25 KSP unpreconditioned resid norm 6.595573994392e-01 true resid norm 6.595573994392e-01 ||r(i)||/||b|| 6.595573994392e-01
26 KSP unpreconditioned resid norm 6.568499882094e-01 true resid norm 6.568499882094e-01 ||r(i)||/||b|| 6.568499882094e-01
27 KSP unpreconditioned resid norm 6.566779481742e-01 true resid norm 6.566779481742e-01 ||r(i)||/||b|| 6.566779481742e-01
28 KSP unpreconditioned resid norm 6.556695372300e-01 true resid norm 6.556695372300e-01 ||r(i)||/||b|| 6.556695372300e-01
29 KSP unpreconditioned resid norm 6.556544268058e-01 true resid norm 6.556544268058e-01 ||r(i)||/||b|| 6.556544268058e-01
30 KSP unpreconditioned resid norm 6.554220896800e-01 true resid norm 6.554220896800e-01 ||r(i)||/||b|| 6.554220896800e-01
31 KSP unpreconditioned resid norm 6.548296858266e-01 true resid norm 6.548296858266e-01 ||r(i)||/||b|| 6.548296858266e-01
32 KSP unpreconditioned resid norm 6.542319545536e-01 true resid norm 6.542319545536e-01 ||r(i)||/||b|| 6.542319545536e-01
33 KSP unpreconditioned resid norm 6.542010853981e-01 true resid norm 6.542010853981e-01 ||r(i)||/||b|| 6.542010853981e-01
34 KSP unpreconditioned resid norm 6.520558808183e-01 true resid norm 6.520558808183e-01 ||r(i)||/||b|| 6.520558808183e-01
35 KSP unpreconditioned resid norm 6.485562735624e-01 true resid norm 6.485562735624e-01 ||r(i)||/||b|| 6.485562735624e-01
36 KSP unpreconditioned resid norm 6.436499733960e-01 true resid norm 6.436499733960e-01 ||r(i)||/||b|| 6.436499733960e-01
37 KSP unpreconditioned resid norm 6.436391031014e-01 true resid norm 6.436391031014e-01 ||r(i)||/||b|| 6.436391031014e-01
38 KSP unpreconditioned resid norm 6.435453147758e-01 true resid norm 6.435453147758e-01 ||r(i)||/||b|| 6.435453147758e-01
39 KSP unpreconditioned resid norm 6.430746584164e-01 true resid norm 6.430746584164e-01 ||r(i)||/||b|| 6.430746584164e-01
40 KSP unpreconditioned resid norm 6.337851607274e-01 true resid norm 6.337851607274e-01 ||r(i)||/||b|| 6.337851607274e-01
41 KSP unpreconditioned resid norm 6.294412872406e-01 true resid norm 6.294412872406e-01 ||r(i)||/||b|| 6.294412872406e-01
42 KSP unpreconditioned resid norm 6.288477205064e-01 true resid norm 6.288477205064e-01 ||r(i)||/||b|| 6.288477205064e-01
43 KSP unpreconditioned resid norm 6.281226880012e-01 true resid norm 6.281226880012e-01 ||r(i)||/||b|| 6.281226880012e-01
44 KSP unpreconditioned resid norm 6.265153971198e-01 true resid norm 6.265153971198e-01 ||r(i)||/||b|| 6.265153971198e-01
45 KSP unpreconditioned resid norm 6.219364441491e-01 true resid norm 6.219364441491e-01 ||r(i)||/||b|| 6.219364441491e-01
46 KSP unpreconditioned resid norm 6.028922708719e-01 true resid norm 6.028922708719e-01 ||r(i)||/||b|| 6.028922708719e-01
47 KSP unpreconditioned resid norm 5.968441362292e-01 true resid norm 5.968441362292e-01 ||r(i)||/||b|| 5.968441362292e-01
48 KSP unpreconditioned resid norm 5.959357900001e-01 true resid norm 5.959357900001e-01 ||r(i)||/||b|| 5.959357900001e-01
49 KSP unpreconditioned resid norm 5.930031947511e-01 true resid norm 5.930031947511e-01 ||r(i)||/||b|| 5.930031947511e-01
50 KSP unpreconditioned resid norm 5.918763163760e-01 true resid norm 5.918763163760e-01 ||r(i)||/||b|| 5.918763163760e-01
51 KSP unpreconditioned resid norm 5.918535119157e-01 true resid norm 5.918535119157e-01 ||r(i)||/||b|| 5.918535119157e-01
52 KSP unpreconditioned resid norm 5.845930088048e-01 true resid norm 5.845930088048e-01 ||r(i)||/||b|| 5.845930088048e-01
53 KSP unpreconditioned resid norm 5.830572656247e-01 true resid norm 5.830572656247e-01 ||r(i)||/||b|| 5.830572656247e-01
54 KSP unpreconditioned resid norm 5.811353575349e-01 true resid norm 5.811353575349e-01 ||r(i)||/||b|| 5.811353575349e-01
55 KSP unpreconditioned resid norm 5.793772482966e-01 true resid norm 5.793772482966e-01 ||r(i)||/||b|| 5.793772482966e-01
56 KSP unpreconditioned resid norm 5.784801042693e-01 true resid norm 5.784801042693e-01 ||r(i)||/||b|| 5.784801042693e-01
57 KSP unpreconditioned resid norm 5.782134103488e-01 true resid norm 5.782134103488e-01 ||r(i)||/||b|| 5.782134103488e-01
58 KSP unpreconditioned resid norm 5.781271586929e-01 true resid norm 5.781271586929e-01 ||r(i)||/||b|| 5.781271586929e-01
59 KSP unpreconditioned resid norm 5.690965168782e-01 true resid norm 5.690965168782e-01 ||r(i)||/||b|| 5.690965168782e-01
60 KSP unpreconditioned resid norm 5.688013709992e-01 true resid norm 5.688013709992e-01 ||r(i)||/||b|| 5.688013709992e-01
61 KSP unpreconditioned resid norm 5.658011953055e-01 true resid norm 5.658011953055e-01 ||r(i)||/||b|| 5.658011953055e-01
62 KSP unpreconditioned resid norm 5.627133281836e-01 true resid norm 5.627133281836e-01 ||r(i)||/||b|| 5.627133281836e-01
63 KSP unpreconditioned resid norm 5.621202271930e-01 true resid norm 5.621202271930e-01 ||r(i)||/||b|| 5.621202271930e-01
64 KSP unpreconditioned resid norm 5.614402322933e-01 true resid norm 5.614402322933e-01 ||r(i)||/||b|| 5.614402322933e-01
65 KSP unpreconditioned resid norm 5.523790320512e-01 true resid norm 5.523790320513e-01 ||r(i)||/||b|| 5.523790320513e-01
66 KSP unpreconditioned resid norm 5.500386571314e-01 true resid norm 5.500386571315e-01 ||r(i)||/||b|| 5.500386571315e-01
67 KSP unpreconditioned resid norm 5.499145989491e-01 true resid norm 5.499145989491e-01 ||r(i)||/||b|| 5.499145989491e-01
68 KSP unpreconditioned resid norm 5.454026327868e-01 true resid norm 5.454026327869e-01 ||r(i)||/||b|| 5.454026327869e-01
69 KSP unpreconditioned resid norm 5.453664678960e-01 true resid norm 5.453664678961e-01 ||r(i)||/||b|| 5.453664678961e-01
70 KSP unpreconditioned resid norm 5.299832034172e-01 true resid norm 5.299832034173e-01 ||r(i)||/||b|| 5.299832034173e-01
71 KSP unpreconditioned resid norm 5.268848422711e-01 true resid norm 5.268848422713e-01 ||r(i)||/||b|| 5.268848422713e-01
72 KSP unpreconditioned resid norm 5.254242720330e-01 true resid norm 5.254242720332e-01 ||r(i)||/||b|| 5.254242720332e-01
73 KSP unpreconditioned resid norm 5.252811551673e-01 true resid norm 5.252811551674e-01 ||r(i)||/||b|| 5.252811551674e-01
74 KSP unpreconditioned resid norm 5.249551461809e-01 true resid norm 5.249551461811e-01 ||r(i)||/||b|| 5.249551461811e-01
75 KSP unpreconditioned resid norm 5.249119553419e-01 true resid norm 5.249119553420e-01 ||r(i)||/||b|| 5.249119553420e-01
76 KSP unpreconditioned resid norm 5.201550658239e-01 true resid norm 5.201550658243e-01 ||r(i)||/||b|| 5.201550658243e-01
77 KSP unpreconditioned resid norm 5.189455341553e-01 true resid norm 5.189455341558e-01 ||r(i)||/||b|| 5.189455341558e-01
78 KSP unpreconditioned resid norm 5.185554037801e-01 true resid norm 5.185554037805e-01 ||r(i)||/||b|| 5.185554037805e-01
79 KSP unpreconditioned resid norm 5.151984788488e-01 true resid norm 5.151984788490e-01 ||r(i)||/||b|| 5.151984788490e-01
80 KSP unpreconditioned resid norm 5.140520576680e-01 true resid norm 5.140520576684e-01 ||r(i)||/||b|| 5.140520576684e-01
81 KSP unpreconditioned resid norm 5.077899929343e-01 true resid norm 5.077899929350e-01 ||r(i)||/||b|| 5.077899929350e-01
82 KSP unpreconditioned resid norm 4.895645992584e-01 true resid norm 4.895645992599e-01 ||r(i)||/||b|| 4.895645992599e-01
83 KSP unpreconditioned resid norm 4.673516223433e-01 true resid norm 4.673516223458e-01 ||r(i)||/||b|| 4.673516223458e-01
84 KSP unpreconditioned resid norm 4.612209395017e-01 true resid norm 4.612209395044e-01 ||r(i)||/||b|| 4.612209395044e-01
85 KSP unpreconditioned resid norm 4.547105559712e-01 true resid norm 4.547105559739e-01 ||r(i)||/||b|| 4.547105559739e-01
86 KSP unpreconditioned resid norm 4.456035989586e-01 true resid norm 4.456035989612e-01 ||r(i)||/||b|| 4.456035989612e-01
87 KSP unpreconditioned resid norm 4.215858874674e-01 true resid norm 4.215858874688e-01 ||r(i)||/||b|| 4.215858874688e-01
88 KSP unpreconditioned resid norm 4.080444547163e-01 true resid norm 4.080444547162e-01 ||r(i)||/||b|| 4.080444547162e-01
89 KSP unpreconditioned resid norm 3.937645010390e-01 true resid norm 3.937645010371e-01 ||r(i)||/||b|| 3.937645010371e-01
90 KSP unpreconditioned resid norm 3.783342037722e-01 true resid norm 3.783342037668e-01 ||r(i)||/||b|| 3.783342037668e-01
91 KSP unpreconditioned resid norm 3.693517870512e-01 true resid norm 3.693517870443e-01 ||r(i)||/||b|| 3.693517870443e-01
92 KSP unpreconditioned resid norm 3.654957308689e-01 true resid norm 3.654957308617e-01 ||r(i)||/||b|| 3.654957308617e-01
93 KSP unpreconditioned resid norm 3.522739154706e-01 true resid norm 3.522739154664e-01 ||r(i)||/||b|| 3.522739154664e-01
94 KSP unpreconditioned resid norm 3.324136715638e-01 true resid norm 3.324136715642e-01 ||r(i)||/||b|| 3.324136715642e-01
95 KSP unpreconditioned resid norm 3.225596589208e-01 true resid norm 3.225596589253e-01 ||r(i)||/||b|| 3.225596589253e-01
96 KSP unpreconditioned resid norm 3.211979334297e-01 true resid norm 3.211979334366e-01 ||r(i)||/||b|| 3.211979334366e-01
97 KSP unpreconditioned resid norm 3.206694675405e-01 true resid norm 3.206694675453e-01 ||r(i)||/||b|| 3.206694675453e-01
98 KSP unpreconditioned resid norm 3.206217346992e-01 true resid norm 3.206217347030e-01 ||r(i)||/||b|| 3.206217347030e-01
99 KSP unpreconditioned resid norm 3.196836853736e-01 true resid norm 3.196836853829e-01 ||r(i)||/||b|| 3.196836853829e-01
100 KSP unpreconditioned resid norm 3.191041990140e-01 true resid norm 3.191041990290e-01 ||r(i)||/||b|| 3.191041990290e-01
101 KSP unpreconditioned resid norm 3.190894715937e-01 true resid norm 3.190894716099e-01 ||r(i)||/||b|| 3.190894716099e-01
102 KSP unpreconditioned resid norm 3.189746595483e-01 true resid norm 3.189746595688e-01 ||r(i)||/||b|| 3.189746595688e-01
103 KSP unpreconditioned resid norm 3.185551246511e-01 true resid norm 3.185551246821e-01 ||r(i)||/||b|| 3.185551246821e-01
104 KSP unpreconditioned resid norm 3.184806612508e-01 true resid norm 3.184806612874e-01 ||r(i)||/||b|| 3.184806612874e-01
105 KSP unpreconditioned resid norm 3.164447908474e-01 true resid norm 3.164447909152e-01 ||r(i)||/||b|| 3.164447909152e-01
106 KSP unpreconditioned resid norm 3.086584374783e-01 true resid norm 3.086584376258e-01 ||r(i)||/||b|| 3.086584376258e-01
107 KSP unpreconditioned resid norm 2.997950760691e-01 true resid norm 2.997950762995e-01 ||r(i)||/||b|| 2.997950762995e-01
108 KSP unpreconditioned resid norm 2.936550133590e-01 true resid norm 2.936550136402e-01 ||r(i)||/||b|| 2.936550136402e-01
109 KSP unpreconditioned resid norm 2.861957802827e-01 true resid norm 2.861957806648e-01 ||r(i)||/||b|| 2.861957806648e-01
110 KSP unpreconditioned resid norm 2.791356211914e-01 true resid norm 2.791356217236e-01 ||r(i)||/||b|| 2.791356217236e-01
111 KSP unpreconditioned resid norm 2.718492648078e-01 true resid norm 2.718492655145e-01 ||r(i)||/||b|| 2.718492655145e-01
112 KSP unpreconditioned resid norm 2.669542998693e-01 true resid norm 2.669543007756e-01 ||r(i)||/||b|| 2.669543007756e-01
113 KSP unpreconditioned resid norm 2.618838826527e-01 true resid norm 2.618838838693e-01 ||r(i)||/||b|| 2.618838838693e-01
114 KSP unpreconditioned resid norm 2.598214061717e-01 true resid norm 2.598214075863e-01 ||r(i)||/||b|| 2.598214075863e-01
115 KSP unpreconditioned resid norm 2.561150040883e-01 true resid norm 2.561150058182e-01 ||r(i)||/||b|| 2.561150058182e-01
116 KSP unpreconditioned resid norm 2.535453705185e-01 true resid norm 2.535453725875e-01 ||r(i)||/||b|| 2.535453725875e-01
117 KSP unpreconditioned resid norm 2.531720041586e-01 true resid norm 2.531720064331e-01 ||r(i)||/||b|| 2.531720064331e-01
118 KSP unpreconditioned resid norm 2.466643557531e-01 true resid norm 2.466643592823e-01 ||r(i)||/||b|| 2.466643592823e-01
119 KSP unpreconditioned resid norm 2.464282443407e-01 true resid norm 2.464282482129e-01 ||r(i)||/||b|| 2.464282482129e-01
1 EPS converged value (error) #0 -0.444915+0.517993i (1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
1 EPS converged value (error) #3 -0.770238+0.409806iSend size=20 (2 scalars) to 0
(3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264i (4.29732377e-06)
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605i5 Receive size=20 (2 scalars) msg Number = 1
@} LSQR convhul negatif chsigne 20 cumul 20 mu1 7
(5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217i (9.43793115e-02)
Send size=20 (2 scalars) to 0
ERAM receving 1
i = 1
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
5 Receive size=20 (2 scalars) msg Number = 1
@} LSQR convhul negatif chsigne 40 cumul 40 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
1 EPS converged value (error) #0 -0.444915+0.517993i (1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
1 EPS converged value (error) #3 -0.770238+0.409806i (3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264i (4.29732377e-06)
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605i (5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217iSend size=20 (2 scalars) to 0
(9.43793115e-02)
5 Receive size=20 (2 scalars) msg Number = 2
Send size=20 (2 scalars) to 0
ERAM receving 1
i = 1
@} LSQR convhul negatif chsigne 60 cumul 60 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
5 Receive size=20 (2 scalars) msg Number = 2
@} LSQR convhul negatif chsigne 80 cumul 80 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
1 Receive size=32 (4 scalars) msg Number = 1
0 Receive size=32 (4 scalars) msg Number = 1
@@@>>>Preconditioning of LS method in: 120 iterations
120 KSP unpreconditioned resid norm 2.325311830220e+03 true resid norm 2.325311830220e+03 ||r(i)||/||b|| 2.325311830220e+03
121 KSP unpreconditioned resid norm 2.106746853293e+01 true resid norm 2.106746853293e+01 ||r(i)||/||b|| 2.106746853293e+01
122 KSP unpreconditioned resid norm 7.006838904830e-01 true resid norm 7.006838904830e-01 ||r(i)||/||b|| 7.006838904830e-01
123 KSP unpreconditioned resid norm 6.960821755403e-01 true resid norm 6.960821755401e-01 ||r(i)||/||b|| 6.960821755401e-01
124 KSP unpreconditioned resid norm 6.326414505099e-01 true resid norm 6.326414505212e-01 ||r(i)||/||b|| 6.326414505212e-01
125 KSP unpreconditioned resid norm 6.203337827352e-01 true resid norm 6.203337827479e-01 ||r(i)||/||b|| 6.203337827479e-01
126 KSP unpreconditioned resid norm 5.907091028183e-01 true resid norm 5.907091028299e-01 ||r(i)||/||b|| 5.907091028299e-01
127 KSP unpreconditioned resid norm 3.602163902494e-01 true resid norm 3.602163902548e-01 ||r(i)||/||b|| 3.602163902548e-01
128 KSP unpreconditioned resid norm 3.562689975602e-01 true resid norm 3.562689975653e-01 ||r(i)||/||b|| 3.562689975653e-01
129 KSP unpreconditioned resid norm 3.562160005226e-01 true resid norm 3.562160005279e-01 ||r(i)||/||b|| 3.562160005279e-01
130 KSP unpreconditioned resid norm 3.562093214159e-01 true resid norm 3.562093214213e-01 ||r(i)||/||b|| 3.562093214213e-01
131 KSP unpreconditioned resid norm 3.504750064824e-01 true resid norm 3.504750064867e-01 ||r(i)||/||b|| 3.504750064867e-01
132 KSP unpreconditioned resid norm 3.488060725990e-01 true resid norm 3.488060726034e-01 ||r(i)||/||b|| 3.488060726034e-01
133 KSP unpreconditioned resid norm 3.443176867775e-01 true resid norm 3.443176867836e-01 ||r(i)||/||b|| 3.443176867836e-01
134 KSP unpreconditioned resid norm 3.214131854031e-01 true resid norm 3.214131854153e-01 ||r(i)||/||b|| 3.214131854153e-01
135 KSP unpreconditioned resid norm 3.147386712601e-01 true resid norm 3.147386712760e-01 ||r(i)||/||b|| 3.147386712760e-01
136 KSP unpreconditioned resid norm 3.141931627346e-01 true resid norm 3.141931627510e-01 ||r(i)||/||b|| 3.141931627510e-01
137 KSP unpreconditioned resid norm 3.141539175287e-01 true resid norm 3.141539175451e-01 ||r(i)||/||b|| 3.141539175451e-01
138 KSP unpreconditioned resid norm 3.122479090429e-01 true resid norm 3.122479090618e-01 ||r(i)||/||b|| 3.122479090618e-01
139 KSP unpreconditioned resid norm 3.121702272757e-01 true resid norm 3.121702272938e-01 ||r(i)||/||b|| 3.121702272938e-01
140 KSP unpreconditioned resid norm 3.107857573432e-01 true resid norm 3.107857573655e-01 ||r(i)||/||b|| 3.107857573655e-01
141 KSP unpreconditioned resid norm 3.082343067846e-01 true resid norm 3.082343068044e-01 ||r(i)||/||b|| 3.082343068044e-01
142 KSP unpreconditioned resid norm 3.057410136757e-01 true resid norm 3.057410136888e-01 ||r(i)||/||b|| 3.057410136888e-01
143 KSP unpreconditioned resid norm 3.046506247888e-01 true resid norm 3.046506248078e-01 ||r(i)||/||b|| 3.046506248078e-01
144 KSP unpreconditioned resid norm 3.014153259753e-01 true resid norm 3.014153260074e-01 ||r(i)||/||b|| 3.014153260074e-01
145 KSP unpreconditioned resid norm 3.011598482973e-01 true resid norm 3.011598483250e-01 ||r(i)||/||b|| 3.011598483250e-01
146 KSP unpreconditioned resid norm 3.011469189704e-01 true resid norm 3.011469189969e-01 ||r(i)||/||b|| 3.011469189969e-01
147 KSP unpreconditioned resid norm 2.870018592251e-01 true resid norm 2.870018593642e-01 ||r(i)||/||b|| 2.870018593642e-01
148 KSP unpreconditioned resid norm 2.863188636268e-01 true resid norm 2.863188637734e-01 ||r(i)||/||b|| 2.863188637734e-01
149 KSP unpreconditioned resid norm 2.859306480122e-01 true resid norm 2.859306481622e-01 ||r(i)||/||b|| 2.859306481622e-01
150 KSP unpreconditioned resid norm 2.852613074876e-01 true resid norm 2.852613076459e-01 ||r(i)||/||b|| 2.852613076459e-01
151 KSP unpreconditioned resid norm 2.851771265329e-01 true resid norm 2.851771266866e-01 ||r(i)||/||b|| 2.851771266866e-01
152 KSP unpreconditioned resid norm 2.850105817588e-01 true resid norm 2.850105819011e-01 ||r(i)||/||b|| 2.850105819011e-01
153 KSP unpreconditioned resid norm 2.848213428008e-01 true resid norm 2.848213429337e-01 ||r(i)||/||b|| 2.848213429337e-01
154 KSP unpreconditioned resid norm 2.842579171001e-01 true resid norm 2.842579172465e-01 ||r(i)||/||b|| 2.842579172465e-01
155 KSP unpreconditioned resid norm 2.770294806798e-01 true resid norm 2.770294809098e-01 ||r(i)||/||b|| 2.770294809098e-01
156 KSP unpreconditioned resid norm 2.756789872158e-01 true resid norm 2.756789874640e-01 ||r(i)||/||b|| 2.756789874640e-01
157 KSP unpreconditioned resid norm 2.755910156414e-01 true resid norm 2.755910158825e-01 ||r(i)||/||b|| 2.755910158825e-01
158 KSP unpreconditioned resid norm 2.752308903106e-01 true resid norm 2.752308905712e-01 ||r(i)||/||b|| 2.752308905712e-01
159 KSP unpreconditioned resid norm 2.747822175769e-01 true resid norm 2.747822178633e-01 ||r(i)||/||b|| 2.747822178633e-01
160 KSP unpreconditioned resid norm 2.746771825722e-01 true resid norm 2.746771828649e-01 ||r(i)||/||b|| 2.746771828649e-01
161 KSP unpreconditioned resid norm 2.746073571014e-01 true resid norm 2.746073574017e-01 ||r(i)||/||b|| 2.746073574017e-01
162 KSP unpreconditioned resid norm 2.745581033328e-01 true resid norm 2.745581036189e-01 ||r(i)||/||b|| 2.745581036189e-01
163 KSP unpreconditioned resid norm 2.710680403600e-01 true resid norm 2.710680405898e-01 ||r(i)||/||b|| 2.710680405898e-01
164 KSP unpreconditioned resid norm 2.691728873075e-01 true resid norm 2.691728875430e-01 ||r(i)||/||b|| 2.691728875430e-01
165 KSP unpreconditioned resid norm 2.688365236200e-01 true resid norm 2.688365238556e-01 ||r(i)||/||b|| 2.688365238556e-01
166 KSP unpreconditioned resid norm 2.686750941063e-01 true resid norm 2.686750943218e-01 ||r(i)||/||b|| 2.686750943218e-01
167 KSP unpreconditioned resid norm 2.686732156392e-01 true resid norm 2.686732158557e-01 ||r(i)||/||b|| 2.686732158557e-01
168 KSP unpreconditioned resid norm 2.672379947364e-01 true resid norm 2.672379948283e-01 ||r(i)||/||b|| 2.672379948283e-01
169 KSP unpreconditioned resid norm 2.648914026639e-01 true resid norm 2.648914025358e-01 ||r(i)||/||b|| 2.648914025358e-01
170 KSP unpreconditioned resid norm 2.646145398263e-01 true resid norm 2.646145396163e-01 ||r(i)||/||b|| 2.646145396163e-01
171 KSP unpreconditioned resid norm 2.630130383772e-01 true resid norm 2.630130378724e-01 ||r(i)||/||b|| 2.630130378724e-01
172 KSP unpreconditioned resid norm 2.589903165364e-01 true resid norm 2.589903150849e-01 ||r(i)||/||b|| 2.589903150849e-01
173 KSP unpreconditioned resid norm 2.577444340486e-01 true resid norm 2.577444319324e-01 ||r(i)||/||b|| 2.577444319324e-01
174 KSP unpreconditioned resid norm 2.576309823849e-01 true resid norm 2.576309799701e-01 ||r(i)||/||b|| 2.576309799701e-01
175 KSP unpreconditioned resid norm 2.571155170962e-01 true resid norm 2.571155137747e-01 ||r(i)||/||b|| 2.571155137747e-01
176 KSP unpreconditioned resid norm 2.570848677140e-01 true resid norm 2.570848642070e-01 ||r(i)||/||b|| 2.570848642070e-01
177 KSP unpreconditioned resid norm 2.570184135167e-01 true resid norm 2.570184101783e-01 ||r(i)||/||b|| 2.570184101783e-01
178 KSP unpreconditioned resid norm 2.568000472862e-01 true resid norm 2.568000436770e-01 ||r(i)||/||b|| 2.568000436770e-01
179 KSP unpreconditioned resid norm 2.567315458602e-01 true resid norm 2.567315421419e-01 ||r(i)||/||b|| 2.567315421419e-01
180 KSP unpreconditioned resid norm 2.565469328998e-01 true resid norm 2.565469293447e-01 ||r(i)||/||b|| 2.565469293447e-01
181 KSP unpreconditioned resid norm 2.565200323292e-01 true resid norm 2.565200287841e-01 ||r(i)||/||b|| 2.565200287841e-01
182 KSP unpreconditioned resid norm 2.560055909451e-01 true resid norm 2.560055872300e-01 ||r(i)||/||b|| 2.560055872300e-01
183 KSP unpreconditioned resid norm 2.552082796093e-01 true resid norm 2.552082760628e-01 ||r(i)||/||b|| 2.552082760628e-01
184 KSP unpreconditioned resid norm 2.546054240328e-01 true resid norm 2.546054206655e-01 ||r(i)||/||b|| 2.546054206655e-01
185 KSP unpreconditioned resid norm 2.532800698281e-01 true resid norm 2.532800666877e-01 ||r(i)||/||b|| 2.532800666877e-01
186 KSP unpreconditioned resid norm 2.532800361505e-01 true resid norm 2.532800330089e-01 ||r(i)||/||b|| 2.532800330089e-01
187 KSP unpreconditioned resid norm 2.525395971445e-01 true resid norm 2.525395940598e-01 ||r(i)||/||b|| 2.525395940598e-01
188 KSP unpreconditioned resid norm 2.520773251228e-01 true resid norm 2.520773221897e-01 ||r(i)||/||b|| 2.520773221897e-01
189 KSP unpreconditioned resid norm 2.516915897986e-01 true resid norm 2.516915869897e-01 ||r(i)||/||b|| 2.516915869897e-01
190 KSP unpreconditioned resid norm 2.516760723133e-01 true resid norm 2.516760695658e-01 ||r(i)||/||b|| 2.516760695658e-01
191 KSP unpreconditioned resid norm 2.506049834543e-01 true resid norm 2.506049803645e-01 ||r(i)||/||b|| 2.506049803645e-01
192 KSP unpreconditioned resid norm 2.502398169442e-01 true resid norm 2.502398135846e-01 ||r(i)||/||b|| 2.502398135846e-01
193 KSP unpreconditioned resid norm 2.489934346130e-01 true resid norm 2.489934299587e-01 ||r(i)||/||b|| 2.489934299587e-01
194 KSP unpreconditioned resid norm 2.487856156812e-01 true resid norm 2.487856100787e-01 ||r(i)||/||b|| 2.487856100787e-01
195 KSP unpreconditioned resid norm 2.482867854919e-01 true resid norm 2.482867773521e-01 ||r(i)||/||b|| 2.482867773521e-01
196 KSP unpreconditioned resid norm 2.459787315046e-01 true resid norm 2.459787179176e-01 ||r(i)||/||b|| 2.459787179176e-01
197 KSP unpreconditioned resid norm 2.459521954599e-01 true resid norm 2.459521824645e-01 ||r(i)||/||b|| 2.459521824645e-01
198 KSP unpreconditioned resid norm 2.442172387669e-01 true resid norm 2.442172318098e-01 ||r(i)||/||b|| 2.442172318098e-01
199 KSP unpreconditioned resid norm 2.413164793042e-01 true resid norm 2.413164700943e-01 ||r(i)||/||b|| 2.413164700943e-01
200 KSP unpreconditioned resid norm 2.391920728586e-01 true resid norm 2.391920673641e-01 ||r(i)||/||b|| 2.391920673641e-01
201 KSP unpreconditioned resid norm 2.379668969711e-01 true resid norm 2.379669030878e-01 ||r(i)||/||b|| 2.379669030878e-01
202 KSP unpreconditioned resid norm 2.379129251716e-01 true resid norm 2.379129340757e-01 ||r(i)||/||b|| 2.379129340757e-01
203 KSP unpreconditioned resid norm 2.378638614003e-01 true resid norm 2.378638729484e-01 ||r(i)||/||b|| 2.378638729484e-01
204 KSP unpreconditioned resid norm 2.378406458858e-01 true resid norm 2.378406559325e-01 ||r(i)||/||b|| 2.378406559325e-01
205 KSP unpreconditioned resid norm 2.378388537252e-01 true resid norm 2.378388629709e-01 ||r(i)||/||b|| 2.378388629709e-01
206 KSP unpreconditioned resid norm 2.371225079895e-01 true resid norm 2.371224955083e-01 ||r(i)||/||b|| 2.371224955083e-01
207 KSP unpreconditioned resid norm 2.370658146516e-01 true resid norm 2.370657926090e-01 ||r(i)||/||b|| 2.370657926090e-01
208 KSP unpreconditioned resid norm 2.360136914518e-01 true resid norm 2.360136170367e-01 ||r(i)||/||b|| 2.360136170367e-01
209 KSP unpreconditioned resid norm 2.358726008200e-01 true resid norm 2.358725155952e-01 ||r(i)||/||b|| 2.358725155952e-01
210 KSP unpreconditioned resid norm 2.357008377304e-01 true resid norm 2.357007268944e-01 ||r(i)||/||b|| 2.357007268944e-01
211 KSP unpreconditioned resid norm 2.329999729626e-01 true resid norm 2.329997352956e-01 ||r(i)||/||b|| 2.329997352956e-01
212 KSP unpreconditioned resid norm 2.329985817825e-01 true resid norm 2.329983447571e-01 ||r(i)||/||b|| 2.329983447571e-01
213 KSP unpreconditioned resid norm 2.297906743126e-01 true resid norm 2.297902029862e-01 ||r(i)||/||b|| 2.297902029862e-01
214 KSP unpreconditioned resid norm 2.246131353316e-01 true resid norm 2.246120398850e-01 ||r(i)||/||b|| 2.246120398850e-01
215 KSP unpreconditioned resid norm 2.188579556700e-01 true resid norm 2.188557748957e-01 ||r(i)||/||b|| 2.188557748957e-01
216 KSP unpreconditioned resid norm 2.135603563474e-01 true resid norm 2.135571068693e-01 ||r(i)||/||b|| 2.135571068693e-01
217 KSP unpreconditioned resid norm 2.055333729707e-01 true resid norm 2.055285345850e-01 ||r(i)||/||b|| 2.055285345850e-01
218 KSP unpreconditioned resid norm 2.025692102948e-01 true resid norm 2.025647924796e-01 ||r(i)||/||b|| 2.025647924796e-01
219 KSP unpreconditioned resid norm 1.997377690819e-01 true resid norm 1.997349576408e-01 ||r(i)||/||b|| 1.997349576408e-01
220 KSP unpreconditioned resid norm 1.934926249057e-01 true resid norm 1.934912890246e-01 ||r(i)||/||b|| 1.934912890246e-01
221 KSP unpreconditioned resid norm 1.778333106517e-01 true resid norm 1.778321961337e-01 ||r(i)||/||b|| 1.778321961337e-01
222 KSP unpreconditioned resid norm 1.700198589079e-01 true resid norm 1.700100072344e-01 ||r(i)||/||b|| 1.700100072344e-01
223 KSP unpreconditioned resid norm 1.612501184731e-01 true resid norm 1.612257072249e-01 ||r(i)||/||b|| 1.612257072249e-01
224 KSP unpreconditioned resid norm 1.572044242413e-01 true resid norm 1.571702678574e-01 ||r(i)||/||b|| 1.571702678574e-01
225 KSP unpreconditioned resid norm 1.529414340523e-01 true resid norm 1.528910895633e-01 ||r(i)||/||b|| 1.528910895633e-01
226 KSP unpreconditioned resid norm 1.480751503309e-01 true resid norm 1.480109303166e-01 ||r(i)||/||b|| 1.480109303166e-01
227 KSP unpreconditioned resid norm 1.468845426874e-01 true resid norm 1.468224463760e-01 ||r(i)||/||b|| 1.468224463760e-01
228 KSP unpreconditioned resid norm 1.431574504403e-01 true resid norm 1.431088567417e-01 ||r(i)||/||b|| 1.431088567417e-01
229 KSP unpreconditioned resid norm 1.418259619434e-01 true resid norm 1.417927992631e-01 ||r(i)||/||b|| 1.417927992631e-01
230 KSP unpreconditioned resid norm 1.404931734770e-01 true resid norm 1.404920745963e-01 ||r(i)||/||b|| 1.404920745963e-01
231 KSP unpreconditioned resid norm 1.398903279849e-01 true resid norm 1.399192225352e-01 ||r(i)||/||b|| 1.399192225352e-01
232 KSP unpreconditioned resid norm 1.370800582197e-01 true resid norm 1.372208704028e-01 ||r(i)||/||b|| 1.372208704028e-01
233 KSP unpreconditioned resid norm 1.328199811630e-01 true resid norm 1.330831103920e-01 ||r(i)||/||b|| 1.330831103920e-01
234 KSP unpreconditioned resid norm 1.293857627595e-01 true resid norm 1.297469387473e-01 ||r(i)||/||b|| 1.297469387473e-01
235 KSP unpreconditioned resid norm 1.279871690186e-01 true resid norm 1.284471681122e-01 ||r(i)||/||b|| 1.284471681122e-01
236 KSP unpreconditioned resid norm 1.279628979472e-01 true resid norm 1.284120001505e-01 ||r(i)||/||b|| 1.284120001505e-01
237 KSP unpreconditioned resid norm 1.278417987433e-01 true resid norm 1.283172756256e-01 ||r(i)||/||b|| 1.283172756256e-01
238 KSP unpreconditioned resid norm 1.243919389177e-01 true resid norm 1.249079681590e-01 ||r(i)||/||b|| 1.249079681590e-01
239 KSP unpreconditioned resid norm 1.194687106550e-01 true resid norm 1.199798629257e-01 ||r(i)||/||b|| 1.199798629257e-01
1 EPS converged value (error) #0 -0.444915+0.517993i (1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
1 EPS converged value (error) #3 -0.770238+0.409806i (3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264i (4.29732377e-06)
Send size=20 (2 scalars) to 0
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605i (5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217i (9.43793115e-02)
Send size=20 (2 scalars) to 0
ERAM receving 1
i = 1
5 Receive size=20 (2 scalars) msg Number = 3
@} LSQR convhul negatif chsigne 100 cumul 100 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
5 Receive size=20 (2 scalars) msg Number = 3
@} LSQR convhul negatif chsigne 120 cumul 120 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
1 EPS converged value (error) #0 -0.444915+0.517993i (1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
1 EPS converged value (error) #3 -0.770238+0.409806i (3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264iSend size=20 (2 scalars) to 0
5 Receive size=20 (2 scalars) msg Number = 4
(4.29732377e-06)
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605i (5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217i (9.43793115e-02)
Send size=20 (2 scalars) to 0
ERAM receving 1
i = 1
@} LSQR convhul negatif chsigne 140 cumul 140 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
5 Receive size=20 (2 scalars) msg Number = 4
@} LSQR convhul negatif chsigne 160 cumul 160 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
0 Receive size=32 (4 scalars) msg Number = 2
1 Receive size=32 (4 scalars) msg Number = 2
@@@>>>Preconditioning of LS method in: 240 iterations
240 KSP unpreconditioned resid norm 6.377524385115e+00 true resid norm 6.377524385115e+00 ||r(i)||/||b|| 6.377524385115e+00
241 KSP unpreconditioned resid norm 3.724485437154e-01 true resid norm 3.724485437153e-01 ||r(i)||/||b|| 3.724485437153e-01
242 KSP unpreconditioned resid norm 3.720679125468e-01 true resid norm 3.720679125467e-01 ||r(i)||/||b|| 3.720679125467e-01
243 KSP unpreconditioned resid norm 3.189759429751e-01 true resid norm 3.189759429748e-01 ||r(i)||/||b|| 3.189759429748e-01
244 KSP unpreconditioned resid norm 3.180536915983e-01 true resid norm 3.180536915983e-01 ||r(i)||/||b|| 3.180536915983e-01
245 KSP unpreconditioned resid norm 2.615030205766e-01 true resid norm 2.615030205766e-01 ||r(i)||/||b|| 2.615030205766e-01
246 KSP unpreconditioned resid norm 2.584637938011e-01 true resid norm 2.584637938009e-01 ||r(i)||/||b|| 2.584637938009e-01
247 KSP unpreconditioned resid norm 2.294476355402e-01 true resid norm 2.294476355404e-01 ||r(i)||/||b|| 2.294476355404e-01
248 KSP unpreconditioned resid norm 2.222358749407e-01 true resid norm 2.222358749406e-01 ||r(i)||/||b|| 2.222358749406e-01
249 KSP unpreconditioned resid norm 2.173870631991e-01 true resid norm 2.173870631988e-01 ||r(i)||/||b|| 2.173870631988e-01
250 KSP unpreconditioned resid norm 2.165319347874e-01 true resid norm 2.165319347874e-01 ||r(i)||/||b|| 2.165319347874e-01
251 KSP unpreconditioned resid norm 2.150344905949e-01 true resid norm 2.150344905948e-01 ||r(i)||/||b|| 2.150344905948e-01
252 KSP unpreconditioned resid norm 2.111158242330e-01 true resid norm 2.111158242328e-01 ||r(i)||/||b|| 2.111158242328e-01
253 KSP unpreconditioned resid norm 2.106493016054e-01 true resid norm 2.106493016053e-01 ||r(i)||/||b|| 2.106493016053e-01
254 KSP unpreconditioned resid norm 2.073500200420e-01 true resid norm 2.073500200416e-01 ||r(i)||/||b|| 2.073500200416e-01
255 KSP unpreconditioned resid norm 2.061991442154e-01 true resid norm 2.061991442153e-01 ||r(i)||/||b|| 2.061991442153e-01
256 KSP unpreconditioned resid norm 2.052777513161e-01 true resid norm 2.052777513160e-01 ||r(i)||/||b|| 2.052777513160e-01
257 KSP unpreconditioned resid norm 2.002029849128e-01 true resid norm 2.002029849128e-01 ||r(i)||/||b|| 2.002029849128e-01
258 KSP unpreconditioned resid norm 1.994329077757e-01 true resid norm 1.994329077758e-01 ||r(i)||/||b|| 1.994329077758e-01
259 KSP unpreconditioned resid norm 1.953494581634e-01 true resid norm 1.953494581632e-01 ||r(i)||/||b|| 1.953494581632e-01
260 KSP unpreconditioned resid norm 1.949381895943e-01 true resid norm 1.949381895943e-01 ||r(i)||/||b|| 1.949381895943e-01
261 KSP unpreconditioned resid norm 1.909128727957e-01 true resid norm 1.909128727957e-01 ||r(i)||/||b|| 1.909128727957e-01
262 KSP unpreconditioned resid norm 1.907128411192e-01 true resid norm 1.907128411191e-01 ||r(i)||/||b|| 1.907128411191e-01
263 KSP unpreconditioned resid norm 1.907115062461e-01 true resid norm 1.907115062460e-01 ||r(i)||/||b|| 1.907115062460e-01
264 KSP unpreconditioned resid norm 1.906972893023e-01 true resid norm 1.906972893022e-01 ||r(i)||/||b|| 1.906972893022e-01
265 KSP unpreconditioned resid norm 1.906761599495e-01 true resid norm 1.906761599494e-01 ||r(i)||/||b|| 1.906761599494e-01
266 KSP unpreconditioned resid norm 1.902494946701e-01 true resid norm 1.902494946700e-01 ||r(i)||/||b|| 1.902494946700e-01
267 KSP unpreconditioned resid norm 1.894109259420e-01 true resid norm 1.894109259420e-01 ||r(i)||/||b|| 1.894109259420e-01
268 KSP unpreconditioned resid norm 1.885385324449e-01 true resid norm 1.885385324450e-01 ||r(i)||/||b|| 1.885385324450e-01
269 KSP unpreconditioned resid norm 1.884385505455e-01 true resid norm 1.884385505457e-01 ||r(i)||/||b|| 1.884385505457e-01
270 KSP unpreconditioned resid norm 1.818545691038e-01 true resid norm 1.818545691038e-01 ||r(i)||/||b|| 1.818545691038e-01
271 KSP unpreconditioned resid norm 1.747860674343e-01 true resid norm 1.747860674344e-01 ||r(i)||/||b|| 1.747860674344e-01
272 KSP unpreconditioned resid norm 1.543602650139e-01 true resid norm 1.543602650138e-01 ||r(i)||/||b|| 1.543602650138e-01
273 KSP unpreconditioned resid norm 1.510483242288e-01 true resid norm 1.510483242287e-01 ||r(i)||/||b|| 1.510483242287e-01
274 KSP unpreconditioned resid norm 1.487835265906e-01 true resid norm 1.487835265906e-01 ||r(i)||/||b|| 1.487835265906e-01
275 KSP unpreconditioned resid norm 1.457362819833e-01 true resid norm 1.457362819832e-01 ||r(i)||/||b|| 1.457362819832e-01
276 KSP unpreconditioned resid norm 1.440533230544e-01 true resid norm 1.440533230542e-01 ||r(i)||/||b|| 1.440533230542e-01
277 KSP unpreconditioned resid norm 1.440530343548e-01 true resid norm 1.440530343547e-01 ||r(i)||/||b|| 1.440530343547e-01
278 KSP unpreconditioned resid norm 1.440014147561e-01 true resid norm 1.440014147563e-01 ||r(i)||/||b|| 1.440014147563e-01
279 KSP unpreconditioned resid norm 1.393635286848e-01 true resid norm 1.393635286848e-01 ||r(i)||/||b|| 1.393635286848e-01
280 KSP unpreconditioned resid norm 1.367951202633e-01 true resid norm 1.367951202633e-01 ||r(i)||/||b|| 1.367951202633e-01
281 KSP unpreconditioned resid norm 1.367047415366e-01 true resid norm 1.367047415366e-01 ||r(i)||/||b|| 1.367047415366e-01
282 KSP unpreconditioned resid norm 1.366061239856e-01 true resid norm 1.366061239856e-01 ||r(i)||/||b|| 1.366061239856e-01
283 KSP unpreconditioned resid norm 1.352628895844e-01 true resid norm 1.352628895843e-01 ||r(i)||/||b|| 1.352628895843e-01
284 KSP unpreconditioned resid norm 1.307605711987e-01 true resid norm 1.307605711985e-01 ||r(i)||/||b|| 1.307605711985e-01
285 KSP unpreconditioned resid norm 1.289227006793e-01 true resid norm 1.289227006792e-01 ||r(i)||/||b|| 1.289227006792e-01
286 KSP unpreconditioned resid norm 1.285904292779e-01 true resid norm 1.285904292779e-01 ||r(i)||/||b|| 1.285904292779e-01
287 KSP unpreconditioned resid norm 1.284342412438e-01 true resid norm 1.284342412437e-01 ||r(i)||/||b|| 1.284342412437e-01
288 KSP unpreconditioned resid norm 1.284225614379e-01 true resid norm 1.284225614377e-01 ||r(i)||/||b|| 1.284225614377e-01
289 KSP unpreconditioned resid norm 1.283201839293e-01 true resid norm 1.283201839292e-01 ||r(i)||/||b|| 1.283201839292e-01
290 KSP unpreconditioned resid norm 1.279907537721e-01 true resid norm 1.279907537719e-01 ||r(i)||/||b|| 1.279907537719e-01
291 KSP unpreconditioned resid norm 1.279752747454e-01 true resid norm 1.279752747452e-01 ||r(i)||/||b|| 1.279752747452e-01
292 KSP unpreconditioned resid norm 1.279297962747e-01 true resid norm 1.279297962745e-01 ||r(i)||/||b|| 1.279297962745e-01
293 KSP unpreconditioned resid norm 1.277773127348e-01 true resid norm 1.277773127347e-01 ||r(i)||/||b|| 1.277773127347e-01
294 KSP unpreconditioned resid norm 1.277397951680e-01 true resid norm 1.277397951679e-01 ||r(i)||/||b|| 1.277397951679e-01
295 KSP unpreconditioned resid norm 1.273542918171e-01 true resid norm 1.273542918171e-01 ||r(i)||/||b|| 1.273542918171e-01
296 KSP unpreconditioned resid norm 1.272095337858e-01 true resid norm 1.272095337857e-01 ||r(i)||/||b|| 1.272095337857e-01
297 KSP unpreconditioned resid norm 1.270959302534e-01 true resid norm 1.270959302536e-01 ||r(i)||/||b|| 1.270959302536e-01
298 KSP unpreconditioned resid norm 1.269089532797e-01 true resid norm 1.269089532798e-01 ||r(i)||/||b|| 1.269089532798e-01
299 KSP unpreconditioned resid norm 1.268621604333e-01 true resid norm 1.268621604333e-01 ||r(i)||/||b|| 1.268621604333e-01
300 KSP unpreconditioned resid norm 1.254781906813e-01 true resid norm 1.254781906811e-01 ||r(i)||/||b|| 1.254781906811e-01
301 KSP unpreconditioned resid norm 1.245683194642e-01 true resid norm 1.245683194638e-01 ||r(i)||/||b|| 1.245683194638e-01
302 KSP unpreconditioned resid norm 1.244913377894e-01 true resid norm 1.244913377888e-01 ||r(i)||/||b|| 1.244913377888e-01
303 KSP unpreconditioned resid norm 1.244579351551e-01 true resid norm 1.244579351546e-01 ||r(i)||/||b|| 1.244579351546e-01
304 KSP unpreconditioned resid norm 1.243586862528e-01 true resid norm 1.243586862524e-01 ||r(i)||/||b|| 1.243586862524e-01
305 KSP unpreconditioned resid norm 1.243565678759e-01 true resid norm 1.243565678754e-01 ||r(i)||/||b|| 1.243565678754e-01
306 KSP unpreconditioned resid norm 1.242342318455e-01 true resid norm 1.242342318453e-01 ||r(i)||/||b|| 1.242342318453e-01
307 KSP unpreconditioned resid norm 1.221046597008e-01 true resid norm 1.221046597024e-01 ||r(i)||/||b|| 1.221046597024e-01
308 KSP unpreconditioned resid norm 1.182225971952e-01 true resid norm 1.182225971998e-01 ||r(i)||/||b|| 1.182225971998e-01
309 KSP unpreconditioned resid norm 1.172964044961e-01 true resid norm 1.172964045009e-01 ||r(i)||/||b|| 1.172964045009e-01
310 KSP unpreconditioned resid norm 1.158527555231e-01 true resid norm 1.158527555273e-01 ||r(i)||/||b|| 1.158527555273e-01
311 KSP unpreconditioned resid norm 1.152263993891e-01 true resid norm 1.152263993922e-01 ||r(i)||/||b|| 1.152263993922e-01
312 KSP unpreconditioned resid norm 1.152025268049e-01 true resid norm 1.152025268078e-01 ||r(i)||/||b|| 1.152025268078e-01
313 KSP unpreconditioned resid norm 1.143009056315e-01 true resid norm 1.143009056358e-01 ||r(i)||/||b|| 1.143009056358e-01
314 KSP unpreconditioned resid norm 1.129178775080e-01 true resid norm 1.129178775159e-01 ||r(i)||/||b|| 1.129178775159e-01
315 KSP unpreconditioned resid norm 1.088895635542e-01 true resid norm 1.088895635756e-01 ||r(i)||/||b|| 1.088895635756e-01
316 KSP unpreconditioned resid norm 1.056470293125e-01 true resid norm 1.056470293461e-01 ||r(i)||/||b|| 1.056470293461e-01
317 KSP unpreconditioned resid norm 1.033214336272e-01 true resid norm 1.033214336631e-01 ||r(i)||/||b|| 1.033214336631e-01
318 KSP unpreconditioned resid norm 1.023422655617e-01 true resid norm 1.023422655920e-01 ||r(i)||/||b|| 1.023422655920e-01
319 KSP unpreconditioned resid norm 1.018531572756e-01 true resid norm 1.018531572986e-01 ||r(i)||/||b|| 1.018531572986e-01
320 KSP unpreconditioned resid norm 9.938217528632e-02 true resid norm 9.938217530738e-02 ||r(i)||/||b|| 9.938217530738e-02
321 KSP unpreconditioned resid norm 9.376155966702e-02 true resid norm 9.376155965952e-02 ||r(i)||/||b|| 9.376155965952e-02
322 KSP unpreconditioned resid norm 8.884338767903e-02 true resid norm 8.884338763169e-02 ||r(i)||/||b|| 8.884338763169e-02
1 EPS converged value (error) #0 -0.444915+0.517993i (1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
Send size=20 (2 scalars) to 0
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
5 Receive size=20 (2 scalars) msg Number = 5
1 EPS converged value (error) #3 -0.770238+0.409806i (3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264i (4.29732377e-06)
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605i (5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
323 KSP unpreconditioned resid norm 8.453074539598e-02 true resid norm 8.453074529599e-02 ||r(i)||/||b|| 8.453074529599e-02
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217i (9.43793115e-02)
Send size=20 (2 scalars) to 0
ERAM receving 1
i = 1
324 KSP unpreconditioned resid norm 8.247942263123e-02 true resid norm 8.247942246667e-02 ||r(i)||/||b|| 8.247942246667e-02
325 KSP unpreconditioned resid norm 8.227670236784e-02 true resid norm 8.227670218254e-02 ||r(i)||/||b|| 8.227670218254e-02
326 KSP unpreconditioned resid norm 8.200241599041e-02 true resid norm 8.200241579003e-02 ||r(i)||/||b|| 8.200241579003e-02
@} LSQR convhul negatif chsigne 180 cumul 180 mu1 7
327 KSP unpreconditioned resid norm 8.074432556406e-02 true resid norm 8.074432535592e-02 ||r(i)||/||b|| 8.074432535592e-02
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
5 Receive size=20 (2 scalars) msg Number = 5
328 KSP unpreconditioned resid norm 7.992109665377e-02 true resid norm 7.992109643668e-02 ||r(i)||/||b|| 7.992109643668e-02
329 KSP unpreconditioned resid norm 7.691294034156e-02 true resid norm 7.691294006451e-02 ||r(i)||/||b|| 7.691294006451e-02
330 KSP unpreconditioned resid norm 7.247583421641e-02 true resid norm 7.247583392286e-02 ||r(i)||/||b|| 7.247583392286e-02
331 KSP unpreconditioned resid norm 7.208514071628e-02 true resid norm 7.208514036574e-02 ||r(i)||/||b|| 7.208514036574e-02
332 KSP unpreconditioned resid norm 7.050364089625e-02 true resid norm 7.050364036820e-02 ||r(i)||/||b|| 7.050364036820e-02
@} LSQR convhul negatif chsigne 200 cumul 200 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
333 KSP unpreconditioned resid norm 7.026116970343e-02 true resid norm 7.026116912519e-02 ||r(i)||/||b|| 7.026116912519e-02
334 KSP unpreconditioned resid norm 7.026082911086e-02 true resid norm 7.026082853105e-02 ||r(i)||/||b|| 7.026082853105e-02
335 KSP unpreconditioned resid norm 6.995043381537e-02 true resid norm 6.995043322610e-02 ||r(i)||/||b|| 6.995043322610e-02
336 KSP unpreconditioned resid norm 6.931671384596e-02 true resid norm 6.931671326210e-02 ||r(i)||/||b|| 6.931671326210e-02
337 KSP unpreconditioned resid norm 6.805936185033e-02 true resid norm 6.805936122255e-02 ||r(i)||/||b|| 6.805936122255e-02
338 KSP unpreconditioned resid norm 6.739248032059e-02 true resid norm 6.739247953658e-02 ||r(i)||/||b|| 6.739247953658e-02
339 KSP unpreconditioned resid norm 6.679312080893e-02 true resid norm 6.679311980186e-02 ||r(i)||/||b|| 6.679311980186e-02
340 KSP unpreconditioned resid norm 6.454549410426e-02 true resid norm 6.454549275142e-02 ||r(i)||/||b|| 6.454549275142e-02
341 KSP unpreconditioned resid norm 5.858664899105e-02 true resid norm 5.858664721440e-02 ||r(i)||/||b|| 5.858664721440e-02
342 KSP unpreconditioned resid norm 5.290644773233e-02 true resid norm 5.290644493536e-02 ||r(i)||/||b|| 5.290644493536e-02
343 KSP unpreconditioned resid norm 4.920300766132e-02 true resid norm 4.920300491351e-02 ||r(i)||/||b|| 4.920300491351e-02
344 KSP unpreconditioned resid norm 4.764417515007e-02 true resid norm 4.764417243870e-02 ||r(i)||/||b|| 4.764417243870e-02
345 KSP unpreconditioned resid norm 4.592416835782e-02 true resid norm 4.592416391289e-02 ||r(i)||/||b|| 4.592416391289e-02
346 KSP unpreconditioned resid norm 4.461099302392e-02 true resid norm 4.461098697013e-02 ||r(i)||/||b|| 4.461098697013e-02
347 KSP unpreconditioned resid norm 4.424119335551e-02 true resid norm 4.424118752616e-02 ||r(i)||/||b|| 4.424118752616e-02
348 KSP unpreconditioned resid norm 4.404892497000e-02 true resid norm 4.404891933437e-02 ||r(i)||/||b|| 4.404891933437e-02
349 KSP unpreconditioned resid norm 4.373306193363e-02 true resid norm 4.373305692613e-02 ||r(i)||/||b|| 4.373305692613e-02
350 KSP unpreconditioned resid norm 4.231907013813e-02 true resid norm 4.231906712847e-02 ||r(i)||/||b|| 4.231906712847e-02
351 KSP unpreconditioned resid norm 3.694308373533e-02 true resid norm 3.694308515726e-02 ||r(i)||/||b|| 3.694308515726e-02
352 KSP unpreconditioned resid norm 3.363595717209e-02 true resid norm 3.363596050543e-02 ||r(i)||/||b|| 3.363596050543e-02
353 KSP unpreconditioned resid norm 3.217547812620e-02 true resid norm 3.217547944086e-02 ||r(i)||/||b|| 3.217547944086e-02
354 KSP unpreconditioned resid norm 3.059854911039e-02 true resid norm 3.059854645225e-02 ||r(i)||/||b|| 3.059854645225e-02
355 KSP unpreconditioned resid norm 2.893655338471e-02 true resid norm 2.893654825238e-02 ||r(i)||/||b|| 2.893654825238e-02
356 KSP unpreconditioned resid norm 2.723059507260e-02 true resid norm 2.723058496974e-02 ||r(i)||/||b|| 2.723058496974e-02
357 KSP unpreconditioned resid norm 2.607063368163e-02 true resid norm 2.607062150869e-02 ||r(i)||/||b|| 2.607062150869e-02
358 KSP unpreconditioned resid norm 2.467016571087e-02 true resid norm 2.467014453753e-02 ||r(i)||/||b|| 2.467014453753e-02
359 KSP unpreconditioned resid norm 2.220791119561e-02 true resid norm 2.220789059228e-02 ||r(i)||/||b|| 2.220789059228e-02
1 EPS converged value (error) #0 -0.444915+0.517993i (1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
1 EPS converged value (error) #3 -0.770238+0.409806i (3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264i (4.29732377e-06)
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605iSend size=20 (2 scalars) to 0
5 Receive size=20 (2 scalars) msg Number = 6
(5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217i (9.43793115e-02)
Send size=20 (2 scalars) to 0
ERAM receving 1
i = 1
@} LSQR convhul negatif chsigne 220 cumul 220 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
5 Receive size=20 (2 scalars) msg Number = 6
@} LSQR convhul negatif chsigne 240 cumul 240 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
0 Receive size=32 (4 scalars) msg Number = 3
1 Receive size=32 (4 scalars) msg Number = 3
@@@>>>Preconditioning of LS method in: 360 iterations
360 KSP unpreconditioned resid norm 2.623510490851e+00 true resid norm 2.623510490851e+00 ||r(i)||/||b|| 2.623510490851e+00
361 KSP unpreconditioned resid norm 2.217899384862e-02 true resid norm 2.217899384793e-02 ||r(i)||/||b|| 2.217899384793e-02
362 KSP unpreconditioned resid norm 2.144734175988e-02 true resid norm 2.144734176009e-02 ||r(i)||/||b|| 2.144734176009e-02
363 KSP unpreconditioned resid norm 2.124267785878e-02 true resid norm 2.124267785878e-02 ||r(i)||/||b|| 2.124267785878e-02
364 KSP unpreconditioned resid norm 2.124242550339e-02 true resid norm 2.124242550345e-02 ||r(i)||/||b|| 2.124242550345e-02
365 KSP unpreconditioned resid norm 2.113841726441e-02 true resid norm 2.113841726423e-02 ||r(i)||/||b|| 2.113841726423e-02
366 KSP unpreconditioned resid norm 2.112479291188e-02 true resid norm 2.112479291158e-02 ||r(i)||/||b|| 2.112479291158e-02
367 KSP unpreconditioned resid norm 2.111682539415e-02 true resid norm 2.111682539397e-02 ||r(i)||/||b|| 2.111682539397e-02
368 KSP unpreconditioned resid norm 2.085127214808e-02 true resid norm 2.085127214780e-02 ||r(i)||/||b|| 2.085127214780e-02
369 KSP unpreconditioned resid norm 2.053786762690e-02 true resid norm 2.053786762648e-02 ||r(i)||/||b|| 2.053786762648e-02
370 KSP unpreconditioned resid norm 2.052833056605e-02 true resid norm 2.052833056640e-02 ||r(i)||/||b|| 2.052833056640e-02
371 KSP unpreconditioned resid norm 2.051481985451e-02 true resid norm 2.051481985452e-02 ||r(i)||/||b|| 2.051481985452e-02
372 KSP unpreconditioned resid norm 1.925058269342e-02 true resid norm 1.925058269316e-02 ||r(i)||/||b|| 1.925058269316e-02
373 KSP unpreconditioned resid norm 1.881017129048e-02 true resid norm 1.881017128985e-02 ||r(i)||/||b|| 1.881017128985e-02
374 KSP unpreconditioned resid norm 1.878399756359e-02 true resid norm 1.878399756341e-02 ||r(i)||/||b|| 1.878399756341e-02
375 KSP unpreconditioned resid norm 1.878130837229e-02 true resid norm 1.878130837154e-02 ||r(i)||/||b|| 1.878130837154e-02
376 KSP unpreconditioned resid norm 1.876502146760e-02 true resid norm 1.876502146716e-02 ||r(i)||/||b|| 1.876502146716e-02
377 KSP unpreconditioned resid norm 1.866009386564e-02 true resid norm 1.866009386484e-02 ||r(i)||/||b|| 1.866009386484e-02
378 KSP unpreconditioned resid norm 1.841262784494e-02 true resid norm 1.841262784469e-02 ||r(i)||/||b|| 1.841262784469e-02
379 KSP unpreconditioned resid norm 1.834460792254e-02 true resid norm 1.834460792214e-02 ||r(i)||/||b|| 1.834460792214e-02
380 KSP unpreconditioned resid norm 1.802666520237e-02 true resid norm 1.802666520198e-02 ||r(i)||/||b|| 1.802666520198e-02
381 KSP unpreconditioned resid norm 1.798317385346e-02 true resid norm 1.798317385313e-02 ||r(i)||/||b|| 1.798317385313e-02
382 KSP unpreconditioned resid norm 1.795001843542e-02 true resid norm 1.795001843525e-02 ||r(i)||/||b|| 1.795001843525e-02
383 KSP unpreconditioned resid norm 1.793090353289e-02 true resid norm 1.793090353241e-02 ||r(i)||/||b|| 1.793090353241e-02
384 KSP unpreconditioned resid norm 1.784577493947e-02 true resid norm 1.784577493913e-02 ||r(i)||/||b|| 1.784577493913e-02
385 KSP unpreconditioned resid norm 1.779138524712e-02 true resid norm 1.779138524676e-02 ||r(i)||/||b|| 1.779138524676e-02
386 KSP unpreconditioned resid norm 1.768865360826e-02 true resid norm 1.768865360811e-02 ||r(i)||/||b|| 1.768865360811e-02
1 EPS converged value (error) #0 -0.444915+0.517993iSend size=20 (2 scalars) to 0
(1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
1 EPS converged value (error) #3 -0.770238+0.409806i (3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264i (4.29732377e-06)
5 Receive size=20 (2 scalars) msg Number = 7
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605i (5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217i (9.43793115e-02)
Send size=20 (2 scalars) to 0
ERAM receving 1
387 KSP unpreconditioned resid norm 1.762991360073e-02 true resid norm 1.762991360053e-02 ||r(i)||/||b|| 1.762991360053e-02
i = 1
388 KSP unpreconditioned resid norm 1.711758272348e-02 true resid norm 1.711758272327e-02 ||r(i)||/||b|| 1.711758272327e-02
389 KSP unpreconditioned resid norm 1.660540989052e-02 true resid norm 1.660540989029e-02 ||r(i)||/||b|| 1.660540989029e-02
390 KSP unpreconditioned resid norm 1.637359368719e-02 true resid norm 1.637359368697e-02 ||r(i)||/||b|| 1.637359368697e-02
391 KSP unpreconditioned resid norm 1.629338837723e-02 true resid norm 1.629338837717e-02 ||r(i)||/||b|| 1.629338837717e-02
392 KSP unpreconditioned resid norm 1.605878287358e-02 true resid norm 1.605878287345e-02 ||r(i)||/||b|| 1.605878287345e-02
393 KSP unpreconditioned resid norm 1.588456003910e-02 true resid norm 1.588456003878e-02 ||r(i)||/||b|| 1.588456003878e-02
394 KSP unpreconditioned resid norm 1.564893574737e-02 true resid norm 1.564893574713e-02 ||r(i)||/||b|| 1.564893574713e-02
395 KSP unpreconditioned resid norm 1.552040316800e-02 true resid norm 1.552040316760e-02 ||r(i)||/||b|| 1.552040316760e-02
396 KSP unpreconditioned resid norm 1.550909094633e-02 true resid norm 1.550909094632e-02 ||r(i)||/||b|| 1.550909094632e-02
397 KSP unpreconditioned resid norm 1.535988788446e-02 true resid norm 1.535988788433e-02 ||r(i)||/||b|| 1.535988788433e-02
398 KSP unpreconditioned resid norm 1.529423695031e-02 true resid norm 1.529423695009e-02 ||r(i)||/||b|| 1.529423695009e-02
399 KSP unpreconditioned resid norm 1.529416896804e-02 true resid norm 1.529416896777e-02 ||r(i)||/||b|| 1.529416896777e-02
400 KSP unpreconditioned resid norm 1.529313796771e-02 true resid norm 1.529313796748e-02 ||r(i)||/||b|| 1.529313796748e-02
@} LSQR convhul negatif chsigne 260 cumul 260 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
5 Receive size=20 (2 scalars) msg Number = 7
401 KSP unpreconditioned resid norm 1.523756466084e-02 true resid norm 1.523756466054e-02 ||r(i)||/||b|| 1.523756466054e-02
402 KSP unpreconditioned resid norm 1.512801472479e-02 true resid norm 1.512801472452e-02 ||r(i)||/||b|| 1.512801472452e-02
403 KSP unpreconditioned resid norm 1.511942361811e-02 true resid norm 1.511942361798e-02 ||r(i)||/||b|| 1.511942361798e-02
404 KSP unpreconditioned resid norm 1.511242875347e-02 true resid norm 1.511242875330e-02 ||r(i)||/||b|| 1.511242875330e-02
405 KSP unpreconditioned resid norm 1.511222975124e-02 true resid norm 1.511222975094e-02 ||r(i)||/||b|| 1.511222975094e-02
406 KSP unpreconditioned resid norm 1.505101591956e-02 true resid norm 1.505101591922e-02 ||r(i)||/||b|| 1.505101591922e-02
407 KSP unpreconditioned resid norm 1.502084963425e-02 true resid norm 1.502084963407e-02 ||r(i)||/||b|| 1.502084963407e-02
408 KSP unpreconditioned resid norm 1.496941949946e-02 true resid norm 1.496941949927e-02 ||r(i)||/||b|| 1.496941949927e-02
409 KSP unpreconditioned resid norm 1.485939141394e-02 true resid norm 1.485939141372e-02 ||r(i)||/||b|| 1.485939141372e-02
410 KSP unpreconditioned resid norm 1.478435143302e-02 true resid norm 1.478435143281e-02 ||r(i)||/||b|| 1.478435143281e-02
411 KSP unpreconditioned resid norm 1.476510905909e-02 true resid norm 1.476510905874e-02 ||r(i)||/||b|| 1.476510905874e-02
412 KSP unpreconditioned resid norm 1.476115932846e-02 true resid norm 1.476115932834e-02 ||r(i)||/||b|| 1.476115932834e-02
413 KSP unpreconditioned resid norm 1.475827940712e-02 true resid norm 1.475827940684e-02 ||r(i)||/||b|| 1.475827940684e-02
414 KSP unpreconditioned resid norm 1.470595732139e-02 true resid norm 1.470595732133e-02 ||r(i)||/||b|| 1.470595732133e-02
@} LSQR convhul negatif chsigne 280 cumul 280 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
415 KSP unpreconditioned resid norm 1.470336005384e-02 true resid norm 1.470336005380e-02 ||r(i)||/||b|| 1.470336005380e-02
416 KSP unpreconditioned resid norm 1.470327219674e-02 true resid norm 1.470327219673e-02 ||r(i)||/||b|| 1.470327219673e-02
417 KSP unpreconditioned resid norm 1.468770683728e-02 true resid norm 1.468770683733e-02 ||r(i)||/||b|| 1.468770683733e-02
418 KSP unpreconditioned resid norm 1.457274428110e-02 true resid norm 1.457274428139e-02 ||r(i)||/||b|| 1.457274428139e-02
419 KSP unpreconditioned resid norm 1.454535820345e-02 true resid norm 1.454535820401e-02 ||r(i)||/||b|| 1.454535820401e-02
420 KSP unpreconditioned resid norm 1.454496846699e-02 true resid norm 1.454496846741e-02 ||r(i)||/||b|| 1.454496846741e-02
421 KSP unpreconditioned resid norm 1.452644738208e-02 true resid norm 1.452644738232e-02 ||r(i)||/||b|| 1.452644738232e-02
422 KSP unpreconditioned resid norm 1.452137688632e-02 true resid norm 1.452137688663e-02 ||r(i)||/||b|| 1.452137688663e-02
423 KSP unpreconditioned resid norm 1.451963643906e-02 true resid norm 1.451963643958e-02 ||r(i)||/||b|| 1.451963643958e-02
424 KSP unpreconditioned resid norm 1.451860095393e-02 true resid norm 1.451860095435e-02 ||r(i)||/||b|| 1.451860095435e-02
425 KSP unpreconditioned resid norm 1.451786918003e-02 true resid norm 1.451786918023e-02 ||r(i)||/||b|| 1.451786918023e-02
426 KSP unpreconditioned resid norm 1.451767072362e-02 true resid norm 1.451767072375e-02 ||r(i)||/||b|| 1.451767072375e-02
427 KSP unpreconditioned resid norm 1.447209184158e-02 true resid norm 1.447209184275e-02 ||r(i)||/||b|| 1.447209184275e-02
428 KSP unpreconditioned resid norm 1.445738684675e-02 true resid norm 1.445738684825e-02 ||r(i)||/||b|| 1.445738684825e-02
429 KSP unpreconditioned resid norm 1.442657198030e-02 true resid norm 1.442657198198e-02 ||r(i)||/||b|| 1.442657198198e-02
430 KSP unpreconditioned resid norm 1.442654321462e-02 true resid norm 1.442654321647e-02 ||r(i)||/||b|| 1.442654321647e-02
431 KSP unpreconditioned resid norm 1.441608522985e-02 true resid norm 1.441608523168e-02 ||r(i)||/||b|| 1.441608523168e-02
432 KSP unpreconditioned resid norm 1.433355730570e-02 true resid norm 1.433355730828e-02 ||r(i)||/||b|| 1.433355730828e-02
433 KSP unpreconditioned resid norm 1.429312982850e-02 true resid norm 1.429312983120e-02 ||r(i)||/||b|| 1.429312983120e-02
434 KSP unpreconditioned resid norm 1.426890152103e-02 true resid norm 1.426890152359e-02 ||r(i)||/||b|| 1.426890152359e-02
435 KSP unpreconditioned resid norm 1.417416762963e-02 true resid norm 1.417416763057e-02 ||r(i)||/||b|| 1.417416763057e-02
436 KSP unpreconditioned resid norm 1.395607058148e-02 true resid norm 1.395607057693e-02 ||r(i)||/||b|| 1.395607057693e-02
437 KSP unpreconditioned resid norm 1.334033629221e-02 true resid norm 1.334033627879e-02 ||r(i)||/||b|| 1.334033627879e-02
438 KSP unpreconditioned resid norm 1.308920008398e-02 true resid norm 1.308920006030e-02 ||r(i)||/||b|| 1.308920006030e-02
439 KSP unpreconditioned resid norm 1.291476913154e-02 true resid norm 1.291476910328e-02 ||r(i)||/||b|| 1.291476910328e-02
440 KSP unpreconditioned resid norm 1.267449175608e-02 true resid norm 1.267449172296e-02 ||r(i)||/||b|| 1.267449172296e-02
441 KSP unpreconditioned resid norm 1.242035855148e-02 true resid norm 1.242035853236e-02 ||r(i)||/||b|| 1.242035853236e-02
442 KSP unpreconditioned resid norm 1.232229746177e-02 true resid norm 1.232229744875e-02 ||r(i)||/||b|| 1.232229744875e-02
443 KSP unpreconditioned resid norm 1.208942805749e-02 true resid norm 1.208942806881e-02 ||r(i)||/||b|| 1.208942806881e-02
444 KSP unpreconditioned resid norm 1.186487962407e-02 true resid norm 1.186487964369e-02 ||r(i)||/||b|| 1.186487964369e-02
445 KSP unpreconditioned resid norm 1.168934451720e-02 true resid norm 1.168934454897e-02 ||r(i)||/||b|| 1.168934454897e-02
446 KSP unpreconditioned resid norm 1.152268471844e-02 true resid norm 1.152268477932e-02 ||r(i)||/||b|| 1.152268477932e-02
447 KSP unpreconditioned resid norm 1.144533325605e-02 true resid norm 1.144533333422e-02 ||r(i)||/||b|| 1.144533333422e-02
448 KSP unpreconditioned resid norm 1.112291197271e-02 true resid norm 1.112291210653e-02 ||r(i)||/||b|| 1.112291210653e-02
449 KSP unpreconditioned resid norm 1.103840077366e-02 true resid norm 1.103840091329e-02 ||r(i)||/||b|| 1.103840091329e-02
450 KSP unpreconditioned resid norm 1.103457862386e-02 true resid norm 1.103457876079e-02 ||r(i)||/||b|| 1.103457876079e-02
451 KSP unpreconditioned resid norm 1.102098607433e-02 true resid norm 1.102098618267e-02 ||r(i)||/||b|| 1.102098618267e-02
452 KSP unpreconditioned resid norm 1.093370860602e-02 true resid norm 1.093370861701e-02 ||r(i)||/||b|| 1.093370861701e-02
453 KSP unpreconditioned resid norm 1.090189262736e-02 true resid norm 1.090189254268e-02 ||r(i)||/||b|| 1.090189254268e-02
454 KSP unpreconditioned resid norm 1.084797205492e-02 true resid norm 1.084797183571e-02 ||r(i)||/||b|| 1.084797183571e-02
455 KSP unpreconditioned resid norm 1.065741628098e-02 true resid norm 1.065741576273e-02 ||r(i)||/||b|| 1.065741576273e-02
456 KSP unpreconditioned resid norm 1.018492123077e-02 true resid norm 1.018492025581e-02 ||r(i)||/||b|| 1.018492025581e-02
457 KSP unpreconditioned resid norm 9.932156606084e-03 true resid norm 9.932155235026e-03 ||r(i)||/||b|| 9.932155235026e-03
458 KSP unpreconditioned resid norm 9.878793623339e-03 true resid norm 9.878792092978e-03 ||r(i)||/||b|| 9.878792092978e-03
459 KSP unpreconditioned resid norm 9.800065252713e-03 true resid norm 9.800063594066e-03 ||r(i)||/||b|| 9.800063594066e-03
460 KSP unpreconditioned resid norm 9.694562604149e-03 true resid norm 9.694560640421e-03 ||r(i)||/||b|| 9.694560640421e-03
461 KSP unpreconditioned resid norm 9.573395213631e-03 true resid norm 9.573393007040e-03 ||r(i)||/||b|| 9.573393007040e-03
462 KSP unpreconditioned resid norm 9.555138585034e-03 true resid norm 9.555136291759e-03 ||r(i)||/||b|| 9.555136291759e-03
463 KSP unpreconditioned resid norm 9.315118815730e-03 true resid norm 9.315115682043e-03 ||r(i)||/||b|| 9.315115682043e-03
464 KSP unpreconditioned resid norm 9.174525087715e-03 true resid norm 9.174521397505e-03 ||r(i)||/||b|| 9.174521397505e-03
465 KSP unpreconditioned resid norm 8.878725860478e-03 true resid norm 8.878720776305e-03 ||r(i)||/||b|| 8.878720776305e-03
466 KSP unpreconditioned resid norm 8.557725982956e-03 true resid norm 8.557720322931e-03 ||r(i)||/||b|| 8.557720322931e-03
467 KSP unpreconditioned resid norm 8.013698145729e-03 true resid norm 8.013691003112e-03 ||r(i)||/||b|| 8.013691003112e-03
468 KSP unpreconditioned resid norm 7.531899986699e-03 true resid norm 7.531892319388e-03 ||r(i)||/||b|| 7.531892319388e-03
469 KSP unpreconditioned resid norm 7.057318500163e-03 true resid norm 7.057311650866e-03 ||r(i)||/||b|| 7.057311650866e-03
470 KSP unpreconditioned resid norm 6.613809614258e-03 true resid norm 6.613805055539e-03 ||r(i)||/||b|| 6.613805055539e-03
471 KSP unpreconditioned resid norm 6.105746862889e-03 true resid norm 6.105743070678e-03 ||r(i)||/||b|| 6.105743070678e-03
472 KSP unpreconditioned resid norm 5.942223883692e-03 true resid norm 5.942218643122e-03 ||r(i)||/||b|| 5.942218643122e-03
473 KSP unpreconditioned resid norm 5.795135169603e-03 true resid norm 5.795127155443e-03 ||r(i)||/||b|| 5.795127155443e-03
474 KSP unpreconditioned resid norm 5.659254820334e-03 true resid norm 5.659238138561e-03 ||r(i)||/||b|| 5.659238138561e-03
475 KSP unpreconditioned resid norm 5.496334522564e-03 true resid norm 5.496304431880e-03 ||r(i)||/||b|| 5.496304431880e-03
476 KSP unpreconditioned resid norm 5.385330639079e-03 true resid norm 5.385288690811e-03 ||r(i)||/||b|| 5.385288690811e-03
477 KSP unpreconditioned resid norm 5.313002321029e-03 true resid norm 5.312949500882e-03 ||r(i)||/||b|| 5.312949500882e-03
478 KSP unpreconditioned resid norm 5.273318151477e-03 true resid norm 5.273257941755e-03 ||r(i)||/||b|| 5.273257941755e-03
479 KSP unpreconditioned resid norm 5.267790242695e-03 true resid norm 5.267732909067e-03 ||r(i)||/||b|| 5.267732909067e-03
Send size=20 (2 scalars) to 0
5 Receive size=20 (2 scalars) msg Number = 8
1 EPS converged value (error) #0 -0.444915+0.517993i (1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
1 EPS converged value (error) #3 -0.770238+0.409806i (3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264i (4.29732377e-06)
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605i (5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217i (9.43793115e-02)
Send size=20 (2 scalars) to 0
ERAM receving 1
i = 1
@} LSQR convhul negatif chsigne 300 cumul 300 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
5 Receive size=20 (2 scalars) msg Number = 8
@} LSQR convhul negatif chsigne 300 cumul 300 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
Send size=20 (2 scalars) to 0
5 Receive size=20 (2 scalars) msg Number = 9
1 EPS converged value (error) #0 -0.444915+0.517993i (1.55191378e-14)
1 EPS converged value (error) #1 -0.83091+0.514104i (2.30202294e-13)
1 EPS converged value (error) #2 -0.773901+0.426167i (4.36257210e-08)
1 EPS converged value (error) #3 -0.770238+0.409806i (3.19549293e-07)
1 EPS converged value (error) #4 -0.755704+0.37264i (4.29732377e-06)
1 EPS converged value (error) #5 -0.467526+0.363579i (7.66516728e-08)
1 EPS converged value (error) #6 -0.288463+0.357064i (5.41412808e-09)
1 EPS converged value (error) #7 -0.518769+0.342855i (2.09898571e-06)
1 EPS converged value (error) #8 -0.184437+0.301197i (1.97968869e-06)
1 EPS converged value (error) #9 -0.920152+0.277252i (1.78894261e-04)
1 EPS converged value (error) #10 -1.12217+0.274605i (5.07673616e-08)
1 EPS converged value (error) #11 -1.29866+0.265459i (6.22211217e-12)
1 EPS converged value (error) #12 -0.172108+0.259919i (1.54669081e-04)
1 EPS converged value (error) #13 -0.141058+0.259281i (2.06239609e-05)
1 EPS converged value (error) #14 -0.883895+0.247288i (7.51659260e-04)
1 EPS converged value (error) #15 -0.793637+0.245602i (3.80190196e-03)
1 EPS converged value (error) #16 -0.157069+0.233624i (2.82190088e-03)
1 EPS converged value (error) #17 -0.0980553+0.214588i (7.25506130e-05)
1 EPS converged value (error) #18 -0.10906+0.204359i (8.02612628e-04)
1 EPS converged value (error) #19 -0.128927+0.203491i (1.83541113e-03)
1 EPS converged value (error) #20 -0.51796+0.178531i (5.07340142e-02)
1 EPS converged value (error) #21 -0.25634+0.173951i (4.91644220e-02)
1 EPS converged value (error) #22 -0.789474+0.172662i (3.40414500e-02)
1 EPS converged value (error) #23 -0.191619+0.152535i (9.99815739e-02)
1 EPS converged value (error) #24 -0.155895+0.143802i (5.10458338e-02)
1 EPS converged value (error) #25 -1.07149+0.14005i (1.36662643e-03)
1 EPS converged value (error) #26 -1.42869+0.139962i (3.29212302e-09)
1 EPS converged value (error) #27 -0.443324+0.133992i (4.73799869e-02)
1 EPS converged value (error) #28 -0.606357+0.125455i (4.16095959e-02)
1 EPS converged value (error) #29 -1.40271+0.120809i (2.20657167e-07)
1 EPS converged value (error) #30 -0.763134+0.0860217i (9.43793115e-02)
Send size=20 (2 scalars) to 0
ERAM receving 1
i = 1
@} LSQR convhul negatif chsigne 300 cumul 300 mu1 7
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters