-
Notifications
You must be signed in to change notification settings - Fork 2
/
ucgle_p10.txt
3154 lines (2916 loc) · 258 KB
/
ucgle_p10.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 *> 3 -> 2 *> 4 -> 2 *> 5 -> 0
]> The Other :
*> 0 -> 1 *> 2 -> 3 *> 0 -> 1 *> 1 -> 0 *> 2 -> 3 *> 3 -> 2
]> In and Out communicators :
GMRES : 0: 5 (1) -> 0 (2) -> 2 (1)
]> MPI communications ready to be used
MAIN : 2: 0 (2) -> 1 (1) -> 3 (2)
ARNOLDI : 4: 2 (1) -> 2 (2) -> 5 (1)
GMRES : 1: 5 (1) -> 0 (2) -> 2 (1)
LS : 5: 3 (2) -> 3 (1) -> 0 (2)
ARNOLDI : 3: 2 (1) -> 2 (2) -> 5 (1)
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
#} GMRES Creating and setting vector x
]> Launching Father
]> Launching Arnoldi
]> Launching LS
------------
Start the 1 times Resolution
-------------
GMRES has sent RESOLUTION COUNT = 1
GMRES has sent RESOLUTION COUNT = 1
ERAM receving 1
i = 1
0 KSP unpreconditioned resid norm 1.000000000000e+00 true resid norm 1.000000000000e+00 ||r(i)||/||b|| 1.000000000000e+00
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
120 KSP unpreconditioned resid norm 2.447488827807e-01 true resid norm 2.447488881354e-01 ||r(i)||/||b|| 2.447488881354e-01
121 KSP unpreconditioned resid norm 2.393945056350e-01 true resid norm 2.393945140959e-01 ||r(i)||/||b|| 2.393945140959e-01
122 KSP unpreconditioned resid norm 2.360652067662e-01 true resid norm 2.360652176085e-01 ||r(i)||/||b|| 2.360652176085e-01
123 KSP unpreconditioned resid norm 2.346558606104e-01 true resid norm 2.346558728667e-01 ||r(i)||/||b|| 2.346558728667e-01
124 KSP unpreconditioned resid norm 2.304651237421e-01 true resid norm 2.304651382007e-01 ||r(i)||/||b|| 2.304651382007e-01
125 KSP unpreconditioned resid norm 2.291606942427e-01 true resid norm 2.291607095383e-01 ||r(i)||/||b|| 2.291607095383e-01
126 KSP unpreconditioned resid norm 2.289472197478e-01 true resid norm 2.289472352225e-01 ||r(i)||/||b|| 2.289472352225e-01
127 KSP unpreconditioned resid norm 2.280371658392e-01 true resid norm 2.280371816667e-01 ||r(i)||/||b|| 2.280371816667e-01
128 KSP unpreconditioned resid norm 2.219594149434e-01 true resid norm 2.219594289325e-01 ||r(i)||/||b|| 2.219594289325e-01
129 KSP unpreconditioned resid norm 2.200149736940e-01 true resid norm 2.200149863914e-01 ||r(i)||/||b|| 2.200149863914e-01
130 KSP unpreconditioned resid norm 2.199194289498e-01 true resid norm 2.199194414350e-01 ||r(i)||/||b|| 2.199194414350e-01
131 KSP unpreconditioned resid norm 2.199077446330e-01 true resid norm 2.199077570814e-01 ||r(i)||/||b|| 2.199077570814e-01
132 KSP unpreconditioned resid norm 2.184429477399e-01 true resid norm 2.184429618283e-01 ||r(i)||/||b|| 2.184429618283e-01
133 KSP unpreconditioned resid norm 2.117996760086e-01 true resid norm 2.117997003413e-01 ||r(i)||/||b|| 2.117997003413e-01
134 KSP unpreconditioned resid norm 2.055350987643e-01 true resid norm 2.055351387192e-01 ||r(i)||/||b|| 2.055351387192e-01
135 KSP unpreconditioned resid norm 2.008037125478e-01 true resid norm 2.008037647629e-01 ||r(i)||/||b|| 2.008037647629e-01
136 KSP unpreconditioned resid norm 1.948101495823e-01 true resid norm 1.948102230419e-01 ||r(i)||/||b|| 1.948102230419e-01
137 KSP unpreconditioned resid norm 1.888722612696e-01 true resid norm 1.888723550790e-01 ||r(i)||/||b|| 1.888723550790e-01
138 KSP unpreconditioned resid norm 1.861769398540e-01 true resid norm 1.861770490518e-01 ||r(i)||/||b|| 1.861770490518e-01
139 KSP unpreconditioned resid norm 1.837521712013e-01 true resid norm 1.837522962920e-01 ||r(i)||/||b|| 1.837522962920e-01
140 KSP unpreconditioned resid norm 1.763841612375e-01 true resid norm 1.763843598778e-01 ||r(i)||/||b|| 1.763843598778e-01
141 KSP unpreconditioned resid norm 1.711635870407e-01 true resid norm 1.711638137773e-01 ||r(i)||/||b|| 1.711638137773e-01
142 KSP unpreconditioned resid norm 1.685044775872e-01 true resid norm 1.685047283172e-01 ||r(i)||/||b|| 1.685047283172e-01
143 KSP unpreconditioned resid norm 1.631894988423e-01 true resid norm 1.631897995677e-01 ||r(i)||/||b|| 1.631897995677e-01
144 KSP unpreconditioned resid norm 1.599324660831e-01 true resid norm 1.599328458926e-01 ||r(i)||/||b|| 1.599328458926e-01
145 KSP unpreconditioned resid norm 1.587881711082e-01 true resid norm 1.587886530216e-01 ||r(i)||/||b|| 1.587886530216e-01
146 KSP unpreconditioned resid norm 1.578664909390e-01 true resid norm 1.578670884485e-01 ||r(i)||/||b|| 1.578670884485e-01
147 KSP unpreconditioned resid norm 1.534078225420e-01 true resid norm 1.534087644596e-01 ||r(i)||/||b|| 1.534087644596e-01
148 KSP unpreconditioned resid norm 1.515581197079e-01 true resid norm 1.515594789848e-01 ||r(i)||/||b|| 1.515594789848e-01
149 KSP unpreconditioned resid norm 1.472220631345e-01 true resid norm 1.472246752569e-01 ||r(i)||/||b|| 1.472246752569e-01
Send size=20 (2 scalars) to 0
5 Receive size=20 (2 scalars) msg Number = 1
@} LSQR convhul negatif chsigne 20 cumul 20 mu1 7
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
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 Receive size=32 (4 scalars) msg Number = 1
0 Receive size=32 (4 scalars) msg Number = 1
@@@>>>Preconditioning of LS method in: 150 iterations
150 KSP unpreconditioned resid norm 4.042427353388e+08 true resid norm 4.042427353388e+08 ||r(i)||/||b|| 4.042427353388e+08
151 KSP unpreconditioned resid norm 6.940809929684e+04 true resid norm 6.940809929683e+04 ||r(i)||/||b|| 6.940809929683e+04
152 KSP unpreconditioned resid norm 2.194592686731e+01 true resid norm 2.194592687478e+01 ||r(i)||/||b|| 2.194592687478e+01
153 KSP unpreconditioned resid norm 6.787069434734e-01 true resid norm 6.787069374840e-01 ||r(i)||/||b|| 6.787069374840e-01
154 KSP unpreconditioned resid norm 5.935460270234e-01 true resid norm 5.935460193382e-01 ||r(i)||/||b|| 5.935460193382e-01
155 KSP unpreconditioned resid norm 5.769277033563e-01 true resid norm 5.769277625419e-01 ||r(i)||/||b|| 5.769277625419e-01
156 KSP unpreconditioned resid norm 5.277476193631e-01 true resid norm 5.277478513837e-01 ||r(i)||/||b|| 5.277478513837e-01
157 KSP unpreconditioned resid norm 5.266682798724e-01 true resid norm 5.266684997547e-01 ||r(i)||/||b|| 5.266684997547e-01
158 KSP unpreconditioned resid norm 5.093083322276e-01 true resid norm 5.093077025542e-01 ||r(i)||/||b|| 5.093077025542e-01
159 KSP unpreconditioned resid norm 4.495818959550e-01 true resid norm 4.495755361978e-01 ||r(i)||/||b|| 4.495755361978e-01
160 KSP unpreconditioned resid norm 4.219495817328e-01 true resid norm 4.219416724345e-01 ||r(i)||/||b|| 4.219416724345e-01
161 KSP unpreconditioned resid norm 3.720895819686e-01 true resid norm 3.720823699067e-01 ||r(i)||/||b|| 3.720823699067e-01
162 KSP unpreconditioned resid norm 3.665539234048e-01 true resid norm 3.665459217180e-01 ||r(i)||/||b|| 3.665459217180e-01
163 KSP unpreconditioned resid norm 3.579431110866e-01 true resid norm 3.579457624023e-01 ||r(i)||/||b|| 3.579457624023e-01
164 KSP unpreconditioned resid norm 3.567201483791e-01 true resid norm 3.567240627660e-01 ||r(i)||/||b|| 3.567240627660e-01
165 KSP unpreconditioned resid norm 3.559000266532e-01 true resid norm 3.559052402205e-01 ||r(i)||/||b|| 3.559052402205e-01
166 KSP unpreconditioned resid norm 3.537861578886e-01 true resid norm 3.537939080424e-01 ||r(i)||/||b|| 3.537939080424e-01
167 KSP unpreconditioned resid norm 3.534421498007e-01 true resid norm 3.534507725377e-01 ||r(i)||/||b|| 3.534507725377e-01
168 KSP unpreconditioned resid norm 3.502329457808e-01 true resid norm 3.502371994637e-01 ||r(i)||/||b|| 3.502371994637e-01
169 KSP unpreconditioned resid norm 3.499962047441e-01 true resid norm 3.499984489084e-01 ||r(i)||/||b|| 3.499984489084e-01
170 KSP unpreconditioned resid norm 3.497360251780e-01 true resid norm 3.497357158156e-01 ||r(i)||/||b|| 3.497357158156e-01
171 KSP unpreconditioned resid norm 3.497346092218e-01 true resid norm 3.497340852187e-01 ||r(i)||/||b|| 3.497340852187e-01
172 KSP unpreconditioned resid norm 3.438309348665e-01 true resid norm 3.438443406485e-01 ||r(i)||/||b|| 3.438443406485e-01
173 KSP unpreconditioned resid norm 3.433125223380e-01 true resid norm 3.433292841151e-01 ||r(i)||/||b|| 3.433292841151e-01
174 KSP unpreconditioned resid norm 3.432408596670e-01 true resid norm 3.432588423037e-01 ||r(i)||/||b|| 3.432588423037e-01
175 KSP unpreconditioned resid norm 3.383168338302e-01 true resid norm 3.383493897722e-01 ||r(i)||/||b|| 3.383493897722e-01
176 KSP unpreconditioned resid norm 3.341989387491e-01 true resid norm 3.342437729179e-01 ||r(i)||/||b|| 3.342437729179e-01
177 KSP unpreconditioned resid norm 3.039010900152e-01 true resid norm 3.039482361398e-01 ||r(i)||/||b|| 3.039482361398e-01
178 KSP unpreconditioned resid norm 2.939270015731e-01 true resid norm 2.939820277298e-01 ||r(i)||/||b|| 2.939820277298e-01
179 KSP unpreconditioned resid norm 2.900948680628e-01 true resid norm 2.901690060828e-01 ||r(i)||/||b|| 2.901690060828e-01
180 KSP unpreconditioned resid norm 2.802244557490e-01 true resid norm 2.803355120357e-01 ||r(i)||/||b|| 2.803355120357e-01
181 KSP unpreconditioned resid norm 2.677469237082e-01 true resid norm 2.679438635402e-01 ||r(i)||/||b|| 2.679438635402e-01
182 KSP unpreconditioned resid norm 2.629912020608e-01 true resid norm 2.632328231891e-01 ||r(i)||/||b|| 2.632328231891e-01
183 KSP unpreconditioned resid norm 2.619946316554e-01 true resid norm 2.622453427000e-01 ||r(i)||/||b|| 2.622453427000e-01
184 KSP unpreconditioned resid norm 2.619932683819e-01 true resid norm 2.622432662192e-01 ||r(i)||/||b|| 2.622432662192e-01
185 KSP unpreconditioned resid norm 2.611557405140e-01 true resid norm 2.614359739980e-01 ||r(i)||/||b|| 2.614359739980e-01
186 KSP unpreconditioned resid norm 2.549318373046e-01 true resid norm 2.553182517181e-01 ||r(i)||/||b|| 2.553182517181e-01
187 KSP unpreconditioned resid norm 2.480633497895e-01 true resid norm 2.487424945285e-01 ||r(i)||/||b|| 2.487424945285e-01
188 KSP unpreconditioned resid norm 2.389694339450e-01 true resid norm 2.399487874084e-01 ||r(i)||/||b|| 2.399487874084e-01
189 KSP unpreconditioned resid norm 2.386378586880e-01 true resid norm 2.396890070720e-01 ||r(i)||/||b|| 2.396890070720e-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)
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.259919iSend size=20 (2 scalars) to 0
(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.204359i5 Receive size=20 (2 scalars) msg Number = 2
(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
@} LSQR convhul negatif chsigne 60 cumul 60 mu1 7
i = 1
190 KSP unpreconditioned resid norm 2.383040217302e-01 true resid norm 2.394205615920e-01 ||r(i)||/||b|| 2.394205615920e-01
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
191 KSP unpreconditioned resid norm 2.379874677072e-01 true resid norm 2.391669520780e-01 ||r(i)||/||b|| 2.391669520780e-01
@} LSQR convhul negatif chsigne 80 cumul 80 mu1 7
192 KSP unpreconditioned resid norm 2.350536850619e-01 true resid norm 2.364943830810e-01 ||r(i)||/||b|| 2.364943830810e-01
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
193 KSP unpreconditioned resid norm 2.314511732765e-01 true resid norm 2.333546269693e-01 ||r(i)||/||b|| 2.333546269693e-01
194 KSP unpreconditioned resid norm 2.288991268900e-01 true resid norm 2.311934432564e-01 ||r(i)||/||b|| 2.311934432564e-01
195 KSP unpreconditioned resid norm 2.267716586823e-01 true resid norm 2.298710249821e-01 ||r(i)||/||b|| 2.298710249821e-01
196 KSP unpreconditioned resid norm 2.258675319953e-01 true resid norm 2.294870889149e-01 ||r(i)||/||b|| 2.294870889149e-01
197 KSP unpreconditioned resid norm 2.253418418341e-01 true resid norm 2.295136583855e-01 ||r(i)||/||b|| 2.295136583855e-01
198 KSP unpreconditioned resid norm 2.212773450701e-01 true resid norm 2.280030698222e-01 ||r(i)||/||b|| 2.280030698222e-01
199 KSP unpreconditioned resid norm 2.176339466788e-01 true resid norm 2.268489992377e-01 ||r(i)||/||b|| 2.268489992377e-01
200 KSP unpreconditioned resid norm 2.133221867664e-01 true resid norm 2.257466757760e-01 ||r(i)||/||b|| 2.257466757760e-01
201 KSP unpreconditioned resid norm 2.096094530948e-01 true resid norm 2.265148420855e-01 ||r(i)||/||b|| 2.265148420855e-01
202 KSP unpreconditioned resid norm 2.049150379581e-01 true resid norm 2.284014833547e-01 ||r(i)||/||b|| 2.284014833547e-01
203 KSP unpreconditioned resid norm 2.047769561073e-01 true resid norm 2.294815661559e-01 ||r(i)||/||b|| 2.294815661559e-01
204 KSP unpreconditioned resid norm 2.029840511486e-01 true resid norm 2.336908966366e-01 ||r(i)||/||b|| 2.336908966366e-01
205 KSP unpreconditioned resid norm 1.940717985292e-01 true resid norm 2.408466762854e-01 ||r(i)||/||b|| 2.408466762854e-01
206 KSP unpreconditioned resid norm 1.825388872194e-01 true resid norm 2.462535355266e-01 ||r(i)||/||b|| 2.462535355266e-01
207 KSP unpreconditioned resid norm 1.778884505853e-01 true resid norm 2.528653914160e-01 ||r(i)||/||b|| 2.528653914160e-01
208 KSP unpreconditioned resid norm 1.737953027223e-01 true resid norm 2.609030960576e-01 ||r(i)||/||b|| 2.609030960576e-01
209 KSP unpreconditioned resid norm 1.688094734945e-01 true resid norm 2.740399046374e-01 ||r(i)||/||b|| 2.740399046374e-01
210 KSP unpreconditioned resid norm 1.639941048880e-01 true resid norm 2.827876319925e-01 ||r(i)||/||b|| 2.827876319925e-01
211 KSP unpreconditioned resid norm 1.557280979599e-01 true resid norm 2.940025141488e-01 ||r(i)||/||b|| 2.940025141488e-01
212 KSP unpreconditioned resid norm 1.513664795090e-01 true resid norm 3.039736772107e-01 ||r(i)||/||b|| 3.039736772107e-01
213 KSP unpreconditioned resid norm 1.455088174438e-01 true resid norm 3.158691065016e-01 ||r(i)||/||b|| 3.158691065016e-01
214 KSP unpreconditioned resid norm 1.393455817776e-01 true resid norm 3.265983881199e-01 ||r(i)||/||b|| 3.265983881199e-01
215 KSP unpreconditioned resid norm 1.343830316631e-01 true resid norm 3.364587511053e-01 ||r(i)||/||b|| 3.364587511053e-01
216 KSP unpreconditioned resid norm 1.296092088410e-01 true resid norm 3.453372120840e-01 ||r(i)||/||b|| 3.453372120840e-01
217 KSP unpreconditioned resid norm 1.251991757631e-01 true resid norm 3.528598089468e-01 ||r(i)||/||b|| 3.528598089468e-01
218 KSP unpreconditioned resid norm 1.214211686189e-01 true resid norm 3.602071424064e-01 ||r(i)||/||b|| 3.602071424064e-01
219 KSP unpreconditioned resid norm 1.175837430736e-01 true resid norm 3.662498044835e-01 ||r(i)||/||b|| 3.662498044835e-01
220 KSP unpreconditioned resid norm 1.143271290166e-01 true resid norm 3.723446148246e-01 ||r(i)||/||b|| 3.723446148246e-01
221 KSP unpreconditioned resid norm 1.110842675761e-01 true resid norm 3.773875137606e-01 ||r(i)||/||b|| 3.773875137606e-01
222 KSP unpreconditioned resid norm 1.082291614467e-01 true resid norm 3.823206675583e-01 ||r(i)||/||b|| 3.823206675583e-01
223 KSP unpreconditioned resid norm 1.054873232685e-01 true resid norm 3.865738220614e-01 ||r(i)||/||b|| 3.865738220614e-01
224 KSP unpreconditioned resid norm 1.029899936386e-01 true resid norm 3.905937619707e-01 ||r(i)||/||b|| 3.905937619707e-01
225 KSP unpreconditioned resid norm 1.006330722855e-01 true resid norm 3.941894938044e-01 ||r(i)||/||b|| 3.941894938044e-01
226 KSP unpreconditioned resid norm 9.844421027751e-02 true resid norm 3.975328075274e-01 ||r(i)||/||b|| 3.975328075274e-01
227 KSP unpreconditioned resid norm 9.638510020334e-02 true resid norm 4.005882490877e-01 ||r(i)||/||b|| 4.005882490877e-01
228 KSP unpreconditioned resid norm 9.445317218352e-02 true resid norm 4.034208896393e-01 ||r(i)||/||b|| 4.034208896393e-01
229 KSP unpreconditioned resid norm 9.263147750958e-02 true resid norm 4.060394724432e-01 ||r(i)||/||b|| 4.060394724432e-01
230 KSP unpreconditioned resid norm 9.091188045178e-02 true resid norm 4.084737854402e-01 ||r(i)||/||b|| 4.084737854402e-01
231 KSP unpreconditioned resid norm 8.928438468108e-02 true resid norm 4.107396648345e-01 ||r(i)||/||b|| 4.107396648345e-01
232 KSP unpreconditioned resid norm 8.774136503505e-02 true resid norm 4.128550450695e-01 ||r(i)||/||b|| 4.128550450695e-01
233 KSP unpreconditioned resid norm 8.627564732070e-02 true resid norm 4.148339595732e-01 ||r(i)||/||b|| 4.148339595732e-01
234 KSP unpreconditioned resid norm 8.488102000906e-02 true resid norm 4.166892653348e-01 ||r(i)||/||b|| 4.166892653348e-01
235 KSP unpreconditioned resid norm 8.355190760166e-02 true resid norm 4.184321287435e-01 ||r(i)||/||b|| 4.184321287435e-01
236 KSP unpreconditioned resid norm 8.228333718630e-02 true resid norm 4.200724220876e-01 ||r(i)||/||b|| 4.200724220876e-01
237 KSP unpreconditioned resid norm 8.107084849712e-02 true resid norm 4.216189272655e-01 ||r(i)||/||b|| 4.216189272655e-01
238 KSP unpreconditioned resid norm 7.991042688225e-02 true resid norm 4.230794315600e-01 ||r(i)||/||b|| 4.230794315600e-01
239 KSP unpreconditioned resid norm 7.879844986770e-02 true resid norm 4.244608909352e-01 ||r(i)||/||b|| 4.244608909352e-01
240 KSP unpreconditioned resid norm 7.773163769738e-02 true resid norm 4.257695359059e-01 ||r(i)||/||b|| 4.257695359059e-01
241 KSP unpreconditioned resid norm 7.670701356919e-02 true resid norm 4.270109687161e-01 ||r(i)||/||b|| 4.270109687161e-01
242 KSP unpreconditioned resid norm 7.572186818883e-02 true resid norm 4.281902257801e-01 ||r(i)||/||b|| 4.281902257801e-01
243 KSP unpreconditioned resid norm 7.477372980423e-02 true resid norm 4.293118458606e-01 ||r(i)||/||b|| 4.293118458606e-01
244 KSP unpreconditioned resid norm 7.386033801308e-02 true resid norm 4.303799387980e-01 ||r(i)||/||b|| 4.303799387980e-01
245 KSP unpreconditioned resid norm 7.297962110785e-02 true resid norm 4.313982532186e-01 ||r(i)||/||b|| 4.313982532186e-01
246 KSP unpreconditioned resid norm 7.212967628490e-02 true resid norm 4.323701803712e-01 ||r(i)||/||b|| 4.323701803712e-01
247 KSP unpreconditioned resid norm 7.130875234559e-02 true resid norm 4.332988108784e-01 ||r(i)||/||b|| 4.332988108784e-01
248 KSP unpreconditioned resid norm 7.051523451024e-02 true resid norm 4.341869686983e-01 ||r(i)||/||b|| 4.341869686983e-01
249 KSP unpreconditioned resid norm 6.974763105239e-02 true resid norm 4.350372414237e-01 ||r(i)||/||b|| 4.350372414237e-01
250 KSP unpreconditioned resid norm 6.900456149891e-02 true resid norm 4.358520007101e-01 ||r(i)||/||b|| 4.358520007101e-01
251 KSP unpreconditioned resid norm 6.828474618450e-02 true resid norm 4.366334177572e-01 ||r(i)||/||b|| 4.366334177572e-01
252 KSP unpreconditioned resid norm 6.758699698031e-02 true resid norm 4.373835029232e-01 ||r(i)||/||b|| 4.373835029232e-01
253 KSP unpreconditioned resid norm 6.691020904385e-02 true resid norm 4.381040859737e-01 ||r(i)||/||b|| 4.381040859737e-01
254 KSP unpreconditioned resid norm 6.625335345992e-02 true resid norm 4.387968947718e-01 ||r(i)||/||b|| 4.387968947718e-01
255 KSP unpreconditioned resid norm 6.561547066099e-02 true resid norm 4.394634813414e-01 ||r(i)||/||b|| 4.394634813414e-01
256 KSP unpreconditioned resid norm 6.499566453126e-02 true resid norm 4.401053202551e-01 ||r(i)||/||b|| 4.401053202551e-01
257 KSP unpreconditioned resid norm 6.439309711208e-02 true resid norm 4.407237555383e-01 ||r(i)||/||b|| 4.407237555383e-01
258 KSP unpreconditioned resid norm 6.380698383747e-02 true resid norm 4.413200507041e-01 ||r(i)||/||b|| 4.413200507041e-01
259 KSP unpreconditioned resid norm 6.323658923821e-02 true resid norm 4.418953531334e-01 ||r(i)||/||b|| 4.418953531334e-01
260 KSP unpreconditioned resid norm 6.268122306098e-02 true resid norm 4.424507749239e-01 ||r(i)||/||b|| 4.424507749239e-01
261 KSP unpreconditioned resid norm 6.214023675592e-02 true resid norm 4.429873138324e-01 ||r(i)||/||b|| 4.429873138324e-01
262 KSP unpreconditioned resid norm 6.161302029207e-02 true resid norm 4.435059190695e-01 ||r(i)||/||b|| 4.435059190695e-01
263 KSP unpreconditioned resid norm 6.109899926504e-02 true resid norm 4.440074713804e-01 ||r(i)||/||b|| 4.440074713804e-01
264 KSP unpreconditioned resid norm 6.059763226581e-02 true resid norm 4.444928114513e-01 ||r(i)||/||b|| 4.444928114513e-01
265 KSP unpreconditioned resid norm 6.010840848312e-02 true resid norm 4.449626902204e-01 ||r(i)||/||b|| 4.449626902204e-01
266 KSP unpreconditioned resid norm 5.963084551555e-02 true resid norm 4.454178541397e-01 ||r(i)||/||b|| 4.454178541397e-01
267 KSP unpreconditioned resid norm 5.916448737168e-02 true resid norm 4.458589772621e-01 ||r(i)||/||b|| 4.458589772621e-01
268 KSP unpreconditioned resid norm 5.870890263981e-02 true resid norm 4.462866912220e-01 ||r(i)||/||b|| 4.462866912220e-01
269 KSP unpreconditioned resid norm 5.826368281020e-02 true resid norm 4.467016101792e-01 ||r(i)||/||b|| 4.467016101792e-01
270 KSP unpreconditioned resid norm 5.782844073533e-02 true resid norm 4.471042886838e-01 ||r(i)||/||b|| 4.471042886838e-01
271 KSP unpreconditioned resid norm 5.740280921476e-02 true resid norm 4.474952651625e-01 ||r(i)||/||b|| 4.474952651625e-01
272 KSP unpreconditioned resid norm 5.698643969287e-02 true resid norm 4.478750390415e-01 ||r(i)||/||b|| 4.478750390415e-01
273 KSP unpreconditioned resid norm 5.657900105912e-02 true resid norm 4.482440844694e-01 ||r(i)||/||b|| 4.482440844694e-01
274 KSP unpreconditioned resid norm 5.618017854125e-02 true resid norm 4.486028555486e-01 ||r(i)||/||b|| 4.486028555486e-01
275 KSP unpreconditioned resid norm 5.578967268316e-02 true resid norm 4.489517714892e-01 ||r(i)||/||b|| 4.489517714892e-01
276 KSP unpreconditioned resid norm 5.540719839984e-02 true resid norm 4.492912318146e-01 ||r(i)||/||b|| 4.492912318146e-01
277 KSP unpreconditioned resid norm 5.503248410267e-02 true resid norm 4.496216243336e-01 ||r(i)||/||b|| 4.496216243336e-01
278 KSP unpreconditioned resid norm 5.466527088885e-02 true resid norm 4.499432904592e-01 ||r(i)||/||b|| 4.499432904592e-01
279 KSP unpreconditioned resid norm 5.430531178956e-02 true resid norm 4.502565803037e-01 ||r(i)||/||b|| 4.502565803037e-01
280 KSP unpreconditioned resid norm 5.395237107194e-02 true resid norm 4.505618171277e-01 ||r(i)||/||b|| 4.505618171277e-01
281 KSP unpreconditioned resid norm 5.360622359024e-02 true resid norm 4.508593131711e-01 ||r(i)||/||b|| 4.508593131711e-01
282 KSP unpreconditioned resid norm 5.326665418226e-02 true resid norm 4.511493468606e-01 ||r(i)||/||b|| 4.511493468606e-01
283 KSP unpreconditioned resid norm 5.293345710724e-02 true resid norm 4.514321991149e-01 ||r(i)||/||b|| 4.514321991149e-01
284 KSP unpreconditioned resid norm 5.260643552204e-02 true resid norm 4.517081486242e-01 ||r(i)||/||b|| 4.517081486242e-01
285 KSP unpreconditioned resid norm 5.228540099243e-02 true resid norm 4.519774176394e-01 ||r(i)||/||b|| 4.519774176394e-01
286 KSP unpreconditioned resid norm 5.197017303679e-02 true resid norm 4.522402637242e-01 ||r(i)||/||b|| 4.522402637242e-01
287 KSP unpreconditioned resid norm 5.166057869973e-02 true resid norm 4.524969132114e-01 ||r(i)||/||b|| 4.524969132114e-01
288 KSP unpreconditioned resid norm 5.135645215335e-02 true resid norm 4.527475768044e-01 ||r(i)||/||b|| 4.527475768044e-01
289 KSP unpreconditioned resid norm 5.105763432394e-02 true resid norm 4.529924687272e-01 ||r(i)||/||b|| 4.529924687272e-01
290 KSP unpreconditioned resid norm 5.076397254237e-02 true resid norm 4.532317776789e-01 ||r(i)||/||b|| 4.532317776789e-01
291 KSP unpreconditioned resid norm 5.047532021634e-02 true resid norm 4.534656942897e-01 ||r(i)||/||b|| 4.534656942897e-01
292 KSP unpreconditioned resid norm 5.019153652284e-02 true resid norm 4.536943982029e-01 ||r(i)||/||b|| 4.536943982029e-01
293 KSP unpreconditioned resid norm 4.991248611952e-02 true resid norm 4.539180822262e-01 ||r(i)||/||b|| 4.539180822262e-01
294 KSP unpreconditioned resid norm 4.963803887344e-02 true resid norm 4.541368709016e-01 ||r(i)||/||b|| 4.541368709016e-01
295 KSP unpreconditioned resid norm 4.936806960603e-02 true resid norm 4.543509459866e-01 ||r(i)||/||b|| 4.543509459866e-01
296 KSP unpreconditioned resid norm 4.910245785326e-02 true resid norm 4.545604642256e-01 ||r(i)||/||b|| 4.545604642256e-01
297 KSP unpreconditioned resid norm 4.884108763971e-02 true resid norm 4.547655492550e-01 ||r(i)||/||b|| 4.547655492550e-01
298 KSP unpreconditioned resid norm 4.858384726585e-02 true resid norm 4.549663715448e-01 ||r(i)||/||b|| 4.549663715448e-01
299 KSP unpreconditioned resid norm 4.833062910741e-02 true resid norm 4.551630304272e-01 ||r(i)||/||b|| 4.551630304272e-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)
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) #11Send size=20 (2 scalars) to 0
-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.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
Send size=20 (2 scalars) to 0
5 Receive size=20 (2 scalars) msg Number = 4
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
1 Receive size=32 (4 scalars) msg Number = 2
0 Receive size=32 (4 scalars) msg Number = 2
@@@>>>Preconditioning of LS method in: 300 iterations
300 KSP unpreconditioned resid norm 1.510838562477e+03 true resid norm 1.510838562477e+03 ||r(i)||/||b|| 1.510838562477e+03
301 KSP unpreconditioned resid norm 1.233236414999e+01 true resid norm 1.233236414999e+01 ||r(i)||/||b|| 1.233236414999e+01
302 KSP unpreconditioned resid norm 7.172508308566e-01 true resid norm 7.172508308561e-01 ||r(i)||/||b|| 7.172508308561e-01
303 KSP unpreconditioned resid norm 7.008988119016e-01 true resid norm 7.008988119009e-01 ||r(i)||/||b|| 7.008988119009e-01
304 KSP unpreconditioned resid norm 5.860959856738e-01 true resid norm 5.860959856682e-01 ||r(i)||/||b|| 5.860959856682e-01
305 KSP unpreconditioned resid norm 5.780309701356e-01 true resid norm 5.780309701296e-01 ||r(i)||/||b|| 5.780309701296e-01
306 KSP unpreconditioned resid norm 2.590448964255e-01 true resid norm 2.590448964169e-01 ||r(i)||/||b|| 2.590448964169e-01
307 KSP unpreconditioned resid norm 2.496231044485e-01 true resid norm 2.496231044396e-01 ||r(i)||/||b|| 2.496231044396e-01
308 KSP unpreconditioned resid norm 2.299974405056e-01 true resid norm 2.299974404933e-01 ||r(i)||/||b|| 2.299974404933e-01
309 KSP unpreconditioned resid norm 2.298041860521e-01 true resid norm 2.298041860397e-01 ||r(i)||/||b|| 2.298041860397e-01
310 KSP unpreconditioned resid norm 2.296185314177e-01 true resid norm 2.296185314028e-01 ||r(i)||/||b|| 2.296185314028e-01
311 KSP unpreconditioned resid norm 2.292949154061e-01 true resid norm 2.292949153895e-01 ||r(i)||/||b|| 2.292949153895e-01
312 KSP unpreconditioned resid norm 2.275485703895e-01 true resid norm 2.275485703688e-01 ||r(i)||/||b|| 2.275485703688e-01
313 KSP unpreconditioned resid norm 2.146767858681e-01 true resid norm 2.146767858219e-01 ||r(i)||/||b|| 2.146767858219e-01
314 KSP unpreconditioned resid norm 2.120949686045e-01 true resid norm 2.120949685522e-01 ||r(i)||/||b|| 2.120949685522e-01
315 KSP unpreconditioned resid norm 2.064514879743e-01 true resid norm 2.064514879090e-01 ||r(i)||/||b|| 2.064514879090e-01
316 KSP unpreconditioned resid norm 2.014785861455e-01 true resid norm 2.014785860719e-01 ||r(i)||/||b|| 2.014785860719e-01
317 KSP unpreconditioned resid norm 1.836339733505e-01 true resid norm 1.836339732337e-01 ||r(i)||/||b|| 1.836339732337e-01
318 KSP unpreconditioned resid norm 1.782557336839e-01 true resid norm 1.782557335572e-01 ||r(i)||/||b|| 1.782557335572e-01
319 KSP unpreconditioned resid norm 1.773367597651e-01 true resid norm 1.773367596315e-01 ||r(i)||/||b|| 1.773367596315e-01
320 KSP unpreconditioned resid norm 1.772976564947e-01 true resid norm 1.772976563590e-01 ||r(i)||/||b|| 1.772976563590e-01
321 KSP unpreconditioned resid norm 1.772921680691e-01 true resid norm 1.772921679357e-01 ||r(i)||/||b|| 1.772921679357e-01
322 KSP unpreconditioned resid norm 1.767754416857e-01 true resid norm 1.767754415223e-01 ||r(i)||/||b|| 1.767754415223e-01
323 KSP unpreconditioned resid norm 1.746699598584e-01 true resid norm 1.746699596264e-01 ||r(i)||/||b|| 1.746699596264e-01
324 KSP unpreconditioned resid norm 1.746445006469e-01 true resid norm 1.746445004232e-01 ||r(i)||/||b|| 1.746445004232e-01
325 KSP unpreconditioned resid norm 1.684584222617e-01 true resid norm 1.684584218506e-01 ||r(i)||/||b|| 1.684584218506e-01
326 KSP unpreconditioned resid norm 1.674167441668e-01 true resid norm 1.674167436839e-01 ||r(i)||/||b|| 1.674167436839e-01
327 KSP unpreconditioned resid norm 1.672008818262e-01 true resid norm 1.672008813720e-01 ||r(i)||/||b|| 1.672008813720e-01
328 KSP unpreconditioned resid norm 1.662379522900e-01 true resid norm 1.662379517731e-01 ||r(i)||/||b|| 1.662379517731e-01
329 KSP unpreconditioned resid norm 1.601720076931e-01 true resid norm 1.601720069869e-01 ||r(i)||/||b|| 1.601720069869e-01
330 KSP unpreconditioned resid norm 1.585480309692e-01 true resid norm 1.585480301574e-01 ||r(i)||/||b|| 1.585480301574e-01
331 KSP unpreconditioned resid norm 1.571787549320e-01 true resid norm 1.571787538671e-01 ||r(i)||/||b|| 1.571787538671e-01
332 KSP unpreconditioned resid norm 1.569251939889e-01 true resid norm 1.569251928097e-01 ||r(i)||/||b|| 1.569251928097e-01
333 KSP unpreconditioned resid norm 1.565883065959e-01 true resid norm 1.565883055005e-01 ||r(i)||/||b|| 1.565883055005e-01
334 KSP unpreconditioned resid norm 1.565613786085e-01 true resid norm 1.565613774637e-01 ||r(i)||/||b|| 1.565613774637e-01
335 KSP unpreconditioned resid norm 1.557336465541e-01 true resid norm 1.557336456231e-01 ||r(i)||/||b|| 1.557336456231e-01
336 KSP unpreconditioned resid norm 1.553093858707e-01 true resid norm 1.553093848290e-01 ||r(i)||/||b|| 1.553093848290e-01
337 KSP unpreconditioned resid norm 1.548889497330e-01 true resid norm 1.548889486326e-01 ||r(i)||/||b|| 1.548889486326e-01
338 KSP unpreconditioned resid norm 1.548883644441e-01 true resid norm 1.548883633358e-01 ||r(i)||/||b|| 1.548883633358e-01
339 KSP unpreconditioned resid norm 1.540175967505e-01 true resid norm 1.540175961222e-01 ||r(i)||/||b|| 1.540175961222e-01
340 KSP unpreconditioned resid norm 1.539429512173e-01 true resid norm 1.539429507315e-01 ||r(i)||/||b|| 1.539429507315e-01
341 KSP unpreconditioned resid norm 1.535316309458e-01 true resid norm 1.535316301660e-01 ||r(i)||/||b|| 1.535316301660e-01
342 KSP unpreconditioned resid norm 1.471097867081e-01 true resid norm 1.471097847876e-01 ||r(i)||/||b|| 1.471097847876e-01
343 KSP unpreconditioned resid norm 1.226316642779e-01 true resid norm 1.226316601315e-01 ||r(i)||/||b|| 1.226316601315e-01
344 KSP unpreconditioned resid norm 1.070562758173e-01 true resid norm 1.070562706931e-01 ||r(i)||/||b|| 1.070562706931e-01
345 KSP unpreconditioned resid norm 9.580050842675e-02 true resid norm 9.580050362437e-02 ||r(i)||/||b|| 9.580050362437e-02
346 KSP unpreconditioned resid norm 8.938431120613e-02 true resid norm 8.938430623101e-02 ||r(i)||/||b|| 8.938430623101e-02
347 KSP unpreconditioned resid norm 8.788691394329e-02 true resid norm 8.788690858813e-02 ||r(i)||/||b|| 8.788690858813e-02
348 KSP unpreconditioned resid norm 8.107024962776e-02 true resid norm 8.107024357065e-02 ||r(i)||/||b|| 8.107024357065e-02
349 KSP unpreconditioned resid norm 7.169248790143e-02 true resid norm 7.169248048782e-02 ||r(i)||/||b|| 7.169248048782e-02
350 KSP unpreconditioned resid norm 6.578965885010e-02 true resid norm 6.578965226316e-02 ||r(i)||/||b|| 6.578965226316e-02
351 KSP unpreconditioned resid norm 6.380956818890e-02 true resid norm 6.380956325524e-02 ||r(i)||/||b|| 6.380956325524e-02
352 KSP unpreconditioned resid norm 6.313534475146e-02 true resid norm 6.313534177489e-02 ||r(i)||/||b|| 6.313534177489e-02
353 KSP unpreconditioned resid norm 6.243423502754e-02 true resid norm 6.243423533990e-02 ||r(i)||/||b|| 6.243423533990e-02
354 KSP unpreconditioned resid norm 6.157167736591e-02 true resid norm 6.157167999264e-02 ||r(i)||/||b|| 6.157167999264e-02
355 KSP unpreconditioned resid norm 5.775660521432e-02 true resid norm 5.775661225417e-02 ||r(i)||/||b|| 5.775661225417e-02
356 KSP unpreconditioned resid norm 5.490844322918e-02 true resid norm 5.490845090194e-02 ||r(i)||/||b|| 5.490845090194e-02
357 KSP unpreconditioned resid norm 5.429382422193e-02 true resid norm 5.429383264972e-02 ||r(i)||/||b|| 5.429383264972e-02
358 KSP unpreconditioned resid norm 5.303688206071e-02 true resid norm 5.303689093825e-02 ||r(i)||/||b|| 5.303689093825e-02
359 KSP unpreconditioned resid norm 5.133504418974e-02 true resid norm 5.133505454889e-02 ||r(i)||/||b|| 5.133505454889e-02
360 KSP unpreconditioned resid norm 4.907249543113e-02 true resid norm 4.907250242705e-02 ||r(i)||/||b|| 4.907250242705e-02
361 KSP unpreconditioned resid norm 4.584788990146e-02 true resid norm 4.584788950697e-02 ||r(i)||/||b|| 4.584788950697e-02
362 KSP unpreconditioned resid norm 4.243686563820e-02 true resid norm 4.243686594243e-02 ||r(i)||/||b|| 4.243686594243e-02
363 KSP unpreconditioned resid norm 4.010038805202e-02 true resid norm 4.010039308507e-02 ||r(i)||/||b|| 4.010039308507e-02
364 KSP unpreconditioned resid norm 3.666048088720e-02 true resid norm 3.666048851641e-02 ||r(i)||/||b|| 3.666048851641e-02
365 KSP unpreconditioned resid norm 3.241769847654e-02 true resid norm 3.241769341331e-02 ||r(i)||/||b|| 3.241769341331e-02
366 KSP unpreconditioned resid norm 2.790019446668e-02 true resid norm 2.790019993620e-02 ||r(i)||/||b|| 2.790019993620e-02
367 KSP unpreconditioned resid norm 2.497374198147e-02 true resid norm 2.497375791603e-02 ||r(i)||/||b|| 2.497375791603e-02
368 KSP unpreconditioned resid norm 2.221456464106e-02 true resid norm 2.221458574023e-02 ||r(i)||/||b|| 2.221458574023e-02
369 KSP unpreconditioned resid norm 1.941193339970e-02 true resid norm 1.941196134725e-02 ||r(i)||/||b|| 1.941196134725e-02
370 KSP unpreconditioned resid norm 1.703911017295e-02 true resid norm 1.703914955004e-02 ||r(i)||/||b|| 1.703914955004e-02
371 KSP unpreconditioned resid norm 1.584153738361e-02 true resid norm 1.584158425388e-02 ||r(i)||/||b|| 1.584158425388e-02
372 KSP unpreconditioned resid norm 1.541221159210e-02 true resid norm 1.541227347778e-02 ||r(i)||/||b|| 1.541227347778e-02
373 KSP unpreconditioned resid norm 1.486349868593e-02 true resid norm 1.486357245297e-02 ||r(i)||/||b|| 1.486357245297e-02
374 KSP unpreconditioned resid norm 1.390194085462e-02 true resid norm 1.390203417410e-02 ||r(i)||/||b|| 1.390203417410e-02
375 KSP unpreconditioned resid norm 1.310204632707e-02 true resid norm 1.310213806938e-02 ||r(i)||/||b|| 1.310213806938e-02
376 KSP unpreconditioned resid norm 1.255119251289e-02 true resid norm 1.255128248977e-02 ||r(i)||/||b|| 1.255128248977e-02
377 KSP unpreconditioned resid norm 1.224015507551e-02 true resid norm 1.224024889587e-02 ||r(i)||/||b|| 1.224024889587e-02
378 KSP unpreconditioned resid norm 1.193019469234e-02 true resid norm 1.193029896048e-02 ||r(i)||/||b|| 1.193029896048e-02
379 KSP unpreconditioned resid norm 1.134010384305e-02 true resid norm 1.134023408057e-02 ||r(i)||/||b|| 1.134023408057e-02
380 KSP unpreconditioned resid norm 1.094399256167e-02 true resid norm 1.094412506287e-02 ||r(i)||/||b|| 1.094412506287e-02
381 KSP unpreconditioned resid norm 1.059241998573e-02 true resid norm 1.059255150387e-02 ||r(i)||/||b|| 1.059255150387e-02
382 KSP unpreconditioned resid norm 1.036697740677e-02 true resid norm 1.036712090296e-02 ||r(i)||/||b|| 1.036712090296e-02
383 KSP unpreconditioned resid norm 9.888775758245e-03 true resid norm 9.888943973159e-03 ||r(i)||/||b|| 9.888943973159e-03
384 KSP unpreconditioned resid norm 9.557700385672e-03 true resid norm 9.557919393756e-03 ||r(i)||/||b|| 9.557919393756e-03
385 KSP unpreconditioned resid norm 9.224766572763e-03 true resid norm 9.225076312391e-03 ||r(i)||/||b|| 9.225076312391e-03
386 KSP unpreconditioned resid norm 8.647972965356e-03 true resid norm 8.648417152268e-03 ||r(i)||/||b|| 8.648417152268e-03
387 KSP unpreconditioned resid norm 8.195379637288e-03 true resid norm 8.195863514880e-03 ||r(i)||/||b|| 8.195863514880e-03
388 KSP unpreconditioned resid norm 7.753644611989e-03 true resid norm 7.754191362543e-03 ||r(i)||/||b|| 7.754191362543e-03
389 KSP unpreconditioned resid norm 7.185832494239e-03 true resid norm 7.186490349784e-03 ||r(i)||/||b|| 7.186490349784e-03
390 KSP unpreconditioned resid norm 6.893804017330e-03 true resid norm 6.894454819171e-03 ||r(i)||/||b|| 6.894454819171e-03
391 KSP unpreconditioned resid norm 6.723809077351e-03 true resid norm 6.724459442483e-03 ||r(i)||/||b|| 6.724459442483e-03
392 KSP unpreconditioned resid norm 6.442413319076e-03 true resid norm 6.443072910598e-03 ||r(i)||/||b|| 6.443072910598e-03
393 KSP unpreconditioned resid norm 5.986702024242e-03 true resid norm 5.987358674073e-03 ||r(i)||/||b|| 5.987358674073e-03
394 KSP unpreconditioned resid norm 5.537321731861e-03 true resid norm 5.537712345312e-03 ||r(i)||/||b|| 5.537712345312e-03
395 KSP unpreconditioned resid norm 5.359744407208e-03 true resid norm 5.359949672811e-03 ||r(i)||/||b|| 5.359949672811e-03
396 KSP unpreconditioned resid norm 5.076923173465e-03 true resid norm 5.076679001667e-03 ||r(i)||/||b|| 5.076679001667e-03
397 KSP unpreconditioned resid norm 4.935081523054e-03 true resid norm 4.934401708563e-03 ||r(i)||/||b|| 4.934401708563e-03
398 KSP unpreconditioned resid norm 4.673712489044e-03 true resid norm 4.672670265015e-03 ||r(i)||/||b|| 4.672670265015e-03
399 KSP unpreconditioned resid norm 4.502922645178e-03 true resid norm 4.501759099440e-03 ||r(i)||/||b|| 4.501759099440e-03
400 KSP unpreconditioned resid norm 4.379232200187e-03 true resid norm 4.378081458953e-03 ||r(i)||/||b|| 4.378081458953e-03
401 KSP unpreconditioned resid norm 4.299364976529e-03 true resid norm 4.298420487462e-03 ||r(i)||/||b|| 4.298420487462e-03
402 KSP unpreconditioned resid norm 4.203944240909e-03 true resid norm 4.203707425113e-03 ||r(i)||/||b|| 4.203707425113e-03
403 KSP unpreconditioned resid norm 3.950733861768e-03 true resid norm 3.951987034016e-03 ||r(i)||/||b|| 3.951987034016e-03
404 KSP unpreconditioned resid norm 3.759190837627e-03 true resid norm 3.762587783022e-03 ||r(i)||/||b|| 3.762587783022e-03
405 KSP unpreconditioned resid norm 3.697988098950e-03 true resid norm 3.702579786648e-03 ||r(i)||/||b|| 3.702579786648e-03
406 KSP unpreconditioned resid norm 3.672182760214e-03 true resid norm 3.677038639147e-03 ||r(i)||/||b|| 3.677038639147e-03
407 KSP unpreconditioned resid norm 3.628948274549e-03 true resid norm 3.633534692152e-03 ||r(i)||/||b|| 3.633534692152e-03
408 KSP unpreconditioned resid norm 3.377108882690e-03 true resid norm 3.382576156607e-03 ||r(i)||/||b|| 3.382576156607e-03
409 KSP unpreconditioned resid norm 3.121670609623e-03 true resid norm 3.129264589577e-03 ||r(i)||/||b|| 3.129264589577e-03
410 KSP unpreconditioned resid norm 3.064633771770e-03 true resid norm 3.073447768617e-03 ||r(i)||/||b|| 3.073447768617e-03
411 KSP unpreconditioned resid norm 2.949250642210e-03 true resid norm 2.961104623611e-03 ||r(i)||/||b|| 2.961104623611e-03
412 KSP unpreconditioned resid norm 2.802677622787e-03 true resid norm 2.822740878321e-03 ||r(i)||/||b|| 2.822740878321e-03
413 KSP unpreconditioned resid norm 2.779838349583e-03 true resid norm 2.805256864578e-03 ||r(i)||/||b|| 2.805256864578e-03
414 KSP unpreconditioned resid norm 2.758621673782e-03 true resid norm 2.794070464229e-03 ||r(i)||/||b|| 2.794070464229e-03
415 KSP unpreconditioned resid norm 2.706203547384e-03 true resid norm 2.761179299679e-03 ||r(i)||/||b|| 2.761179299679e-03
416 KSP unpreconditioned resid norm 2.686580160118e-03 true resid norm 2.746977046847e-03 ||r(i)||/||b|| 2.746977046847e-03
417 KSP unpreconditioned resid norm 2.685659988653e-03 true resid norm 2.745576252402e-03 ||r(i)||/||b|| 2.745576252402e-03
418 KSP unpreconditioned resid norm 2.680768080450e-03 true resid norm 2.739056541994e-03 ||r(i)||/||b|| 2.739056541994e-03
419 KSP unpreconditioned resid norm 2.680758007372e-03 true resid norm 2.738888246997e-03 ||r(i)||/||b|| 2.738888246997e-03
420 KSP unpreconditioned resid norm 2.668644336930e-03 true resid norm 2.720461674717e-03 ||r(i)||/||b|| 2.720461674717e-03
421 KSP unpreconditioned resid norm 2.662857378410e-03 true resid norm 2.710665175284e-03 ||r(i)||/||b|| 2.710665175284e-03
422 KSP unpreconditioned resid norm 2.622409774011e-03 true resid norm 2.685432667878e-03 ||r(i)||/||b|| 2.685432667878e-03
423 KSP unpreconditioned resid norm 2.440252413105e-03 true resid norm 2.545055350981e-03 ||r(i)||/||b|| 2.545055350981e-03
424 KSP unpreconditioned resid norm 2.379858326281e-03 true resid norm 2.532073426944e-03 ||r(i)||/||b|| 2.532073426944e-03
425 KSP unpreconditioned resid norm 2.340217348110e-03 true resid norm 2.597200206682e-03 ||r(i)||/||b|| 2.597200206682e-03
426 KSP unpreconditioned resid norm 2.297019050494e-03 true resid norm 2.713325683819e-03 ||r(i)||/||b|| 2.713325683819e-03
427 KSP unpreconditioned resid norm 2.213963674689e-03 true resid norm 2.876879698910e-03 ||r(i)||/||b|| 2.876879698910e-03
428 KSP unpreconditioned resid norm 2.147864461322e-03 true resid norm 3.076934729589e-03 ||r(i)||/||b|| 3.076934729589e-03
429 KSP unpreconditioned resid norm 2.082309951304e-03 true resid norm 3.299054759605e-03 ||r(i)||/||b|| 3.299054759605e-03
430 KSP unpreconditioned resid norm 2.018731891794e-03 true resid norm 3.521703980547e-03 ||r(i)||/||b|| 3.521703980547e-03
431 KSP unpreconditioned resid norm 1.958872410416e-03 true resid norm 3.737773922920e-03 ||r(i)||/||b|| 3.737773922920e-03
432 KSP unpreconditioned resid norm 1.904881100460e-03 true resid norm 3.942568115662e-03 ||r(i)||/||b|| 3.942568115662e-03
433 KSP unpreconditioned resid norm 1.853234579338e-03 true resid norm 4.132876181069e-03 ||r(i)||/||b|| 4.132876181069e-03
434 KSP unpreconditioned resid norm 1.806503988645e-03 true resid norm 4.309623360537e-03 ||r(i)||/||b|| 4.309623360537e-03
435 KSP unpreconditioned resid norm 1.762559805678e-03 true resid norm 4.472570641082e-03 ||r(i)||/||b|| 4.472570641082e-03
Send size=20 (2 scalars) to 0
5 Receive size=20 (2 scalars) msg Number = 5
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
436 KSP unpreconditioned resid norm 1.721861311458e-03 true resid norm 4.623246814807e-03 ||r(i)||/||b|| 4.623246814807e-03
437 KSP unpreconditioned resid norm 1.683808642306e-03 true resid norm 4.762536700759e-03 ||r(i)||/||b|| 4.762536700759e-03
@} LSQR convhul negatif chsigne 180 cumul 180 mu1 7
438 KSP unpreconditioned resid norm 1.648159829773e-03 true resid norm 4.891542200629e-03 ||r(i)||/||b|| 4.891542200629e-03
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
439 KSP unpreconditioned resid norm 1.614703236107e-03 true resid norm 5.011279245867e-03 ||r(i)||/||b|| 5.011279245867e-03
440 KSP unpreconditioned resid norm 1.583189205732e-03 true resid norm 5.122594821158e-03 ||r(i)||/||b|| 5.122594821158e-03
441 KSP unpreconditioned resid norm 1.553460122527e-03 true resid norm 5.226322480418e-03 ||r(i)||/||b|| 5.226322480418e-03
@} LSQR convhul negatif chsigne 200 cumul 200 mu1 7
442 KSP unpreconditioned resid norm 1.525340704661e-03 true resid norm 5.323153624190e-03 ||r(i)||/||b|| 5.323153624190e-03
Send size=32 (4 scalars) to 0
Send size=32 (4 scalars) to 1
LS has sent the parameters
443 KSP unpreconditioned resid norm 1.498697066097e-03 true resid norm 5.413734244794e-03 ||r(i)||/||b|| 5.413734244794e-03
444 KSP unpreconditioned resid norm 1.473401673416e-03 true resid norm 5.498623419532e-03 ||r(i)||/||b|| 5.498623419532e-03
445 KSP unpreconditioned resid norm 1.449345678309e-03 true resid norm 5.578326333728e-03 ||r(i)||/||b|| 5.578326333728e-03
446 KSP unpreconditioned resid norm 1.426430621868e-03 true resid norm 5.653290131388e-03 ||r(i)||/||b|| 5.653290131388e-03
447 KSP unpreconditioned resid norm 1.404569238731e-03 true resid norm 5.723915371915e-03 ||r(i)||/||b|| 5.723915371915e-03
448 KSP unpreconditioned resid norm 1.383683122211e-03 true resid norm 5.790559890979e-03 ||r(i)||/||b|| 5.790559890979e-03
449 KSP unpreconditioned resid norm 1.363701869327e-03 true resid norm 5.853544628732e-03 ||r(i)||/||b|| 5.853544628732e-03
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)
Send size=20 (2 scalars) to 0
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.120809i5 Receive size=20 (2 scalars) msg Number = 6
(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
1 Receive size=32 (4 scalars) msg Number = 3
0 Receive size=32 (4 scalars) msg Number = 3
@@@>>>Preconditioning of LS method in: 450 iterations
450 KSP unpreconditioned resid norm 1.055351454942e+03 true resid norm 1.055351454942e+03 ||r(i)||/||b|| 1.055351454942e+03
451 KSP unpreconditioned resid norm 1.557210041700e-01 true resid norm 1.557210041697e-01 ||r(i)||/||b|| 1.557210041697e-01
452 KSP unpreconditioned resid norm 8.938893050114e-03 true resid norm 8.938893050207e-03 ||r(i)||/||b|| 8.938893050207e-03
453 KSP unpreconditioned resid norm 8.937597804789e-03 true resid norm 8.937597804903e-03 ||r(i)||/||b|| 8.937597804903e-03
454 KSP unpreconditioned resid norm 8.713201804199e-03 true resid norm 8.713201808701e-03 ||r(i)||/||b|| 8.713201808701e-03
455 KSP unpreconditioned resid norm 8.672115805331e-03 true resid norm 8.672115809966e-03 ||r(i)||/||b|| 8.672115809966e-03
456 KSP unpreconditioned resid norm 5.263710433446e-03 true resid norm 5.263710433571e-03 ||r(i)||/||b|| 5.263710433571e-03
457 KSP unpreconditioned resid norm 5.026886962739e-03 true resid norm 5.026886962944e-03 ||r(i)||/||b|| 5.026886962944e-03
458 KSP unpreconditioned resid norm 4.914153273438e-03 true resid norm 4.914153276237e-03 ||r(i)||/||b|| 4.914153276237e-03
459 KSP unpreconditioned resid norm 4.855186406662e-03 true resid norm 4.855186411601e-03 ||r(i)||/||b|| 4.855186411601e-03
460 KSP unpreconditioned resid norm 4.854465001806e-03 true resid norm 4.854465006727e-03 ||r(i)||/||b|| 4.854465006727e-03
461 KSP unpreconditioned resid norm 4.852939978206e-03 true resid norm 4.852939982964e-03 ||r(i)||/||b|| 4.852939982964e-03
462 KSP unpreconditioned resid norm 4.851595990856e-03 true resid norm 4.851595995508e-03 ||r(i)||/||b|| 4.851595995508e-03
463 KSP unpreconditioned resid norm 4.838534134957e-03 true resid norm 4.838534140148e-03 ||r(i)||/||b|| 4.838534140148e-03
464 KSP unpreconditioned resid norm 4.747328945062e-03 true resid norm 4.747328952489e-03 ||r(i)||/||b|| 4.747328952489e-03
465 KSP unpreconditioned resid norm 4.716070523561e-03 true resid norm 4.716070530818e-03 ||r(i)||/||b|| 4.716070530818e-03
466 KSP unpreconditioned resid norm 4.633739195984e-03 true resid norm 4.633739202953e-03 ||r(i)||/||b|| 4.633739202953e-03
467 KSP unpreconditioned resid norm 4.205886363063e-03 true resid norm 4.205886367557e-03 ||r(i)||/||b|| 4.205886367557e-03
468 KSP unpreconditioned resid norm 4.101378372851e-03 true resid norm 4.101378373163e-03 ||r(i)||/||b|| 4.101378373163e-03
469 KSP unpreconditioned resid norm 3.651707606046e-03 true resid norm 3.651707674638e-03 ||r(i)||/||b|| 3.651707674638e-03
470 KSP unpreconditioned resid norm 3.543348124159e-03 true resid norm 3.543348204199e-03 ||r(i)||/||b|| 3.543348204199e-03
471 KSP unpreconditioned resid norm 3.471335764239e-03 true resid norm 3.471335849423e-03 ||r(i)||/||b|| 3.471335849423e-03
472 KSP unpreconditioned resid norm 3.402561253340e-03 true resid norm 3.402561333272e-03 ||r(i)||/||b|| 3.402561333272e-03
473 KSP unpreconditioned resid norm 3.305933700102e-03 true resid norm 3.305933786604e-03 ||r(i)||/||b|| 3.305933786604e-03
474 KSP unpreconditioned resid norm 3.238329470301e-03 true resid norm 3.238329440010e-03 ||r(i)||/||b|| 3.238329440010e-03
475 KSP unpreconditioned resid norm 3.229334146636e-03 true resid norm 3.229334068742e-03 ||r(i)||/||b|| 3.229334068742e-03
476 KSP unpreconditioned resid norm 3.227986658769e-03 true resid norm 3.227986615133e-03 ||r(i)||/||b|| 3.227986615133e-03
477 KSP unpreconditioned resid norm 3.162951838264e-03 true resid norm 3.162951526745e-03 ||r(i)||/||b|| 3.162951526745e-03
478 KSP unpreconditioned resid norm 3.158495750754e-03 true resid norm 3.158495363072e-03 ||r(i)||/||b|| 3.158495363072e-03
479 KSP unpreconditioned resid norm 3.123560156118e-03 true resid norm 3.123559512162e-03 ||r(i)||/||b|| 3.123559512162e-03
480 KSP unpreconditioned resid norm 3.120642405913e-03 true resid norm 3.120641832512e-03 ||r(i)||/||b|| 3.120641832512e-03
481 KSP unpreconditioned resid norm 3.099459347655e-03 true resid norm 3.099459051293e-03 ||r(i)||/||b|| 3.099459051293e-03
482 KSP unpreconditioned resid norm 3.076990881650e-03 true resid norm 3.076990238822e-03 ||r(i)||/||b|| 3.076990238822e-03
483 KSP unpreconditioned resid norm 3.053425608977e-03 true resid norm 3.053424666730e-03 ||r(i)||/||b|| 3.053424666730e-03
484 KSP unpreconditioned resid norm 3.005306864006e-03 true resid norm 3.005305546735e-03 ||r(i)||/||b|| 3.005305546735e-03
485 KSP unpreconditioned resid norm 2.997312995777e-03 true resid norm 2.997311479382e-03 ||r(i)||/||b|| 2.997311479382e-03
486 KSP unpreconditioned resid norm 2.979316509299e-03 true resid norm 2.979315282639e-03 ||r(i)||/||b|| 2.979315282639e-03
487 KSP unpreconditioned resid norm 2.979316418679e-03 true resid norm 2.979315192765e-03 ||r(i)||/||b|| 2.979315192765e-03
488 KSP unpreconditioned resid norm 2.977506836702e-03 true resid norm 2.977505705934e-03 ||r(i)||/||b|| 2.977505705934e-03
489 KSP unpreconditioned resid norm 2.974200996271e-03 true resid norm 2.974199735334e-03 ||r(i)||/||b|| 2.974199735334e-03
490 KSP unpreconditioned resid norm 2.972748642942e-03 true resid norm 2.972747328708e-03 ||r(i)||/||b|| 2.972747328708e-03
491 KSP unpreconditioned resid norm 2.972598918233e-03 true resid norm 2.972597637924e-03 ||r(i)||/||b|| 2.972597637924e-03
492 KSP unpreconditioned resid norm 2.962776887770e-03 true resid norm 2.962775935614e-03 ||r(i)||/||b|| 2.962775935614e-03
493 KSP unpreconditioned resid norm 2.947688092058e-03 true resid norm 2.947687600878e-03 ||r(i)||/||b|| 2.947687600878e-03
494 KSP unpreconditioned resid norm 2.910321902617e-03 true resid norm 2.910321696013e-03 ||r(i)||/||b|| 2.910321696013e-03
495 KSP unpreconditioned resid norm 2.907173449335e-03 true resid norm 2.907173407780e-03 ||r(i)||/||b|| 2.907173407780e-03
496 KSP unpreconditioned resid norm 2.904033399342e-03 true resid norm 2.904033373383e-03 ||r(i)||/||b|| 2.904033373383e-03
497 KSP unpreconditioned resid norm 2.901907128760e-03 true resid norm 2.901906963005e-03 ||r(i)||/||b|| 2.901906963005e-03
498 KSP unpreconditioned resid norm 2.900936412679e-03 true resid norm 2.900936115969e-03 ||r(i)||/||b|| 2.900936115969e-03
499 KSP unpreconditioned resid norm 2.872858083406e-03 true resid norm 2.872856898784e-03 ||r(i)||/||b|| 2.872856898784e-03
500 KSP unpreconditioned resid norm 2.754321324402e-03 true resid norm 2.754318915749e-03 ||r(i)||/||b|| 2.754318915749e-03
501 KSP unpreconditioned resid norm 2.753295759386e-03 true resid norm 2.753293310722e-03 ||r(i)||/||b|| 2.753293310722e-03
502 KSP unpreconditioned resid norm 2.753244015051e-03 true resid norm 2.753241540010e-03 ||r(i)||/||b|| 2.753241540010e-03
503 KSP unpreconditioned resid norm 2.748088631997e-03 true resid norm 2.748086608682e-03 ||r(i)||/||b|| 2.748086608682e-03
504 KSP unpreconditioned resid norm 2.734544216323e-03 true resid norm 2.734542773733e-03 ||r(i)||/||b|| 2.734542773733e-03
505 KSP unpreconditioned resid norm 2.717075388319e-03 true resid norm 2.717074567382e-03 ||r(i)||/||b|| 2.717074567382e-03
506 KSP unpreconditioned resid norm 2.619990935923e-03 true resid norm 2.619987441086e-03 ||r(i)||/||b|| 2.619987441086e-03
507 KSP unpreconditioned resid norm 2.541559849557e-03 true resid norm 2.541550093524e-03 ||r(i)||/||b|| 2.541550093524e-03
508 KSP unpreconditioned resid norm 2.402227076086e-03 true resid norm 2.402213112600e-03 ||r(i)||/||b|| 2.402213112600e-03
509 KSP unpreconditioned resid norm 2.309500373424e-03 true resid norm 2.309484195832e-03 ||r(i)||/||b|| 2.309484195832e-03
510 KSP unpreconditioned resid norm 2.187473368278e-03 true resid norm 2.187455149971e-03 ||r(i)||/||b|| 2.187455149971e-03
511 KSP unpreconditioned resid norm 2.119135785440e-03 true resid norm 2.119112050095e-03 ||r(i)||/||b|| 2.119112050095e-03
512 KSP unpreconditioned resid norm 1.922816099911e-03 true resid norm 1.922786360297e-03 ||r(i)||/||b|| 1.922786360297e-03
513 KSP unpreconditioned resid norm 1.760594798525e-03 true resid norm 1.760550306098e-03 ||r(i)||/||b|| 1.760550306098e-03
514 KSP unpreconditioned resid norm 1.702606847411e-03 true resid norm 1.702553575613e-03 ||r(i)||/||b|| 1.702553575613e-03
515 KSP unpreconditioned resid norm 1.613751282884e-03 true resid norm 1.613705371551e-03 ||r(i)||/||b|| 1.613705371551e-03
516 KSP unpreconditioned resid norm 1.354208487586e-03 true resid norm 1.354198542977e-03 ||r(i)||/||b|| 1.354198542977e-03
517 KSP unpreconditioned resid norm 1.272459277587e-03 true resid norm 1.272475682035e-03 ||r(i)||/||b|| 1.272475682035e-03
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.265459iSend size=20 (2 scalars) to 0
(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)
5 Receive size=20 (2 scalars) msg Number = 7
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
518 KSP unpreconditioned resid norm 1.250541092516e-03 true resid norm 1.250580669677e-03 ||r(i)||/||b|| 1.250580669677e-03
519 KSP unpreconditioned resid norm 1.238566238208e-03 true resid norm 1.238607484986e-03 ||r(i)||/||b|| 1.238607484986e-03
520 KSP unpreconditioned resid norm 1.236890316165e-03 true resid norm 1.236924638453e-03 ||r(i)||/||b|| 1.236924638453e-03
521 KSP unpreconditioned resid norm 1.234839152731e-03 true resid norm 1.234894223681e-03 ||r(i)||/||b|| 1.234894223681e-03
522 KSP unpreconditioned resid norm 1.227262517960e-03 true resid norm 1.227263201535e-03 ||r(i)||/||b|| 1.227263201535e-03
523 KSP unpreconditioned resid norm 1.227146578357e-03 true resid norm 1.227141856951e-03 ||r(i)||/||b|| 1.227141856951e-03
524 KSP unpreconditioned resid norm 1.226976026209e-03 true resid norm 1.226964432180e-03 ||r(i)||/||b|| 1.226964432180e-03
525 KSP unpreconditioned resid norm 1.201339633885e-03 true resid norm 1.201195951114e-03 ||r(i)||/||b|| 1.201195951114e-03
526 KSP unpreconditioned resid norm 1.187623244237e-03 true resid norm 1.187325503404e-03 ||r(i)||/||b|| 1.187325503404e-03
527 KSP unpreconditioned resid norm 1.183789425145e-03 true resid norm 1.183393969920e-03 ||r(i)||/||b|| 1.183393969920e-03
@} 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
528 KSP unpreconditioned resid norm 1.157275453300e-03 true resid norm 1.156589429071e-03 ||r(i)||/||b|| 1.156589429071e-03
529 KSP unpreconditioned resid norm 1.076143492750e-03 true resid norm 1.074903849261e-03 ||r(i)||/||b|| 1.074903849261e-03
530 KSP unpreconditioned resid norm 9.938609763140e-04 true resid norm 9.920240929437e-04 ||r(i)||/||b|| 9.920240929437e-04
531 KSP unpreconditioned resid norm 9.277436539295e-04 true resid norm 9.255313775802e-04 ||r(i)||/||b|| 9.255313775802e-04
532 KSP unpreconditioned resid norm 8.835363170756e-04 true resid norm 8.812280692079e-04 ||r(i)||/||b|| 8.812280692079e-04
533 KSP unpreconditioned resid norm 8.340679016477e-04 true resid norm 8.317344885382e-04 ||r(i)||/||b|| 8.317344885382e-04
534 KSP unpreconditioned resid norm 7.579730713062e-04 true resid norm 7.553505735717e-04 ||r(i)||/||b|| 7.553505735717e-04
535 KSP unpreconditioned resid norm 7.231934840692e-04 true resid norm 7.204582594220e-04 ||r(i)||/||b|| 7.204582594220e-04
536 KSP unpreconditioned resid norm 7.084381573801e-04 true resid norm 7.057374520996e-04 ||r(i)||/||b|| 7.057374520996e-04
537 KSP unpreconditioned resid norm 6.582232916413e-04 true resid norm 6.555139912214e-04 ||r(i)||/||b|| 6.555139912214e-04
538 KSP unpreconditioned resid norm 5.811723550941e-04 true resid norm 5.779409587072e-04 ||r(i)||/||b|| 5.779409587072e-04
@} 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
539 KSP unpreconditioned resid norm 5.624158045520e-04 true resid norm 5.601175750672e-04 ||r(i)||/||b|| 5.601175750672e-04
540 KSP unpreconditioned resid norm 5.472212205756e-04 true resid norm 5.455866813555e-04 ||r(i)||/||b|| 5.455866813555e-04
541 KSP unpreconditioned resid norm 5.296743861616e-04 true resid norm 5.294550454400e-04 ||r(i)||/||b|| 5.294550454400e-04
542 KSP unpreconditioned resid norm 5.262169882888e-04 true resid norm 5.265610823231e-04 ||r(i)||/||b|| 5.265610823231e-04
543 KSP unpreconditioned resid norm 5.258803255228e-04 true resid norm 5.264066589517e-04 ||r(i)||/||b|| 5.264066589517e-04
544 KSP unpreconditioned resid norm 5.161199565857e-04 true resid norm 5.174622335635e-04 ||r(i)||/||b|| 5.174622335635e-04
545 KSP unpreconditioned resid norm 5.104316093514e-04 true resid norm 5.132781210697e-04 ||r(i)||/||b|| 5.132781210697e-04
546 KSP unpreconditioned resid norm 4.949422748113e-04 true resid norm 5.013928171623e-04 ||r(i)||/||b|| 5.013928171623e-04
547 KSP unpreconditioned resid norm 4.643082693179e-04 true resid norm 4.772073056490e-04 ||r(i)||/||b|| 4.772073056490e-04
548 KSP unpreconditioned resid norm 4.418142543787e-04 true resid norm 4.612173850130e-04 ||r(i)||/||b|| 4.612173850130e-04
549 KSP unpreconditioned resid norm 4.290490778329e-04 true resid norm 4.525873570804e-04 ||r(i)||/||b|| 4.525873570804e-04
550 KSP unpreconditioned resid norm 3.685229107387e-04 true resid norm 4.013658486920e-04 ||r(i)||/||b|| 4.013658486920e-04
551 KSP unpreconditioned resid norm 3.161617674688e-04 true resid norm 3.539280174289e-04 ||r(i)||/||b|| 3.539280174289e-04
552 KSP unpreconditioned resid norm 2.900510647526e-04 true resid norm 3.403692956905e-04 ||r(i)||/||b|| 3.403692956905e-04
553 KSP unpreconditioned resid norm 2.586886698565e-04 true resid norm 3.290111832852e-04 ||r(i)||/||b|| 3.290111832852e-04
554 KSP unpreconditioned resid norm 2.268852205149e-04 true resid norm 3.187414394001e-04 ||r(i)||/||b|| 3.187414394001e-04
555 KSP unpreconditioned resid norm 1.982158247380e-04 true resid norm 3.084799726817e-04 ||r(i)||/||b|| 3.084799726817e-04
556 KSP unpreconditioned resid norm 1.738313324981e-04 true resid norm 3.025048925306e-04 ||r(i)||/||b|| 3.025048925306e-04
557 KSP unpreconditioned resid norm 1.593261094448e-04 true resid norm 3.004046874127e-04 ||r(i)||/||b|| 3.004046874127e-04
558 KSP unpreconditioned resid norm 1.456594571401e-04 true resid norm 3.030217660631e-04 ||r(i)||/||b|| 3.030217660631e-04
559 KSP unpreconditioned resid norm 1.318299869446e-04 true resid norm 2.995094610848e-04 ||r(i)||/||b|| 2.995094610848e-04
560 KSP unpreconditioned resid norm 1.228160689470e-04 true resid norm 3.006511968186e-04 ||r(i)||/||b|| 3.006511968186e-04
561 KSP unpreconditioned resid norm 1.142682175109e-04 true resid norm 3.001398507474e-04 ||r(i)||/||b|| 3.001398507474e-04
562 KSP unpreconditioned resid norm 1.072455509993e-04 true resid norm 3.000589433599e-04 ||r(i)||/||b|| 3.000589433599e-04
563 KSP unpreconditioned resid norm 1.012308632238e-04 true resid norm 3.001032923837e-04 ||r(i)||/||b|| 3.001032923837e-04
564 KSP unpreconditioned resid norm 9.601686990183e-05 true resid norm 3.000520149845e-04 ||r(i)||/||b|| 3.000520149845e-04
565 KSP unpreconditioned resid norm 9.149878143325e-05 true resid norm 3.000645312915e-04 ||r(i)||/||b|| 3.000645312915e-04
566 KSP unpreconditioned resid norm 8.754643400952e-05 true resid norm 3.000836779705e-04 ||r(i)||/||b|| 3.000836779705e-04
567 KSP unpreconditioned resid norm 8.405345508386e-05 true resid norm 3.000869311035e-04 ||r(i)||/||b|| 3.000869311035e-04
568 KSP unpreconditioned resid norm 8.095029965521e-05 true resid norm 3.001100733582e-04 ||r(i)||/||b|| 3.001100733582e-04
569 KSP unpreconditioned resid norm 7.816347513335e-05 true resid norm 3.001203642650e-04 ||r(i)||/||b|| 3.001203642650e-04
570 KSP unpreconditioned resid norm 7.564751448307e-05 true resid norm 3.001377230257e-04 ||r(i)||/||b|| 3.001377230257e-04
571 KSP unpreconditioned resid norm 7.335899165033e-05 true resid norm 3.001509673326e-04 ||r(i)||/||b|| 3.001509673326e-04
572 KSP unpreconditioned resid norm 7.126667851275e-05 true resid norm 3.001651401372e-04 ||r(i)||/||b|| 3.001651401372e-04
573 KSP unpreconditioned resid norm 6.934362106416e-05 true resid norm 3.001780296455e-04 ||r(i)||/||b|| 3.001780296455e-04
574 KSP unpreconditioned resid norm 6.756832674792e-05 true resid norm 3.001904373275e-04 ||r(i)||/||b|| 3.001904373275e-04
575 KSP unpreconditioned resid norm 6.592274102132e-05 true resid norm 3.002021063255e-04 ||r(i)||/||b|| 3.002021063255e-04
576 KSP unpreconditioned resid norm 6.439181603919e-05 true resid norm 3.002131395698e-04 ||r(i)||/||b|| 3.002131395698e-04