-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-e0740fe5a6.log
1769 lines (1768 loc) · 129 KB
/
1.5.0-DEV-e0740fe5a6.log
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
Julia Version 1.5.0-DEV.147
Commit e0740fe5a6 (2020-01-24 14:13 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-8.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed Compat ───────────── v2.2.0
Installed SimpleTraits ─────── v0.9.1
Installed OrderedCollections ─ v1.1.0
Installed ArnoldiMethod ────── v0.0.4
Installed IterTools ────────── v1.3.0
Installed Dispatcher ───────── v0.5.0
Installed Memento ──────────── v0.12.1
Installed TimeZones ────────── v0.11.0
Installed Libiconv_jll ─────── v1.16.0+0
Installed Inflate ──────────── v0.1.1
Installed Zlib_jll ─────────── v1.2.11+7
Installed MacroTools ───────── v0.5.3
Installed JSON ─────────────── v0.21.0
Installed DataStructures ───── v0.17.9
Installed StaticArrays ─────── v0.12.1
Installed AutoHashEquals ───── v0.2.0
Installed Parsers ──────────── v0.3.10
Installed Syslogs ──────────── v0.3.0
Installed LightGraphs ──────── v1.3.0
Installed EzXML ────────────── v1.1.0
Installed XML2_jll ─────────── v2.9.9+1
Installed DeferredFutures ──── v0.6.0
Installed Mocking ──────────── v0.7.0
Installed ResultTypes ──────── v3.0.0
Updating `~/.julia/environments/v1.5/Project.toml`
[a48d5fe2] + Dispatcher v0.5.0
Updating `~/.julia/environments/v1.5/Manifest.toml`
[ec485272] + ArnoldiMethod v0.0.4
[15f4f7f2] + AutoHashEquals v0.2.0
[34da2185] + Compat v2.2.0
[864edb3b] + DataStructures v0.17.9
[d2772ebe] + DeferredFutures v0.6.0
[a48d5fe2] + Dispatcher v0.5.0
[8f5d6c58] + EzXML v1.1.0
[d25df0c9] + Inflate v0.1.1
[c8e1da08] + IterTools v1.3.0
[682c06a0] + JSON v0.21.0
[94ce4f54] + Libiconv_jll v1.16.0+0
[093fc24a] + LightGraphs v1.3.0
[1914dd2f] + MacroTools v0.5.3
[f28f55f0] + Memento v0.12.1
[78c3b35d] + Mocking v0.7.0
[bac558e1] + OrderedCollections v1.1.0
[69de0a69] + Parsers v0.3.10
[08a2b407] + ResultTypes v3.0.0
[699a6c99] + SimpleTraits v0.9.1
[90137ffa] + StaticArrays v0.12.1
[cea106d9] + Syslogs v0.3.0
[f269a46b] + TimeZones v0.11.0
[02c8fc9c] + XML2_jll v2.9.9+1
[83775a58] + Zlib_jll v1.2.11+7
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8bb1440f] + DelimitedFiles
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[1a1011a3] + SharedArrays
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building TimeZones → `~/.julia/packages/TimeZones/HAL5Z/deps/build.log`
Updating `/tmp/jl_3eaKhM/Project.toml`
[no changes]
Updating `/tmp/jl_3eaKhM/Manifest.toml`
[no changes]
Testing Dispatcher
Updating `/tmp/jl_cTCNGP/Project.toml`
[no changes]
Updating `/tmp/jl_cTCNGP/Manifest.toml`
[no changes]
Running sandbox
Status `/tmp/jl_cTCNGP/Project.toml`
[15f4f7f2] AutoHashEquals v0.2.0
[34da2185] Compat v2.2.0
[864edb3b] DataStructures v0.17.9
[d2772ebe] DeferredFutures v0.6.0
[a48d5fe2] Dispatcher v0.5.0
[c8e1da08] IterTools v1.3.0
[093fc24a] LightGraphs v1.3.0
[f28f55f0] Memento v0.12.1
[08a2b407] ResultTypes v3.0.0
Test Summary: | Pass Total
Graph | 34 34
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<four>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<four, Int64>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<four, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<four>>): complete.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 2 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!(x + 1), Op<put!(4)>>): running.
[info | Dispatcher]: Node 2 (Op<put!(4)>): running.
[info | Dispatcher]: Node 2 (Op<put!(4)>): complete.
[info | Dispatcher]: Node 1 (Op<put!(x + 1), Op<put!(4)>>): complete.
[info | Dispatcher]: All 2 nodes executed.
[info | Dispatcher]: Executing 2 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!(x + 2), Op<put!(4)>>): running.
[info | Dispatcher]: Node 2 (DataNode{Channel{Float64}}): running.
[info | Dispatcher]: Node 2 (DataNode{Channel{Float64}}): complete.
[info | Dispatcher]: Node 1 (Op<put!(x + 2), Op<put!(4)>>): complete.
[info | Dispatcher]: All 2 nodes executed.
[info | Main]: Partial array
[info | Dispatcher]: Executing 2 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!(x + 1), Op<put!(4)>>): running.
[info | Dispatcher]: Node 2 (Op<put!(4)>): running.
[info | Dispatcher]: Node 2 (Op<put!(4)>): complete.
[info | Dispatcher]: Node 1 (Op<put!(x + 1), Op<put!(4)>>): complete.
[info | Dispatcher]: All 2 nodes executed.
[info | Dispatcher]: Executing 2 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!(x + 2), Op<put!(4)>>): running.
[info | Dispatcher]: Node 2 (DataNode{Channel{Float64}}): running.
[info | Dispatcher]: Node 2 (DataNode{Channel{Float64}}): complete.
[info | Dispatcher]: Node 1 (Op<put!(x + 2), Op<put!(4)>>): complete.
[info | Dispatcher]: All 2 nodes executed.
[info | Dispatcher]: Executing 4 graph nodes.
[info | Dispatcher]: Node 1 (Op<*, Op<+>, Op<+>>): running.
[info | Dispatcher]: Node 2 (Op<+, Op<+>, Int64>): running.
[info | Dispatcher]: Node 3 (Op<+, Op<+>, Int64>): running.
[info | Dispatcher]: Node 4 (Op<+, Int64, Int64>): running.
[info | Dispatcher]: Node 4 (Op<+, Int64, Int64>): complete.
[info | Dispatcher]: Node 2 (Op<+, Op<+>, Int64>): complete.
[info | Dispatcher]: Node 3 (Op<+, Op<+>, Int64>): complete.
[info | Dispatcher]: Node 1 (Op<*, Op<+>, Op<+>>): complete.
[info | Dispatcher]: All 4 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<ApplicationError>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<ApplicationError>, 2>): running.
[info | Dispatcher]: Node 3 (Op<ApplicationError, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[notice | Dispatcher]: Handling Error: DependencyError<TaskFailedException, 3>
[notice | Dispatcher]: Handling Error: DependencyError<TaskFailedException, 2>
[notice | Dispatcher]: Handling Error: DependencyError<TaskFailedException, 1>
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<ApplicationError>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<ApplicationError>, 2>): running.
[info | Dispatcher]: Node 3 (Op<ApplicationError, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[notice | Dispatcher]: Handling Error: DependencyError<TaskFailedException, 3>
[notice | Dispatcher]: Handling Error: DependencyError<TaskFailedException, 2>
[notice | Dispatcher]: Handling Error: DependencyError<TaskFailedException, 1>
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<ApplicationError>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<ApplicationError>, 2>): running.
[info | Dispatcher]: Node 3 (Op<ApplicationError, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[notice | Dispatcher]: Handling Error: DependencyError<ErrorException, 3>
[notice | Dispatcher]: Handling Error: DependencyError<RemoteException, 2>
[notice | Dispatcher]: Handling Error: DependencyError<MethodError, 1>
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<ApplicationError>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<ApplicationError>, 2>): running.
[info | Dispatcher]: Node 3 (Op<ApplicationError, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[notice | Dispatcher]: Handling Error: DependencyError<ErrorException, 3>
[notice | Dispatcher]: Handling Error: DependencyError<RemoteException, 2>
[notice | Dispatcher]: Handling Error: DependencyError<MethodError, 1>
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 6 graph nodes.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): running.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): running.
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): running.
[info | Dispatcher]: Node 6 (Op<4, Int64>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): running.
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): running.
[info | Dispatcher]: Node 5 (Op<3>): running.
[info | Dispatcher]: Node 5 (Op<3>): complete.
[info | Dispatcher]: Node 4 (Op<max, Op<3>, Op<4>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 3 (Op<factorials, Op<max>>): complete.
┌ Error: Fatal error on process 1
│ exception =
│ attempt to send to unknown socket
│ Stacktrace:
│ [1] error(::String) at ./error.jl:33
│ [2] send_msg_unknown(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:111
│ [3] send_msg_now(::Sockets.TCPSocket, ::Distributed.MsgHeader, ::Distributed.ResultMsg) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/messages.jl:127
│ [4] deliver_result(::Sockets.TCPSocket, ::Symbol, ::Distributed.RRID, ::RemoteChannel{Channel{Any}}) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:111
│ [5] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:302 [inlined]
│ [6] (::Distributed.var"#103#105"{Distributed.CallMsg{:call_fetch},Distributed.MsgHeader,Sockets.TCPSocket})() at ./task.jl:358
└ @ Distributed /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Distributed/src/process_messages.jl:115
[info | Dispatcher]: Node 2 (IndexNode<Op<factorials>, 2>): complete.
[info | Dispatcher]: Node 1 (Op<put!, IndexNode<Op<factorials>, 2>>): complete.
[info | Dispatcher]: All 6 nodes executed.
[info | Dispatcher]: Executing 3 graph nodes.
[info | Dispatcher]: Node 1 (Op<nth, Op<distinct>, Int64>): running.
[info | Dispatcher]: Node 2 (Op<distinct, Op<imap>>): running.
[info | Dispatcher]: Node 3 (Op<imap, typeof(+), 3-element Array{Int64,1}, 3-element Array{Int64,1}>): running.
[info | Dispatcher]: Node 3 (Op<imap, typeof(+), 3-element Array{Int64,1}, 3-element Array{Int64,1}>): complete.
[info | Dispatcher]: Node 2 (Op<distinct, Op<imap>>): complete.
[info | Dispatcher]: Node 1 (Op<nth, Op<distinct>, Int64>): complete.
[info | Dispatcher]: All 3 nodes executed.
[info | Dispatcher]: Executing 3 graph nodes.
[info | Dispatcher]: Node 1 (Op<nth, Op<distinct>, Int64>): running.
[info | Dispatcher]: Node 2 (Op<distinct, Op<imap>>): running.
[info | Dispatcher]: Node 3 (Op<imap, typeof(+), 3-element Array{Int64,1}, 3-element Array{Int64,1}>): running.
[info | Dispatcher]: Node 3 (Op<imap, typeof(+), 3-element Array{Int64,1}, 3-element Array{Int64,1}>): complete.
[info | Dispatcher]: Node 2 (Op<distinct, Op<imap>>): complete.
[info | Dispatcher]: Node 1 (Op<nth, Op<distinct>, Int64>): complete.
[info | Dispatcher]: All 3 nodes executed.
[info | Dispatcher]: Executing 13 graph nodes.
[info | Dispatcher]: Node 1 (Op<+, Op<slowsum>, Op<slowsum>, Op<slowsum>>): running.
[info | Dispatcher]: Node 2 (Op<slowsum, Op<slowinc>, Op<slowinc>, Op<slowinc>>): running.
[info | Dispatcher]: Node 3 (Op<slowsum, Op<slowadd>, Op<slowadd>, Op<slowadd>>): running.
[info | Dispatcher]: Node 4 (Op<slowsum, Op<slowadd>, Op<slowadd>, Op<slowadd>>): running.
[info | Dispatcher]: Node 5 (Op<slowadd, Op<slowinc>, Int64>): running.
[info | Dispatcher]: Node 6 (Op<slowadd, Op<slowinc>, Int64>): running.
[info | Dispatcher]: Node 7 (Op<slowadd, Op<slowinc>, Int64>): running.
[info | Dispatcher]: Node 8 (Op<slowinc, Int64>): running.
[info | Dispatcher]: Node 9 (Op<slowinc, Int64>): running.
[info | Dispatcher]: Node 10 (Op<slowinc, Int64>): running.
[info | Dispatcher]: Node 11 (Op<slowadd, Op<slowinc>, Int64>): running.
[info | Dispatcher]: Node 12 (Op<slowadd, Op<slowinc>, Int64>): running.
[info | Dispatcher]: Node 13 (Op<slowadd, Op<slowinc>, Int64>): running.
[info | Dispatcher]: Node 8 (Op<slowinc, Int64>): complete.
[info | Dispatcher]: Node 9 (Op<slowinc, Int64>): complete.
[info | Dispatcher]: Node 7 (Op<slowadd, Op<slowinc>, Int64>): complete.
[info | Dispatcher]: Node 10 (Op<slowinc, Int64>): complete.
[info | Dispatcher]: Node 6 (Op<slowadd, Op<slowinc>, Int64>): complete.
[info | Dispatcher]: Node 2 (Op<slowsum, Op<slowinc>, Op<slowinc>, Op<slowinc>>): complete.
[info | Dispatcher]: Node 5 (Op<slowadd, Op<slowinc>, Int64>): complete.
[info | Dispatcher]: Node 11 (Op<slowadd, Op<slowinc>, Int64>): complete.
[info | Dispatcher]: Node 12 (Op<slowadd, Op<slowinc>, Int64>): complete.
[info | Dispatcher]: Node 4 (Op<slowsum, Op<slowadd>, Op<slowadd>, Op<slowadd>>): complete.
[info | Dispatcher]: Node 13 (Op<slowadd, Op<slowinc>, Int64>): complete.
[info | Dispatcher]: Node 3 (Op<slowsum, Op<slowadd>, Op<slowadd>, Op<slowadd>>): complete.
[info | Dispatcher]: Node 1 (Op<+, Op<slowsum>, Op<slowsum>, Op<slowsum>>): complete.
[info | Dispatcher]: All 13 nodes executed.
[info | Dispatcher]: Executing 500 graph nodes.
[info | Dispatcher]: Node 1 (Op<reduction, CollectNode<200 Ops>>): running.
[info | Dispatcher]: Node 2 (CollectNode<200 Ops>): running.
[info | Dispatcher]: Node 3 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 4 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 5 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 6 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 7 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 8 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 9 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 10 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 11 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 12 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 13 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 14 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 15 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 16 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 17 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 18 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 19 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 20 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 21 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 22 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 23 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 24 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 25 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 26 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 27 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 28 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 29 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 30 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 31 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 32 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 33 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 34 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 35 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 36 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 37 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 38 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 39 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 40 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 41 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 42 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 43 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 44 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 45 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 46 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 47 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 48 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 49 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 50 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 51 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 52 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 53 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 54 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 55 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 56 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 57 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 58 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 59 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 60 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 61 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 62 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 63 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 64 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 65 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 66 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 67 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 68 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 69 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 70 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 71 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 72 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 73 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 74 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 75 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 76 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 77 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 78 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 79 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 80 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 81 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 82 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 83 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 84 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 85 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 86 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 87 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 88 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 89 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 90 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 91 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 92 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 93 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 94 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 95 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 96 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 97 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 98 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 99 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 100 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 101 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 102 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 103 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 104 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 105 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 106 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 107 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 108 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 109 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 110 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 111 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 112 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 113 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 114 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 115 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 116 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 117 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 118 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 119 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 120 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 121 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 122 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 123 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 124 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 125 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 126 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 127 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 128 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 129 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 130 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 131 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 132 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 133 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 134 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 135 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 136 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 137 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 138 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 139 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 140 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 141 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 142 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 143 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 144 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 145 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 146 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 147 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 148 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 149 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 150 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 151 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 152 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 153 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 154 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 155 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 156 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 157 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 158 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 159 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 160 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 161 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 162 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 163 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 164 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 165 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 166 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 167 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 168 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 169 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 170 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 171 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 172 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 173 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 174 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 175 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 176 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 177 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 178 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 179 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 180 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 181 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 182 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 183 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 184 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 185 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 186 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 187 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 188 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 189 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 190 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 191 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 192 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 193 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 194 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 195 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 196 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 197 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 198 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 199 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 200 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 201 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 202 (Op<compare, Op<roll>, Op<roll>>): running.
[info | Dispatcher]: Node 203 (Op<roll, Op<process>, Op<process>, Op<process>>): running.
[info | Dispatcher]: Node 204 (Op<roll, Op<process>, Op<process>, Op<process>>): running.
[info | Dispatcher]: Node 205 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 206 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 207 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 208 (Op<load, String>): running.
[info | Dispatcher]: Node 209 (Op<load_from_sql, String>): running.
[info | Dispatcher]: Node 210 (Op<load, String>): running.
[info | Dispatcher]: Node 211 (Op<load, String>): running.
[info | Dispatcher]: Node 212 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 213 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 214 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 215 (Op<load, String>): running.
[info | Dispatcher]: Node 216 (Op<load, String>): running.
[info | Dispatcher]: Node 217 (Op<load, String>): running.
[info | Dispatcher]: Node 218 (Op<roll, Op<process>, Op<process>, Op<process>>): running.
[info | Dispatcher]: Node 219 (Op<roll, Op<process>, Op<process>, Op<process>>): running.
[info | Dispatcher]: Node 220 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 221 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 222 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 223 (Op<load, String>): running.
[info | Dispatcher]: Node 224 (Op<load, String>): running.
[info | Dispatcher]: Node 225 (Op<load, String>): running.
[info | Dispatcher]: Node 226 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 227 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 228 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 229 (Op<load, String>): running.
[info | Dispatcher]: Node 230 (Op<load, String>): running.
[info | Dispatcher]: Node 231 (Op<load, String>): running.
[info | Dispatcher]: Node 232 (Op<roll, Op<process>, Op<process>, Op<process>>): running.
[info | Dispatcher]: Node 233 (Op<roll, Op<process>, Op<process>, Op<process>>): running.
[info | Dispatcher]: Node 234 (Op<process, Op<load>, Op<load_from_sql>>): running.
[info | Dispatcher]: Node 235 (Op<process, Op<load>, Op<load_from_sql>>): running.