-
Notifications
You must be signed in to change notification settings - Fork 0
/
out.txt
6451 lines (6154 loc) · 518 KB
/
out.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
------------------Synthesys of equation 1 has started!---------------
[('1', 'F00*int0'), ('2', 'F01*int0'), ('3', 'F02*int0'), ('4', 'F10*int0'), ('5', 'F11*X00'), ('6', 'F12*X01'), ('7', 'F20*int0'), ('8', 'F21*X10'), ('9', 'F22*X11'), ('10', '1+2'), ('11', '3+4'), ('12', '5+6'), ('13', '7+8'), ('14', '10+11'), ('15', '12+13'), ('16', '14+15'), ('17', '16+9')]
Graph nodes:
Name Value Op_Type Conn
y00 None Write []
1 None * ['10']
2 None * ['10']
3 None * ['11']
4 None * ['11']
5 None * ['12']
6 None * ['12']
7 None * ['13']
8 None * ['13']
9 None * ['17']
10 None + ['14']
11 None + ['14']
12 None + ['15']
13 None + ['15']
14 None + ['16']
15 None + ['16']
16 None + ['17']
17 None + ['y00']
F00 None Read ['1']
int0 None Read ['1', '2', '3', '4', '7']
F01 None Read ['2']
F02 None Read ['3']
F10 None Read ['4']
F11 None Read ['5']
X00 None Read ['5']
F12 None Read ['6']
X01 None Read ['6']
F20 None Read ['7']
F21 None Read ['8']
X10 None Read ['8']
F22 None Read ['9']
X11 None Read ['9']
Labels for mode ASAP: [7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 5, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Labels for mode ALAP: [7, 2, 2, 2, 2, 2, 2, 2, 2, 5, 3, 3, 3, 3, 4, 4, 5, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4]
1. DUMPED cp: ['1', '10', '14', '16', '17', 'y00']
Inputs & Coords:
1 F00 (0, 0)
1 int0 (0, 0)
10 1 None
10 2 None
14 10 None
14 11 None
16 14 None
16 15 None
17 16 None
17 9 None
y00 17 None
Pre inputs: [(0, 0), (0, 0)]
Inputs [[(0, 0), 2]]
All psbl destinations: [(0, 0)]
Closest pe coord: (0, 0)
All schedules generated: [[1, 2, 3, 4, 5, 6]]
Final closest pe coord and schedule (0, 0) [1, 2, 3, 4, 5, 6]
Searching for other cps with nodes ['2', '9', '11', '15']
2. DUMPED cp: ['5', '12', '15']
Inputs & Coords:
5 F11 (0, 2)
5 X00 (0, 3)
12 5 None
12 6 None
15 12 None
15 13 None
Pre inputs: [(0, 2), (0, 3)]
Inputs [[(0, 2), 1], [(0, 3), 1]]
All psbl destinations: [(0, 2), (0, 3)]
Closest pe coord: (0, 2)
All schedules generated: [[2, 3, 4], [2, 3, 4]]
Final closest pe coord and schedule (0, 2) [2, 3, 4]
Searching for other cps with nodes ['2', '6', '9', '11', '13']
3. DUMPED cp: ['3', '11']
Inputs & Coords:
3 F02 (0, 1)
3 int0 (0, 0)
11 3 None
11 4 None
Pre inputs: [(0, 1), (0, 0)]
Inputs [[(0, 1), 1], [(0, 0), 1]]
All psbl destinations: [(0, 1)]
Closest pe coord: (0, 1)
All schedules generated: [[2, 3]]
Final closest pe coord and schedule (0, 1) [2, 3]
Searching for other cps with nodes ['2', '4', '6', '9', '13']
4. DUMPED cp: ['7', '13']
Inputs & Coords:
7 F20 (0, 4)
7 int0 (0, 0)
13 7 None
13 8 None
Pre inputs: [(0, 4), (0, 0)]
Inputs [[(0, 4), 1], [(0, 0), 1]]
All psbl destinations: [(0, 3), (0, 4)]
Closest pe coord: (0, 3)
All schedules generated: [[4, 5], [5, 6]]
Final closest pe coord and schedule (0, 3) [4, 5]
Searching for other cps with nodes ['2', '4', '6', '8', '9']
5. DUMPED cp: ['2']
Inputs & Coords:
2 F01 (0, 1)
2 int0 (0, 0)
Pre inputs: [(0, 1), (0, 0)]
Inputs [[(0, 1), 1], [(0, 0), 1]]
All psbl destinations: [(1, 0), (1, 1), (1, 0)]
Closest pe coord: (1, 0)
All schedules generated: [[3], [3], [3]]
Final closest pe coord and schedule (1, 0) [3]
Searching for other cps with nodes ['4', '6', '8', '9']
6. DUMPED cp: ['4']
Inputs & Coords:
4 F10 (0, 2)
4 int0 (0, 0)
Pre inputs: [(0, 2), (0, 0)]
Inputs [[(0, 2), 1], [(0, 0), 1]]
All psbl destinations: [(1, 1), (1, 2)]
Closest pe coord: (1, 1)
All schedules generated: [[4], [4]]
Final closest pe coord and schedule (1, 1) [4]
Searching for other cps with nodes ['6', '8', '9']
7. DUMPED cp: ['6']
Inputs & Coords:
6 F12 (0, 3)
6 X01 (0, 4)
Pre inputs: [(0, 3), (0, 4)]
Inputs [[(0, 3), 1], [(0, 4), 1]]
All psbl destinations: [(0, 4)]
Closest pe coord: (0, 4)
All schedules generated: [[2]]
Final closest pe coord and schedule (0, 4) [2]
Searching for other cps with nodes ['8', '9']
8. DUMPED cp: ['8']
Inputs & Coords:
8 F21 (1, 0)
8 X10 (1, 0)
Pre inputs: [(1, 0), (1, 0)]
Inputs [[(1, 0), 2]]
All psbl destinations: [(2, 0)]
Closest pe coord: (2, 0)
All schedules generated: [[2]]
Final closest pe coord and schedule (2, 0) [2]
Searching for other cps with nodes ['9']
9. DUMPED cp: ['9']
Inputs & Coords:
9 F22 (1, 1)
9 X11 (1, 1)
Pre inputs: [(1, 1), (1, 1)]
Inputs [[(1, 1), 2]]
All psbl destinations: [(1, 2)]
Closest pe coord: (1, 2)
All schedules generated: [[2]]
Final closest pe coord and schedule (1, 2) [2]
Searching for other cps with nodes []
Input allocation by PEs:
(0, 0) ---> ['F00', 'int0']
(0, 1) ---> ['F01', 'F02']
(0, 2) ---> ['F10', 'F11']
(0, 3) ---> ['X00', 'F12']
(0, 4) ---> ['X01', 'F20']
(1, 0) ---> ['F21', 'X10']
(1, 1) ---> ['F22', 'X11']
Final results before rescheduling (node.name, node.sched) by PEs:
(0, 0) ---> [('1', 1), ('10', 2), ('14', 3), ('16', 4), ('17', 5), ('y00', 6)]
(0, 2) ---> [('5', 2), ('12', 3), ('15', 4)]
(0, 1) ---> [('3', 2), ('11', 3)]
(0, 3) ---> [('7', 4), ('13', 5)]
(1, 0) ---> [('2', 3)]
(1, 1) ---> [('4', 4)]
(0, 4) ---> [('6', 2)]
(2, 0) ---> [('8', 2)]
(1, 2) ---> [('9', 2)]
RESCHEDULING
###### 8
Pred 1 entered: F21
Check for pred "F21" =====> in (1, 0) ['F21', 'X10']
Walked coords [(1, 0), (2, 0)]
1.0 Inputs are send from pred at step 3
1.3 Putting inputs to DPR-X directly at node at step 6
Pred 2 entered: X10
Check for pred "X10" =====> in (1, 0) ['F21', 'X10']
Walked coords [(1, 0), (2, 0)]
1.0 Inputs are send from pred at step 5
1.3 Putting inputs to DPR-X directly at node at step 8
3.0 Arithmetic op is done at step 9
4.2 Saving results to own MCLM at step 12
(2, 0) ---> [[], [11], [9], [6, 8, 10], [5, 7]]
###### 7
Pred 1 entered: F20
Check for pred "F20" =====> in (0, 4) ['X01', 'F20']
Walked coords [(0, 4), (0, 3)]
1.0 Inputs are send from pred at step 3
1.3 Putting inputs to DPR-X directly at node at step 6
Pred 2 entered: int0
Check for pred "int0" =====> in (0, 0) ['F00', 'int0']
Walked coords [(0, 0), (0, 1), (0, 2), (0, 3)]
1.0 Inputs are send from pred at step 3
1.3 Putting inputs to DPR-X directly at node at step 8
3.0 Arithmetic op is done at step 9
4.0 ---Notification is changed for 13 1
4.0 Saving results to DPR2 directly at step 10
(0, 3) ---> [[], [], [9], [6, 8, 10], [5, 7]]
###### 6
Pred 1 entered: F12
Check for pred "F12" =====> in (0, 3) ['X00', 'F12']
Walked coords [(0, 3), (0, 4)]
1.0 Inputs are send from pred at step 3
1.2 Putting inputs to DPR2 directly at node at step 6
Pred 2 entered: X01
2.0 Inputs loaded from MCLM to regs at node DPR1 at step 5
3.0 Arithmetic op is done at step 7
4.2 Saving results to own MCLM at step 10
(0, 4) ---> [[1, 4], [9], [7], [2, 3, 6, 5, 8], [4, 5]]
###### 5
Pred 1 entered: F11
Pred 2 entered: X00
Check for pred "X00" =====> in (0, 3) ['X00', 'F12']
Walked coords [(0, 3), (0, 2)]
1.0 Inputs are send from pred at step 5
1.2 Putting inputs to DPR2 directly at node at step 8
2.0 Inputs loaded from MCLM to regs at node DPR1 at step 2
3.0 Arithmetic op is done at step 9
4.0 ---Notification is changed for 12 1
4.0 Saving results to DPR2 directly at step 10
(0, 2) ---> [[1], [], [9], [8, 2, 10], [6, 7]]
###### 4
Pred 1 entered: F10
Check for pred "F10" =====> in (0, 2) ['F10', 'F11']
Walked coords [(0, 2), (1, 2), (1, 1)]
1.0 Inputs are send from pred at step 4
1.3 Putting inputs to DPR-X directly at node at step 8
Pred 2 entered: int0
Check for pred "int0" =====> in (0, 0) ['F00', 'int0']
Walked coords [(0, 0), (1, 0), (1, 1)]
1.0 Inputs are send from pred at step 5
1.3 Putting inputs to DPR-X directly at node at step 9
3.0 Arithmetic op is done at step 10
4.2 Saving results to own MCLM at step 13
(1, 1) ---> [[], [12], [10], [8, 9, 11], [7, 8]]
###### 3
Pred 1 entered: F02
Pred 2 entered: int0
Check for pred "int0" =====> in (0, 0) ['F00', 'int0']
Walked coords [(0, 0), (0, 1)]
1.0 Inputs are send from pred at step 7
1.2 Putting inputs to DPR2 directly at node at step 10
2.0 Inputs loaded from MCLM to regs at node DPR1 at step 2
3.0 Arithmetic op is done at step 11
4.0 ---Notification is changed for 11 1
4.0 Saving results to DPR2 directly at step 12
(0, 1) ---> [[1], [], [11], [10, 2, 12], [5, 9]]
###### 2
Pred 1 entered: F01
Check for pred "F01" =====> in (0, 1) ['F01', 'F02']
Walked coords [(0, 1), (1, 1), (1, 0)]
1.0 Inputs are send from pred at step 7
1.3 Putting inputs to DPR-X directly at node at step 11
Pred 2 entered: int0
Check for pred "int0" =====> in (0, 0) ['F00', 'int0']
Walked coords [(0, 0), (1, 0)]
1.0 Inputs are send from pred at step 9
1.3 Putting inputs to DPR-X directly at node at step 12
3.0 Arithmetic op is done at step 13
4.2 Saving results to own MCLM at step 16
(1, 0) ---> [[1, 3], [15], [13], [2, 3, 4, 5, 11, 12, 14], [4, 6, 7, 10, 11]]
###### 1
Pred 1 entered: F00
Pred 2 entered: int0
2.0 Inputs loaded from MCLM to regs at node DPR1 at step 10
2.0 Inputs loaded from MCLM to regs at node DPR2 at step 11
3.0 Arithmetic op is done at step 12
4.0 ---Notification is changed for 10 1
4.0 Saving results to DPR2 directly at step 13
(0, 0) ---> [[1, 3, 5, 7, 9, 10], [], [12], [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], [4, 6, 8, 10]]
###### 13
Pred 1 entered: 7
Pred 2 entered: 8
Check for pred "8" =====> in (2, 0) ['8']
Walked coords [(2, 0), (2, 1), (2, 2), (2, 3), (1, 3), (0, 3)]
1.0 Inputs are send from pred at step 15
1.2 Putting inputs to DPR1 directly at node at step 22
3.0 Arithmetic op is done at step 23
4.2 Saving results to own MCLM at step 26
(0, 3) ---> [[1, 3], [25], [9, 23], [6, 8, 10, 2, 3, 4, 5, 22, 24], [5, 7, 4, 6, 21]]
###### 12
Pred 1 entered: 5
Pred 2 entered: 6
Check for pred "6" =====> in (0, 4) ['X01', 'F20', '6']
Walked coords [(0, 4), (0, 3), (0, 2)]
1.0 Inputs are send from pred at step 13
1.2 Putting inputs to DPR1 directly at node at step 17
3.0 Arithmetic op is done at step 18
4.0 ---Notification is changed for 15 1
4.0 Saving results to DPR2 directly at step 19
(0, 2) ---> [[1, 2], [], [9, 18], [8, 2, 10, 3, 4, 17, 19], [6, 7, 5, 16]]
###### 11
Pred 1 entered: 3
Pred 2 entered: 4
Check for pred "4" =====> in (1, 1) ['F22', 'X11', '4']
Walked coords [(1, 1), (0, 1)]
1.0 Inputs are send from pred at step 16
1.2 Putting inputs to DPR1 directly at node at step 19
3.0 Arithmetic op is done at step 20
4.2 Saving results to own MCLM at step 23
(0, 1) ---> [[1, 5], [22], [11, 20], [10, 2, 12, 6, 7, 19, 21], [5, 9, 8, 18]]
###### 10
Pred 1 entered: 1
Pred 2 entered: 2
Check for pred "2" =====> in (1, 0) ['F21', 'X10', '2']
Walked coords [(1, 0), (0, 0)]
1.0 Inputs are send from pred at step 19
1.2 Putting inputs to DPR1 directly at node at step 22
3.0 Arithmetic op is done at step 23
4.0 ---Notification is changed for 14 1
4.0 Saving results to DPR2 directly at step 24
(0, 0) ---> [[1, 3, 5, 7, 9, 10], [], [12, 23], [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 22, 24], [4, 6, 8, 10, 21]]
###### 15
Pred 1 entered: 12
Pred 2 entered: 13
Check for pred "13" =====> in (0, 3) ['X00', 'F12', '13']
Walked coords [(0, 3), (0, 2)]
1.0 Inputs are send from pred at step 29
1.2 Putting inputs to DPR1 directly at node at step 32
3.0 Arithmetic op is done at step 33
4.2 Saving results to own MCLM at step 36
(0, 2) ---> [[1, 2], [35], [9, 18, 33], [8, 2, 10, 3, 4, 17, 19, 32, 34], [6, 7, 5, 16, 31]]
###### 14
Pred 1 entered: 10
Pred 2 entered: 11
Check for pred "11" =====> in (0, 1) ['F01', 'F02', '11']
Walked coords [(0, 1), (0, 0)]
1.0 Inputs are send from pred at step 26
1.2 Putting inputs to DPR1 directly at node at step 29
3.0 Arithmetic op is done at step 30
4.0 ---Notification is changed for 16 1
4.0 Saving results to DPR2 directly at step 31
(0, 0) ---> [[1, 3, 5, 7, 9, 10], [], [12, 23, 30], [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 22, 24, 29, 31], [4, 6, 8, 10, 21, 28]]
###### 9
Pred 1 entered: F22
Check for pred "F22" =====> in (1, 1) ['F22', 'X11', '4']
Walked coords [(1, 1), (1, 2)]
1.0 Inputs are send from pred at step 3
1.3 Putting inputs to DPR-X directly at node at step 6
Pred 2 entered: X11
Check for pred "X11" =====> in (1, 1) ['F22', 'X11', '4']
Walked coords [(1, 1), (1, 2)]
1.0 Inputs are send from pred at step 5
1.3 Putting inputs to DPR-X directly at node at step 8
3.0 Arithmetic op is done at step 9
4.2 Saving results to own MCLM at step 12
(1, 2) ---> [[], [11], [9], [6, 8, 10], [6, 5, 7]]
###### 16
Pred 1 entered: 14
Pred 2 entered: 15
Check for pred "15" =====> in (0, 2) ['F10', 'F11', '15']
Walked coords [(0, 2), (0, 1), (0, 0)]
1.0 Inputs are send from pred at step 39
1.2 Putting inputs to DPR1 directly at node at step 43
3.0 Arithmetic op is done at step 44
4.0 ---Notification is changed for 17 1
4.0 Saving results to DPR2 directly at step 45
(0, 0) ---> [[1, 3, 5, 7, 9, 10], [], [12, 23, 30, 44], [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 22, 24, 29, 31, 43, 45], [4, 6, 8, 10, 21, 28, 42]]
###### 17
Pred 1 entered: 16
Pred 2 entered: 9
Check for pred "9" =====> in (1, 2) ['9']
Walked coords [(1, 2), (1, 1), (1, 0), (0, 0)]
1.0 Inputs are send from pred at step 16
1.2 Putting inputs to DPR1 directly at node at step 21
3.0 Arithmetic op is done at step 46
4.2 Saving results to own MCLM at step 49
(0, 0) ---> [[1, 3, 5, 7, 9, 10], [48], [12, 23, 30, 44, 46], [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 22, 24, 29, 31, 43, 45, 21, 47], [4, 6, 8, 10, 21, 28, 42, 20]]
###### y00
Pred 1 entered: 17
1.4 This is actually last node at step 49
Final results after rescheduling (node.name, node.sched): by PEs
(0, 0) ---> [('1', 13), ('10', 24), ('14', 31), ('16', 45), ('17', 49), ('y00', 49)]
(0, 2) ---> [('5', 10), ('12', 19), ('15', 36)]
(0, 1) ---> [('3', 12), ('11', 23)]
(0, 3) ---> [('7', 10), ('13', 26)]
(1, 0) ---> [('2', 16)]
(1, 1) ---> [('4', 13)]
(0, 4) ---> [('6', 10)]
(2, 0) ---> [('8', 12)]
(1, 2) ---> [('9', 12)]
PE map
[1, 1, 1, 1, 1, 0, 0, 0, 0, 0]
[1, 1, 1, 0, 0, 0, 0, 0, 0, 0]
[1, 0, 0, 0, 0, 0, 0, 0, 0, 0]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Node scheds and CCM commands:
1 ---> [(1, 0), ['CCM1', 1, 0, 'PE1'], [(0, 4), ['CCM1', 1, 1, 'PE1']], [(0, 0), ['CCM1', 1, 1, 'PE1']], [(0, 3), ['CCM1', 1, 1, 'PE1']], [(0, 2), ['CCM1', 1, 1, 'PE1']], [(0, 1), ['CCM1', 1, 1, 'PE1']], [(1, 1), ['CCM1', 1, 0, 'PE1']]]
2 ---> [(1, 0), ['CCM3', 'PERouter'], [(0, 4), ['CCM3', 'PERouter']], [(0, 0), ['CCM3', 'PERouter']], [(0, 3), ['CCM3', 'PERouter']], [(0, 2), ['CCM3', 'DPR1']], [(0, 2), ['CCM1', 2, 0, 'PE1']], [(0, 1), ['CCM3', 'DPR1']], [(1, 1), ['CCM3', 'PERouter']]]
3 ---> [(1, 0), ['CCM6', 'NodeRouter'], [(1, 0), ['CCM1', 3, 1, 'PE1']], [(0, 4), ['CCM6', 'NodeRouter']], [(0, 0), ['CCM6', 'NodeRouter']], [(0, 3), ['CCM6', 'NodeRouter']], [(0, 3), ['CCM1', 3, 0, 'PE1']], [(0, 2), ['CCM3', 'PERouter']], [(0, 0), ['CCM1', 3, 1, 'PE1']], [(1, 1), ['CCM6', 'NodeRouter']], [(1, 1), ['CCM1', 3, 1, 'PE1']]]
6 ---> [(2, 0), ['CCM6', 'DPR1'], [(0, 3), ['CCM6', 'DPR1']], [(0, 4), ['CCM6', 'DPR2']], [(0, 0), ['CCM3', 'PERouter']], [(0, 1), ['CCM3', 'PERouter']], [(1, 2), ['CCM6', 'DPR1']]]
4 ---> [(1, 0), ['CCM3', 'PERouter'], [(0, 4), ['CCM1', 4, 0, 'PE1']], [(0, 3), ['CCM3', 'PERouter']], [(0, 2), ['CCM6', 'NodeRouter']], [(0, 0), ['CCM3', 'PERouter']], [(1, 1), ['CCM3', 'PERouter']]]
5 ---> [(1, 0), ['CCM6', 'NodeRouter'], [(0, 4), ['CCM3', 'DPR1']], [(0, 3), ['CCM6', 'NodeRouter']], [(0, 0), ['CCM6', 'NodeRouter']], [(0, 0), ['CCM1', 5, 1, 'PE1']], [(0, 1), ['CCM1', 5, 0, 'PE1']], [(1, 1), ['CCM6', 'NodeRouter']]]
8 ---> [(2, 0), ['CCM6', 'DPR2'], [(0, 3), ['CCM6', 'DPR2']], [(0, 4), ['CCM5', 'DPR3']], [(0, 2), ['CCM6', 'DPR2']], [(1, 1), ['CCM6', 'DPR1']], [(0, 0), ['CCM3', 'PERouter']], [(1, 2), ['CCM6', 'DPR2']]]
9 ---> [(2, 0), ['CCM4', '*'], [(0, 3), ['CCM4', '*']], [(0, 4), ['CCM2', 'MCLM1']], [(0, 2), ['CCM4', '*']], [(1, 1), ['CCM6', 'DPR2']], [(0, 0), ['CCM6', 'NodeRouter']], [(0, 0), ['CCM1', 9, 0, 'PE1']], [(1, 2), ['CCM4', '*']]]
10 ---> [(2, 0), ['CCM5', 'DPR3'], [(0, 3), ['CCM5', 'DPR2']], [(0, 2), ['CCM5', 'DPR2']], [(1, 1), ['CCM4', '*']], [(0, 1), ['CCM6', 'DPR2']], [(0, 0), ['CCM3', 'DPR1']], [(0, 0), ['CCM1', 10, 1, 'PE1']], [(1, 2), ['CCM5', 'DPR3']]]
11 ---> [(2, 0), ['CCM2', 'MCLM1'], [(1, 1), ['CCM5', 'DPR3']], [(0, 1), ['CCM4', '*']], [(1, 0), ['CCM6', 'DPR1']], [(0, 0), ['CCM3', 'DPR2']], [(0, 4), ['CCM1', 11, 2, 'PE1']], [(1, 2), ['CCM2', 'MCLM1']]]
7 ---> [(0, 4), ['CCM4', '*'], [(0, 0), ['CCM6', 'NodeRouter']], [(0, 1), ['CCM6', 'NodeRouter']], [(0, 0), ['CCM1', 7, 1, 'PE1']]]
12 ---> [(1, 1), ['CCM2', 'MCLM1'], [(0, 1), ['CCM5', 'DPR2']], [(1, 0), ['CCM6', 'DPR2']], [(0, 0), ['CCM4', '*']], [(0, 4), ['CCM3', 'PERouter']]]
13 ---> [(1, 0), ['CCM4', '*'], [(0, 0), ['CCM5', 'DPR2']], [(2, 0), ['CCM1', 13, 0, 'PE1']], [(0, 4), ['CCM6', 'NodeRouter']]]
14 ---> [(1, 0), ['CCM5', 'DPR3'], [(2, 0), ['CCM3', 'PERouter']], [(1, 1), ['CCM1', 14, 2, 'PE1']], [(1, 2), ['CCM1', 14, 0, 'PE1']]]
15 ---> [(1, 0), ['CCM2', 'MCLM1'], [(2, 0), ['CCM6', 'NodeRouter']], [(1, 1), ['CCM3', 'PERouter']], [(1, 2), ['CCM3', 'PERouter']]]
22 ---> [(0, 3), ['CCM6', 'DPR1'], [(0, 1), ['CCM2', 'MCLM1']], [(0, 0), ['CCM6', 'DPR1']]]
23 ---> [(0, 3), ['CCM4', '+'], [(0, 0), ['CCM4', '+']]]
24 ---> [(0, 3), ['CCM5', 'DPR3'], [(0, 0), ['CCM5', 'DPR2']], [(0, 1), ['CCM1', 24, 2, 'PE1']]]
25 ---> [(0, 3), ['CCM2', 'MCLM1'], [(0, 1), ['CCM3', 'PERouter']]]
17 ---> [(0, 2), ['CCM6', 'DPR1'], [(1, 0), ['CCM1', 17, 2, 'PE1']]]
18 ---> [(0, 2), ['CCM4', '+'], [(1, 0), ['CCM3', 'PERouter']]]
19 ---> [(0, 2), ['CCM5', 'DPR2'], [(0, 1), ['CCM6', 'DPR1']], [(1, 0), ['CCM6', 'NodeRouter']]]
16 ---> [(1, 1), ['CCM6', 'NodeRouter'], [(1, 2), ['CCM6', 'NodeRouter']]]
20 ---> [(0, 1), ['CCM4', '+']]
21 ---> [(0, 1), ['CCM5', 'DPR3'], [(0, 0), ['CCM6', 'DPR1']]]
27 ---> [(0, 3), ['CCM1', 27, 2, 'PE1']]
28 ---> [(0, 3), ['CCM3', 'PERouter']]
29 ---> [(0, 3), ['CCM6', 'NodeRouter'], [(0, 0), ['CCM6', 'DPR1']]]
32 ---> [(0, 2), ['CCM6', 'DPR1']]
33 ---> [(0, 2), ['CCM4', '+']]
34 ---> [(0, 2), ['CCM5', 'DPR3']]
35 ---> [(0, 2), ['CCM2', 'MCLM1']]
26 ---> [(0, 1), ['CCM6', 'NodeRouter']]
30 ---> [(0, 0), ['CCM4', '+']]
31 ---> [(0, 0), ['CCM5', 'DPR2']]
37 ---> [(0, 2), ['CCM1', 37, 2, 'PE1']]
38 ---> [(0, 2), ['CCM3', 'PERouter']]
39 ---> [(0, 2), ['CCM6', 'NodeRouter']]
43 ---> [(0, 0), ['CCM6', 'DPR1']]
44 ---> [(0, 0), ['CCM4', '+']]
45 ---> [(0, 0), ['CCM5', 'DPR2']]
46 ---> [(0, 0), ['CCM4', '+']]
47 ---> [(0, 0), ['CCM5', 'DPR3']]
48 ---> [(0, 0), ['CCM2', 'MCLM1']]
Router scheds and CCM commands:
4 ---> [(0, 1), (0, 2)]
5 ---> [(0, 1), (0, 3), [(1, 2), (1, 1)]]
6 ---> [(1, 0), (1, 1)]
8 ---> [(1, 1), (1, 0)]
16 ---> [(2, 1), (2, 2)]
17 ---> [(2, 1), (2, 3), [(1, 1), (1, 0)]]
18 ---> [(2, 1), (1, 3), [(1, 1), (0, 0)]]
19 ---> [(2, 1), (0, 3)]
14 ---> [(0, 3), (0, 2)]
40 ---> [(0, 1), (0, 0)]
Rescheduler marker:
(0, 0) ---> [[1, 3, 5, 7, 9, 10], [48], [12, 23, 30, 44, 46], [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 22, 24, 29, 31, 43, 45, 21, 47], [4, 6, 8, 10, 21, 28, 42, 20]]
(0, 1) ---> [[1, 5, 24], [22], [11, 20], [10, 2, 12, 6, 7, 19, 21, 25, 26], [5, 9, 8, 18, 27, 41]]
(0, 2) ---> [[1, 2, 37], [35], [9, 18, 33], [8, 2, 10, 3, 4, 17, 19, 32, 34, 38, 39], [6, 7, 5, 16, 31, 40]]
(0, 3) ---> [[1, 3, 27], [25], [9, 23], [6, 8, 10, 2, 3, 4, 5, 22, 24, 28, 29], [5, 7, 4, 6, 21, 15, 30]]
(0, 4) ---> [[1, 4, 11], [9], [7], [2, 3, 6, 5, 8, 12, 13], [4, 5, 14]]
(0, 5) ---> [[], [], [], [], []]
(0, 6) ---> [[], [], [], [], []]
(0, 7) ---> [[], [], [], [], []]
(0, 8) ---> [[], [], [], [], []]
(0, 9) ---> [[], [], [], [], []]
(1, 0) ---> [[1, 3, 17], [15], [13], [2, 3, 4, 5, 11, 12, 14, 18, 19], [4, 6, 7, 10, 11, 20, 19]]
(1, 1) ---> [[14, 1, 3], [12], [10], [8, 9, 11, 15, 16, 2, 3, 4, 5], [7, 8, 9, 17, 4, 6, 18]]
(1, 2) ---> [[14], [11], [9], [6, 8, 10, 15, 16], [6, 5, 7, 17]]
(1, 3) ---> [[], [], [], [], [20]]
(1, 4) ---> [[], [], [], [], []]
(1, 5) ---> [[], [], [], [], []]
(1, 6) ---> [[], [], [], [], []]
(1, 7) ---> [[], [], [], [], []]
(1, 8) ---> [[], [], [], [], []]
(1, 9) ---> [[], [], [], [], []]
(2, 0) ---> [[13], [11], [9], [6, 8, 10, 14, 15], [5, 7, 16]]
(2, 1) ---> [[], [], [], [], [17]]
(2, 2) ---> [[], [], [], [], [18]]
(2, 3) ---> [[], [], [], [], [19]]
(2, 4) ---> [[], [], [], [], []]
(2, 5) ---> [[], [], [], [], []]
(2, 6) ---> [[], [], [], [], []]
(2, 7) ---> [[], [], [], [], []]
(2, 8) ---> [[], [], [], [], []]
(2, 9) ---> [[], [], [], [], []]
(3, 0) ---> [[], [], [], [], []]
(3, 1) ---> [[], [], [], [], []]
(3, 2) ---> [[], [], [], [], []]
(3, 3) ---> [[], [], [], [], []]
(3, 4) ---> [[], [], [], [], []]
(3, 5) ---> [[], [], [], [], []]
(3, 6) ---> [[], [], [], [], []]
(3, 7) ---> [[], [], [], [], []]
(3, 8) ---> [[], [], [], [], []]
(3, 9) ---> [[], [], [], [], []]
(4, 0) ---> [[], [], [], [], []]
(4, 1) ---> [[], [], [], [], []]
(4, 2) ---> [[], [], [], [], []]
(4, 3) ---> [[], [], [], [], []]
(4, 4) ---> [[], [], [], [], []]
(4, 5) ---> [[], [], [], [], []]
(4, 6) ---> [[], [], [], [], []]
(4, 7) ---> [[], [], [], [], []]
(4, 8) ---> [[], [], [], [], []]
(4, 9) ---> [[], [], [], [], []]
(5, 0) ---> [[], [], [], [], []]
(5, 1) ---> [[], [], [], [], []]
(5, 2) ---> [[], [], [], [], []]
(5, 3) ---> [[], [], [], [], []]
(5, 4) ---> [[], [], [], [], []]
(5, 5) ---> [[], [], [], [], []]
(5, 6) ---> [[], [], [], [], []]
(5, 7) ---> [[], [], [], [], []]
(5, 8) ---> [[], [], [], [], []]
(5, 9) ---> [[], [], [], [], []]
(6, 0) ---> [[], [], [], [], []]
(6, 1) ---> [[], [], [], [], []]
(6, 2) ---> [[], [], [], [], []]
(6, 3) ---> [[], [], [], [], []]
(6, 4) ---> [[], [], [], [], []]
(6, 5) ---> [[], [], [], [], []]
(6, 6) ---> [[], [], [], [], []]
(6, 7) ---> [[], [], [], [], []]
(6, 8) ---> [[], [], [], [], []]
(6, 9) ---> [[], [], [], [], []]
(7, 0) ---> [[], [], [], [], []]
(7, 1) ---> [[], [], [], [], []]
(7, 2) ---> [[], [], [], [], []]
(7, 3) ---> [[], [], [], [], []]
(7, 4) ---> [[], [], [], [], []]
(7, 5) ---> [[], [], [], [], []]
(7, 6) ---> [[], [], [], [], []]
(7, 7) ---> [[], [], [], [], []]
(7, 8) ---> [[], [], [], [], []]
(7, 9) ---> [[], [], [], [], []]
(8, 0) ---> [[], [], [], [], []]
(8, 1) ---> [[], [], [], [], []]
(8, 2) ---> [[], [], [], [], []]
(8, 3) ---> [[], [], [], [], []]
(8, 4) ---> [[], [], [], [], []]
(8, 5) ---> [[], [], [], [], []]
(8, 6) ---> [[], [], [], [], []]
(8, 7) ---> [[], [], [], [], []]
(8, 8) ---> [[], [], [], [], []]
(8, 9) ---> [[], [], [], [], []]
(9, 0) ---> [[], [], [], [], []]
(9, 1) ---> [[], [], [], [], []]
(9, 2) ---> [[], [], [], [], []]
(9, 3) ---> [[], [], [], [], []]
(9, 4) ---> [[], [], [], [], []]
(9, 5) ---> [[], [], [], [], []]
(9, 6) ---> [[], [], [], [], []]
(9, 7) ---> [[], [], [], [], []]
(9, 8) ---> [[], [], [], [], []]
(9, 9) ---> [[], [], [], [], []]
Scheduling duration in clocks: 49
CCM Size in bits: 772
CCM Size in bytes: 97
------------------Synthesys of equation 2 has started!---------------
[('1', 'F00*int0'), ('2', 'F01*int0'), ('3', 'F02*int0'), ('4', 'F10*X00'), ('5', 'F11*X01'), ('6', 'F12*X02'), ('7', 'F20*X10'), ('8', 'F21*X11'), ('9', 'F22*X12'), ('10', '1+2'), ('11', '3+4'), ('12', '5+6'), ('13', '7+8'), ('14', '10+11'), ('15', '12+13'), ('16', '14+15'), ('17', '16+9')]
Graph nodes:
Name Value Op_Type Conn
y01 None Write []
1 None * ['10']
2 None * ['10']
3 None * ['11']
4 None * ['11']
5 None * ['12']
6 None * ['12']
7 None * ['13']
8 None * ['13']
9 None * ['17']
10 None + ['14']
11 None + ['14']
12 None + ['15']
13 None + ['15']
14 None + ['16']
15 None + ['16']
16 None + ['17']
17 None + ['y01']
F00 None Read ['1']
int0 None Read ['1', '2', '3']
F01 None Read ['2']
F02 None Read ['3']
F10 None Read ['4']
X00 None Read ['4']
F11 None Read ['5']
X01 None Read ['5']
F12 None Read ['6']
X02 None Read ['6']
F20 None Read ['7']
X10 None Read ['7']
F21 None Read ['8']
X11 None Read ['8']
F22 None Read ['9']
X12 None Read ['9']
Labels for mode ASAP: [7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 5, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Labels for mode ALAP: [7, 2, 2, 2, 2, 2, 2, 2, 2, 5, 3, 3, 3, 3, 4, 4, 5, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4]
1. DUMPED cp: ['1', '10', '14', '16', '17', 'y01']
Inputs & Coords:
1 F00 (0, 0)
1 int0 (0, 0)
10 1 None
10 2 None
14 10 None
14 11 None
16 14 None
16 15 None
17 16 None
17 9 None
y01 17 None
Pre inputs: [(0, 0), (0, 0)]
Inputs [[(0, 0), 2]]
All psbl destinations: [(2, 1)]
Closest pe coord: (2, 1)
All schedules generated: [[6, 7, 8, 9, 10, 11]]
Final closest pe coord and schedule (2, 1) [6, 7, 8, 9, 10, 11]
Searching for other cps with nodes ['2', '9', '11', '15']
2. DUMPED cp: ['5', '12', '15']
Inputs & Coords:
5 F11 (0, 3)
5 X01 (0, 3)
12 5 None
12 6 None
15 12 None
15 13 None
Pre inputs: [(0, 3), (0, 3)]
Inputs [[(0, 3), 2]]
All psbl destinations: [(1, 3)]
Closest pe coord: (1, 3)
All schedules generated: [[2, 3, 4]]
Final closest pe coord and schedule (1, 3) [2, 3, 4]
Searching for other cps with nodes ['2', '6', '9', '11', '13']
3. DUMPED cp: ['3', '11']
Inputs & Coords:
3 F02 (0, 1)
3 int0 (0, 0)
11 3 None
11 4 None
Pre inputs: [(0, 1), (0, 0)]
Inputs [[(0, 1), 1], [(0, 0), 1]]
All psbl destinations: [(2, 2)]
Closest pe coord: (2, 2)
All schedules generated: [[7, 8]]
Final closest pe coord and schedule (2, 2) [7, 8]
Searching for other cps with nodes ['2', '4', '6', '9', '13']
4. DUMPED cp: ['7', '13']
Inputs & Coords:
7 F20 (1, 0)
7 X10 (1, 0)
13 7 None
13 8 None
Pre inputs: [(1, 0), (1, 0)]
Inputs [[(1, 0), 2]]
All psbl destinations: [(3, 0)]
Closest pe coord: (3, 0)
All schedules generated: [[4, 5]]
Final closest pe coord and schedule (3, 0) [4, 5]
Searching for other cps with nodes ['2', '4', '6', '8', '9']
5. DUMPED cp: ['2']
Inputs & Coords:
2 F01 (0, 1)
2 int0 (0, 0)
Pre inputs: [(0, 1), (0, 0)]
Inputs [[(0, 1), 1], [(0, 0), 1]]
All psbl destinations: [(2, 3), (2, 3)]
Closest pe coord: (2, 3)
All schedules generated: [[9], [9]]
Final closest pe coord and schedule (2, 3) [9]
Searching for other cps with nodes ['4', '6', '8', '9']
6. DUMPED cp: ['4']
Inputs & Coords:
4 F10 (0, 2)
4 X00 (0, 2)
Pre inputs: [(0, 2), (0, 2)]
Inputs [[(0, 2), 2]]
All psbl destinations: [(1, 4)]
Closest pe coord: (1, 4)
All schedules generated: [[6]]
Final closest pe coord and schedule (1, 4) [6]
Searching for other cps with nodes ['6', '8', '9']
7. DUMPED cp: ['6']
Inputs & Coords:
6 F12 (0, 4)
6 X02 (0, 4)
Pre inputs: [(0, 4), (0, 4)]
Inputs [[(0, 4), 2]]
All psbl destinations: [(2, 4)]
Closest pe coord: (2, 4)
All schedules generated: [[4]]
Final closest pe coord and schedule (2, 4) [4]
Searching for other cps with nodes ['8', '9']
8. DUMPED cp: ['8']
Inputs & Coords:
8 F21 (1, 1)
8 X11 (1, 1)
Pre inputs: [(1, 1), (1, 1)]
Inputs [[(1, 1), 2]]
All psbl destinations: [(3, 1)]
Closest pe coord: (3, 1)
All schedules generated: [[4]]
Final closest pe coord and schedule (3, 1) [4]
Searching for other cps with nodes ['9']
9. DUMPED cp: ['9']
Inputs & Coords:
9 F22 (1, 2)
9 X12 (1, 2)
Pre inputs: [(1, 2), (1, 2)]
Inputs [[(1, 2), 2]]
All psbl destinations: [(3, 2)]
Closest pe coord: (3, 2)
All schedules generated: [[4]]
Final closest pe coord and schedule (3, 2) [4]
Searching for other cps with nodes []
Input allocation by PEs:
(0, 0) ---> ['F00', 'int0']
(0, 1) ---> ['F01', 'F02']
(0, 2) ---> ['F10', 'X00']
(0, 3) ---> ['F11', 'X01']
(0, 4) ---> ['F12', 'X02']
(1, 0) ---> ['F20', 'X10']
(1, 1) ---> ['F21', 'X11']
(1, 2) ---> ['F22', 'X12']
Final results before rescheduling (node.name, node.sched) by PEs:
(2, 1) ---> [('1', 6), ('10', 7), ('14', 8), ('16', 9), ('17', 10), ('y01', 11)]
(1, 3) ---> [('5', 2), ('12', 3), ('15', 4)]
(2, 2) ---> [('3', 7), ('11', 8)]
(3, 0) ---> [('7', 4), ('13', 5)]
(2, 3) ---> [('2', 9)]
(1, 4) ---> [('4', 6)]
(2, 4) ---> [('6', 4)]
(3, 1) ---> [('8', 4)]
(3, 2) ---> [('9', 4)]
RESCHEDULING
###### 8
Pred 1 entered: F21
Check for pred "F21" =====> in (1, 1) ['F22', 'X11', '4', 'F21', 'X11']
Walked coords [(1, 1), (2, 1), (3, 1)]
1.0 Inputs are send from pred at step 13
1.3 Putting inputs to DPR-X directly at node at step 17
Pred 2 entered: X11
Check for pred "X11" =====> in (1, 1) ['F22', 'X11', '4', 'F21', 'X11']
Walked coords [(1, 1), (2, 1), (3, 1)]
1.0 Inputs are send from pred at step 18
1.3 Putting inputs to DPR-X directly at node at step 22
3.0 Arithmetic op is done at step 23
4.2 Saving results to own MCLM at step 26
(3, 1) ---> [[], [25], [23], [17, 22, 24], [16, 21]]
###### 7
Pred 1 entered: F20
Check for pred "F20" =====> in (1, 0) ['F21', 'X10', '2', 'F20', 'X10']
Walked coords [(1, 0), (2, 0), (3, 0)]
1.0 Inputs are send from pred at step 7
1.3 Putting inputs to DPR-X directly at node at step 11
Pred 2 entered: X10
Check for pred "X10" =====> in (1, 0) ['F21', 'X10', '2', 'F20', 'X10']
Walked coords [(1, 0), (2, 0), (3, 0)]
1.0 Inputs are send from pred at step 16
1.3 Putting inputs to DPR-X directly at node at step 20
3.0 Arithmetic op is done at step 21
4.0 ---Notification is changed for 13 1
4.0 Saving results to DPR2 directly at step 22
(3, 0) ---> [[], [], [21], [11, 20, 22], [10, 19]]
###### 6
Pred 1 entered: F12
Check for pred "F12" =====> in (0, 4) ['X01', 'F20', '6', 'F12', 'X02']
Walked coords [(0, 4), (1, 4), (2, 4)]
1.0 Inputs are send from pred at step 10
1.3 Putting inputs to DPR-X directly at node at step 14
Pred 2 entered: X02
Check for pred "X02" =====> in (0, 4) ['X01', 'F20', '6', 'F12', 'X02']
Walked coords [(0, 4), (1, 4), (2, 4)]
1.0 Inputs are send from pred at step 15
1.3 Putting inputs to DPR-X directly at node at step 19
3.0 Arithmetic op is done at step 20
4.2 Saving results to own MCLM at step 23
(2, 4) ---> [[], [22], [20], [14, 19, 21], [13, 18]]
###### 5
Pred 1 entered: F11
Check for pred "F11" =====> in (0, 3) ['X00', 'F12', '13', 'F11', 'X01']
Walked coords [(0, 3), (1, 3)]
1.0 Inputs are send from pred at step 12
1.3 Putting inputs to DPR-X directly at node at step 15
Pred 2 entered: X01
Check for pred "X01" =====> in (0, 3) ['X00', 'F12', '13', 'F11', 'X01']
Walked coords [(0, 3), (1, 3)]
1.0 Inputs are send from pred at step 15
1.3 Putting inputs to DPR-X directly at node at step 18
3.0 Arithmetic op is done at step 19
4.0 ---Notification is changed for 12 1
4.0 Saving results to DPR2 directly at step 20
(1, 3) ---> [[], [], [19], [15, 18, 20], [20, 14, 17]]
###### 4
Pred 1 entered: F10
Check for pred "F10" =====> in (0, 2) ['F10', 'F11', '15', 'F10', 'X00']
Walked coords [(0, 2), (1, 2), (1, 3), (1, 4)]
1.0 Inputs are send from pred at step 7
1.3 Putting inputs to DPR-X directly at node at step 12
Pred 2 entered: X00
Check for pred "X00" =====> in (0, 2) ['F10', 'F11', '15', 'F10', 'X00']
Walked coords [(0, 2), (1, 2), (1, 3), (1, 4)]
1.0 Inputs are send from pred at step 12
1.3 Putting inputs to DPR-X directly at node at step 17
3.0 Arithmetic op is done at step 18
4.2 Saving results to own MCLM at step 21
(1, 4) ---> [[], [20], [18], [12, 17, 19], [12, 17, 11, 16]]
###### 3
Pred 1 entered: F02
Check for pred "F02" =====> in (0, 1) ['F01', 'F02', '11', 'F01', 'F02']
Walked coords [(0, 1), (1, 1), (2, 1), (2, 2)]
1.0 Inputs are send from pred at step 9
1.3 Putting inputs to DPR-X directly at node at step 14
Pred 2 entered: int0
Check for pred "int0" =====> in (0, 0) ['F00', 'int0', '17', 'F00', 'int0']
Walked coords [(0, 0), (1, 0), (2, 0), (2, 1), (2, 2)]
1.0 Inputs are send from pred at step 26
1.3 Putting inputs to DPR-X directly at node at step 32
3.0 Arithmetic op is done at step 33
4.0 ---Notification is changed for 11 1
4.0 Saving results to DPR2 directly at step 34
(2, 2) ---> [[], [], [33], [14, 32, 34], [18, 13, 31]]
###### 2
Pred 1 entered: F01
Check for pred "F01" =====> in (0, 1) ['F01', 'F02', '11', 'F01', 'F02']
Walked coords [(0, 1), (1, 1), (2, 1), (2, 2), (2, 3)]
1.0 Inputs are send from pred at step 18
1.3 Putting inputs to DPR-X directly at node at step 24
Pred 2 entered: int0
Check for pred "int0" =====> in (0, 0) ['F00', 'int0', '17', 'F00', 'int0']
Walked coords [(0, 0), (1, 0), (2, 0), (2, 1), (2, 2), (2, 3)]
1.0 Inputs are send from pred at step 28
1.3 Putting inputs to DPR-X directly at node at step 35
3.0 Arithmetic op is done at step 36
4.2 Saving results to own MCLM at step 39
(2, 3) ---> [[], [38], [36], [24, 35, 37], [19, 23, 34]]
###### 1
Pred 1 entered: F00
Check for pred "F00" =====> in (0, 0) ['F00', 'int0', '17', 'F00', 'int0']
Walked coords [(0, 0), (1, 0), (2, 0), (2, 1)]
1.0 Inputs are send from pred at step 33
1.3 Putting inputs to DPR-X directly at node at step 38
Pred 2 entered: int0
Check for pred "int0" =====> in (0, 0) ['F00', 'int0', '17', 'F00', 'int0']
Walked coords [(0, 0), (1, 0), (2, 0), (2, 1)]
1.0 Inputs are send from pred at step 35
1.3 Putting inputs to DPR-X directly at node at step 40
3.0 Arithmetic op is done at step 41
4.0 ---Notification is changed for 10 1
4.0 Saving results to DPR2 directly at step 42
(2, 1) ---> [[], [], [41], [38, 40, 42], [17, 15, 20, 12, 30, 21, 32, 37, 39]]
###### 13
Pred 1 entered: 7
Pred 2 entered: 8
Check for pred "8" =====> in (3, 1) ['8']
Walked coords [(3, 1), (3, 0)]
1.0 Inputs are send from pred at step 29
1.2 Putting inputs to DPR1 directly at node at step 32
3.0 Arithmetic op is done at step 33
4.2 Saving results to own MCLM at step 36
(3, 0) ---> [[], [35], [21, 33], [11, 20, 22, 32, 34], [10, 19, 31]]
###### 12
Pred 1 entered: 5
Pred 2 entered: 6
Check for pred "6" =====> in (2, 4) ['6']
Walked coords [(2, 4), (2, 3), (1, 3)]
1.0 Inputs are send from pred at step 26
1.2 Putting inputs to DPR1 directly at node at step 30
3.0 Arithmetic op is done at step 31
4.0 ---Notification is changed for 15 1
4.0 Saving results to DPR2 directly at step 32
(1, 3) ---> [[], [], [19, 31], [15, 18, 20, 30, 32], [20, 14, 17, 10, 15, 29]]
###### 11
Pred 1 entered: 3
Pred 2 entered: 4
Check for pred "4" =====> in (1, 4) ['4']
Walked coords [(1, 4), (2, 4), (2, 3), (2, 2)]
1.0 Inputs are send from pred at step 24
1.2 Putting inputs to DPR1 directly at node at step 29
3.0 Arithmetic op is done at step 35
4.2 Saving results to own MCLM at step 38
(2, 2) ---> [[], [37], [33, 35], [14, 32, 34, 29, 36], [18, 13, 31, 22, 33, 28]]
###### 10
Pred 1 entered: 1
Pred 2 entered: 2
Check for pred "2" =====> in (2, 3) ['2']
Walked coords [(2, 3), (2, 2), (2, 1)]
1.0 Inputs are send from pred at step 42
1.2 Putting inputs to DPR1 directly at node at step 46
3.0 Arithmetic op is done at step 47
4.0 ---Notification is changed for 14 1
4.0 Saving results to DPR2 directly at step 48
(2, 1) ---> [[], [], [41, 47], [38, 40, 42, 46, 48], [17, 15, 20, 12, 30, 21, 32, 37, 39, 45]]
###### 15
Pred 1 entered: 12
Pred 2 entered: 13
Check for pred "13" =====> in (3, 0) ['13']
Walked coords [(3, 0), (3, 1), (3, 2), (3, 3), (2, 3), (1, 3)]
1.0 Inputs are send from pred at step 39
1.2 Putting inputs to DPR1 directly at node at step 46
3.0 Arithmetic op is done at step 47
4.2 Saving results to own MCLM at step 50
(1, 3) ---> [[], [49], [19, 31, 47], [15, 18, 20, 30, 32, 46, 48], [20, 14, 17, 10, 15, 29, 45]]
###### 14
Pred 1 entered: 10
Pred 2 entered: 11
Check for pred "11" =====> in (2, 2) ['11']
Walked coords [(2, 2), (2, 1)]
1.0 Inputs are send from pred at step 41
1.2 Putting inputs to DPR1 directly at node at step 44
3.0 Arithmetic op is done at step 49
4.0 ---Notification is changed for 16 1
4.0 Saving results to DPR2 directly at step 50
(2, 1) ---> [[], [], [41, 47, 49], [38, 40, 42, 46, 48, 44, 50], [17, 15, 20, 12, 30, 21, 32, 37, 39, 45, 43]]
###### 9
Pred 1 entered: F22
Check for pred "F22" =====> in (1, 2) ['9', 'F22', 'X12']
Walked coords [(1, 2), (2, 2), (3, 2)]
1.0 Inputs are send from pred at step 3
1.3 Putting inputs to DPR-X directly at node at step 7
Pred 2 entered: X12
Check for pred "X12" =====> in (1, 2) ['9', 'F22', 'X12']
Walked coords [(1, 2), (2, 2), (3, 2)]
1.0 Inputs are send from pred at step 12
1.3 Putting inputs to DPR-X directly at node at step 16
3.0 Arithmetic op is done at step 17
4.2 Saving results to own MCLM at step 20
(3, 2) ---> [[], [19], [17], [7, 16, 18], [42, 6, 15]]
###### 16
Pred 1 entered: 14
Pred 2 entered: 15
Check for pred "15" =====> in (1, 3) ['15']
Walked coords [(1, 3), (2, 3), (2, 2), (2, 1)]
1.0 Inputs are send from pred at step 53
1.2 Putting inputs to DPR1 directly at node at step 58
3.0 Arithmetic op is done at step 59
4.0 ---Notification is changed for 17 1
4.0 Saving results to DPR2 directly at step 60
(2, 1) ---> [[], [], [41, 47, 49, 59], [38, 40, 42, 46, 48, 44, 50, 58, 60], [17, 15, 20, 12, 30, 21, 32, 37, 39, 45, 43, 57]]
###### 17
Pred 1 entered: 16
Pred 2 entered: 9
Check for pred "9" =====> in (3, 2) ['9']
Walked coords [(3, 2), (3, 1), (2, 1)]
1.0 Inputs are send from pred at step 23