-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain-route-transition-scrub-diagnostics.json
More file actions
7610 lines (7610 loc) · 390 KB
/
Copy pathmain-route-transition-scrub-diagnostics.json
File metadata and controls
7610 lines (7610 loc) · 390 KB
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
{
"collectedOn": "2026-05-31",
"sourceRoute": "/",
"artifact": "main-route-transition-scrub-diagnostics.json",
"collectionMethod": "Main route only: compares direct Ness Tziona 0.5m loads with Ben-Gurion-to-Ness-Tziona project-selector transitions, then records repeated app-visible hour and month publications. Chunked mode is supplied only through utciExposureSchedule=chunked&utciExposureMaxWorkgroupsPerSlice=2048 query params.",
"cases": [
{
"caseId": "direct-nz-0_5m-single-submit",
"entry": "direct-nz",
"analysisId": "Ness-Tziona/exploded/nes_tziona_unblock_2",
"gridResolutionMeters": 0.5,
"queryParams": null,
"entryUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"targetUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"proofRouteUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"samples": [
{
"caseId": "direct-nz-0_5m-single-submit",
"actionKind": "initial-visible",
"actionLabel": "direct-nz",
"colorMode": "normalized",
"selectedMonthIndex": 7,
"selectedHourIndex": 0,
"selectedTimeIndex": 168,
"selectionKey": "Ness-Tziona/exploded/nes_tziona_unblock_2|7|0",
"surfaceRequestId": 1,
"entryUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"targetUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"wallVisibleMs": 25998.2526,
"timings": {
"firstSelectedHourVisibleMs": 20123.099999964237,
"oneHourDispatchMs": 16,
"renderUpdateMs": 2433.300000011921,
"renderSceneSyncStartDelayMs": 379.10000002384186,
"renderSceneSyncTotalMs": 2053,
"exposurePrecomputeMs": 16312.100000023842,
"exposureQueueWaitMs": 16310.699999988079,
"exposurePointChunks": 2,
"exposureSchedulerMode": "single-submit",
"exposureSchedulerSliceCount": 1,
"exposureSchedulerMaxWorkgroupsPerSlice": 8192,
"exposureSchedulerQueueWaitTotalMs": 16310.699999988079,
"exposureSchedulerQueueWaitMaxMs": 16310.699999988079,
"exposureSchedulerQueueWaitMinMs": 16310.699999988079,
"exposureSchedulerYieldCount": 0,
"exposureSchedulerSubmitCount": 1
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "initial",
"renderPublicationMeshAction": "created",
"renderPublicationPointCount": 8171761,
"renderPublicationVertexCount": 8177652,
"timeline": {
"controllerSessionRunStartedAtMs": 5801.5,
"controllerSessionRunCompletedAtMs": 23867.900000035763,
"controllerAcceptStartedAtMs": 23867.900000035763,
"controllerAcceptedAtMs": 23867.900000035763,
"controllerStatePublishedAtMs": 23868.200000047684,
"sessionComputeOutputReturnedAtMs": 23491.30000001192,
"sessionGpuOutputHandleReadyAtMs": 23491.400000035763,
"sessionRangeResolveStartedAtMs": 23536.900000035763,
"sessionRangeResolveCompletedAtMs": 23867,
"sessionSelectedDayRangeCacheKey": "7:24",
"sessionSelectedDayRangeCacheHit": false,
"sessionSelectedDayRangeCacheSizeBefore": 0,
"sessionSelectedDayRangeCacheSizeAfter": 1,
"sessionSelectedDayRangeReadbackCount": 0,
"sessionSelectedDayRangeComputedHourCount": 23,
"sessionSelectedDayRangeResolutionPath": "compact-gpu-summary",
"sessionSelectedDayRangeSummaryReadbackCount": 23,
"sessionSelectedDayRangeSummaryReadbackBytes": 368,
"sessionSelectedDayRangeFullReadbackAvoidedCount": 23,
"sessionSelectedHourRangeResolutionPath": "not-needed",
"sessionSelectedHourRangeReadbackCount": 0,
"sessionSelectedHourRangeCpuScanCount": 0,
"sessionSelectedHourRangeSummaryReadbackCount": 0,
"sessionSelectedHourRangeSummaryReadbackBytes": 0,
"sessionSelectedHourRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeSummaryReductionPassCount": 0,
"sessionResultReadyAtMs": 23867.80000001192,
"sessionResultReturnedAtMs": 23867.80000001192,
"routePendingSurfaceExposedAtMs": 23868.900000035763,
"routePublishedAtMs": 25925.400000035763,
"routeProjectedAtMs": 25926.30000001192,
"scenePendingSurfaceObservedAtMs": 23869.600000023842,
"sceneReactiveBlockEnteredAtMs": 23869.5,
"sceneSyncInvocationQueuedAtMs": 23869.600000023842,
"sceneReactiveToSyncQueuedMs": 0.10000002384185791,
"sceneSyncQueuedToStartMs": 1,
"sceneSyncAttemptStartedAtMs": 23870.600000023842,
"sceneLayoutKeyStartedAtMs": 23870.600000023842,
"sceneLayoutKeyCompletedAtMs": 24143.900000035763,
"scenePublicationPlanReadyAtMs": 24648,
"sceneSurfacePendingStorageInitAtMs": 25268.30000001192,
"renderStorageReadyAtMs": 25619.700000047684,
"sceneSyncCompletedAtMs": 25923.600000023842,
"controllerVisibleAcknowledgedAtMs": 25924.80000001192,
"renderLayoutReuseAction": "build-required",
"renderLayoutReuseReason": "initial-publication",
"renderLayoutReuseProofSource": "fresh-build-proof",
"renderLayoutBuildTrace": {
"totalMs": 497.30000001192093,
"arrayAllocationMs": 1.300000011920929,
"transformBoundsPassMs": 194,
"coordinateAssignmentMs": 100.39999997615814,
"indexToTexelFillMs": 35.30000001192093,
"cellToPointIndexBuildMs": 154.69999998807907,
"colorBufferAllocationMs": 0.10000002384185791
},
"renderLayoutReuseFrameCacheKind": "miss",
"renderLayoutReuseFrameCacheHit": false,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "created",
"totalMs": 620.3000000119209,
"recreateDecision": {
"missingSurface": true,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": false
},
"disposeResetMeshRemovalMs": 0.09999996423721313,
"createComputeBufferSurfacePositionArrayAllocMs": 0.30000001192092896,
"createComputeBufferSurfaceIndexArrayAllocMs": 0.6000000238418579,
"createComputeBufferSurfacePositionArrayFillMs": 75.39999997615814,
"createComputeBufferSurfaceIndexArrayFillMs": 132.9000000357628,
"createComputeBufferSurfaceGeometryAttributeAttachMs": 0,
"createComputeBufferSurfaceBoundsMs": 352.69999998807907,
"createComputeBufferSurfaceUtciStorageAllocMs": 0,
"createComputeBufferSurfaceCellToPointAllocFillMs": 54.39999997615814,
"createComputeBufferSurfaceColorLutSetupMs": 1.2999999523162842,
"createComputeBufferSurfaceMaterialSetupMs": 1.100000023841858,
"createComputeBufferSurfaceMeshConstructMs": 0.19999998807907104,
"createComputeBufferSurfaceByteAccountingMs": 0,
"createComputeBufferSurfaceGeometryBytes": 294254088,
"createComputeBufferSurfaceUtciStorageBytes": 32687044,
"createComputeBufferSurfaceCellToPointBytes": 32687044,
"createComputeBufferSurfaceColorLutBytes": 1024,
"createComputeBufferSurfaceMeshMs": 619.6999999880791,
"applySurfaceMeshStateMs": 0.10000002384185791,
"setCreatedSurfacePendingStorageInitMs": 0,
"sceneAddMs": 0,
"publishUtciSurfaceDiagnosticsMs": 0,
"setPostSurfacePendingStorageInitMs": 0.09999996423721313
}
}
},
"layout": {
"renderLayoutReuseAction": "build-required",
"renderLayoutReuseReason": "initial-publication",
"renderLayoutReuseProofSource": "fresh-build-proof",
"renderLayoutBuildTrace": {
"totalMs": 497.30000001192093,
"arrayAllocationMs": 1.300000011920929,
"transformBoundsPassMs": 194,
"coordinateAssignmentMs": 100.39999997615814,
"indexToTexelFillMs": 35.30000001192093,
"cellToPointIndexBuildMs": 154.69999998807907,
"colorBufferAllocationMs": 0.10000002384185791
},
"renderLayoutReuseFrameCacheKind": "miss",
"renderLayoutReuseFrameCacheHit": false,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "created",
"totalMs": 620.3000000119209,
"recreateDecision": {
"missingSurface": true,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": false
},
"disposeResetMeshRemovalMs": 0.09999996423721313,
"createComputeBufferSurfacePositionArrayAllocMs": 0.30000001192092896,
"createComputeBufferSurfaceIndexArrayAllocMs": 0.6000000238418579,
"createComputeBufferSurfacePositionArrayFillMs": 75.39999997615814,
"createComputeBufferSurfaceIndexArrayFillMs": 132.9000000357628,
"createComputeBufferSurfaceGeometryAttributeAttachMs": 0,
"createComputeBufferSurfaceBoundsMs": 352.69999998807907,
"createComputeBufferSurfaceUtciStorageAllocMs": 0,
"createComputeBufferSurfaceCellToPointAllocFillMs": 54.39999997615814,
"createComputeBufferSurfaceColorLutSetupMs": 1.2999999523162842,
"createComputeBufferSurfaceMaterialSetupMs": 1.100000023841858,
"createComputeBufferSurfaceMeshConstructMs": 0.19999998807907104,
"createComputeBufferSurfaceByteAccountingMs": 0,
"createComputeBufferSurfaceGeometryBytes": 294254088,
"createComputeBufferSurfaceUtciStorageBytes": 32687044,
"createComputeBufferSurfaceCellToPointBytes": 32687044,
"createComputeBufferSurfaceColorLutBytes": 1024,
"createComputeBufferSurfaceMeshMs": 619.6999999880791,
"applySurfaceMeshStateMs": 0.10000002384185791,
"setCreatedSurfacePendingStorageInitMs": 0,
"sceneAddMs": 0,
"publishUtciSurfaceDiagnosticsMs": 0,
"setPostSurfacePendingStorageInitMs": 0.09999996423721313
}
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"baseSameDeviceForComputeAndRender": true,
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
}
},
"forbiddenComparisonFieldsPresent": []
},
{
"caseId": "direct-nz-0_5m-single-submit",
"actionKind": "hour-scrub",
"actionLabel": "hour-1",
"colorMode": "normalized",
"selectedMonthIndex": 7,
"selectedHourIndex": 1,
"selectedTimeIndex": 169,
"selectionKey": "Ness-Tziona/exploded/nes_tziona_unblock_2|7|1",
"surfaceRequestId": 2,
"entryUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"targetUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"wallVisibleMs": 385.0096999999987,
"timings": {
"firstSelectedHourVisibleMs": 187.60000002384186,
"oneHourDispatchMs": 57.40000003576279,
"renderUpdateMs": 129.9000000357628,
"renderSceneSyncStartDelayMs": 83.5,
"renderSceneSyncTotalMs": 46,
"exposurePrecomputeMs": 16312.100000023842,
"exposureQueueWaitMs": 16310.699999988079,
"exposurePointChunks": 2,
"exposureSchedulerMode": "single-submit",
"exposureSchedulerSliceCount": 1,
"exposureSchedulerMaxWorkgroupsPerSlice": 8192,
"exposureSchedulerQueueWaitTotalMs": 16310.699999988079,
"exposureSchedulerQueueWaitMaxMs": 16310.699999988079,
"exposureSchedulerQueueWaitMinMs": 16310.699999988079,
"exposureSchedulerYieldCount": 0,
"exposureSchedulerSubmitCount": 1
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "scrub",
"renderPublicationMeshAction": "reused",
"renderPublicationPointCount": 8171761,
"renderPublicationVertexCount": 8177652,
"timeline": {
"controllerSessionRunStartedAtMs": 26143.30000001192,
"controllerSessionRunCompletedAtMs": 26283.100000023842,
"controllerAcceptStartedAtMs": 26283.100000023842,
"controllerAcceptedAtMs": 26283.200000047684,
"controllerStatePublishedAtMs": 26283.400000035763,
"sessionComputeOutputReturnedAtMs": 26201,
"sessionGpuOutputHandleReadyAtMs": 26201,
"sessionRangeResolveStartedAtMs": 26282.80000001192,
"sessionRangeResolveCompletedAtMs": 26282.900000035763,
"sessionSelectedDayRangeCacheKey": "7:24",
"sessionSelectedDayRangeCacheHit": true,
"sessionSelectedDayRangeCacheSizeBefore": 1,
"sessionSelectedDayRangeCacheSizeAfter": 1,
"sessionSelectedDayRangeReadbackCount": 0,
"sessionSelectedDayRangeComputedHourCount": 0,
"sessionSelectedDayRangeResolutionPath": "cache-hit",
"sessionSelectedDayRangeSummaryReadbackCount": 0,
"sessionSelectedDayRangeSummaryReadbackBytes": 0,
"sessionSelectedDayRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeResolutionPath": "not-needed",
"sessionSelectedHourRangeReadbackCount": 0,
"sessionSelectedHourRangeCpuScanCount": 0,
"sessionSelectedHourRangeSummaryReadbackCount": 0,
"sessionSelectedHourRangeSummaryReadbackBytes": 0,
"sessionSelectedHourRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeSummaryReductionPassCount": 0,
"sessionResultReadyAtMs": 26283.100000023842,
"sessionResultReturnedAtMs": 26283.100000023842,
"routePendingSurfaceExposedAtMs": 26284.100000023842,
"routePublishedAtMs": 26331.200000047684,
"routeProjectedAtMs": 26332,
"scenePendingSurfaceObservedAtMs": 26284.400000035763,
"sceneReactiveBlockEnteredAtMs": 26284.400000035763,
"sceneSyncInvocationQueuedAtMs": 26284.400000035763,
"sceneReactiveToSyncQueuedMs": 0,
"sceneSyncQueuedToStartMs": 0.09999996423721313,
"sceneSyncAttemptStartedAtMs": 26284.5,
"sceneLayoutKeyStartedAtMs": 26284.5,
"sceneLayoutKeyCompletedAtMs": 26284.700000047684,
"scenePublicationPlanReadyAtMs": 26325.80000001192,
"sceneSurfacePendingStorageInitAtMs": 26326.200000047684,
"renderStorageReadyAtMs": 26326.400000035763,
"sceneSyncCompletedAtMs": 26330.5,
"controllerVisibleAcknowledgedAtMs": 26330.900000035763,
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "refreshed-proof-safe",
"renderLayoutReuseProofSource": "refreshed-runtime-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.30000001192092896,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0.10000002384185791,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0.19999998807907104,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.10000002384185791,
"setPostSurfacePendingStorageInitMs": 0
}
}
},
"layout": {
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "refreshed-proof-safe",
"renderLayoutReuseProofSource": "refreshed-runtime-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.30000001192092896,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0.10000002384185791,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0.19999998807907104,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.10000002384185791,
"setPostSurfacePendingStorageInitMs": 0
}
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"baseSameDeviceForComputeAndRender": true,
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
}
},
"forbiddenComparisonFieldsPresent": []
},
{
"caseId": "direct-nz-0_5m-single-submit",
"actionKind": "hour-scrub",
"actionLabel": "hour-2",
"colorMode": "normalized",
"selectedMonthIndex": 7,
"selectedHourIndex": 2,
"selectedTimeIndex": 170,
"selectionKey": "Ness-Tziona/exploded/nes_tziona_unblock_2|7|2",
"surfaceRequestId": 5,
"entryUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"targetUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"wallVisibleMs": 555.9766999999993,
"timings": {
"firstSelectedHourVisibleMs": 147.80000001192093,
"oneHourDispatchMs": 15.5,
"renderUpdateMs": 132.10000002384186,
"renderSceneSyncStartDelayMs": 57.40000003576279,
"renderSceneSyncTotalMs": 74.5,
"exposurePrecomputeMs": 16312.100000023842,
"exposureQueueWaitMs": 16310.699999988079,
"exposurePointChunks": 2,
"exposureSchedulerMode": "single-submit",
"exposureSchedulerSliceCount": 1,
"exposureSchedulerMaxWorkgroupsPerSlice": 8192,
"exposureSchedulerQueueWaitTotalMs": 16310.699999988079,
"exposureSchedulerQueueWaitMaxMs": 16310.699999988079,
"exposureSchedulerQueueWaitMinMs": 16310.699999988079,
"exposureSchedulerYieldCount": 0,
"exposureSchedulerSubmitCount": 1
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "scrub",
"renderPublicationMeshAction": "reused",
"renderPublicationPointCount": 8171761,
"renderPublicationVertexCount": 8177652,
"timeline": {
"controllerSessionRunStartedAtMs": 26761.80000001192,
"controllerSessionRunCompletedAtMs": 26833.80000001192,
"controllerAcceptStartedAtMs": 26833.80000001192,
"controllerAcceptedAtMs": 26833.80000001192,
"controllerStatePublishedAtMs": 26833.900000035763,
"sessionComputeOutputReturnedAtMs": 26777.5,
"sessionGpuOutputHandleReadyAtMs": 26777.5,
"sessionRangeResolveStartedAtMs": 26833.700000047684,
"sessionRangeResolveCompletedAtMs": 26833.700000047684,
"sessionSelectedDayRangeCacheKey": "7:24",
"sessionSelectedDayRangeCacheHit": true,
"sessionSelectedDayRangeCacheSizeBefore": 1,
"sessionSelectedDayRangeCacheSizeAfter": 1,
"sessionSelectedDayRangeReadbackCount": 0,
"sessionSelectedDayRangeComputedHourCount": 0,
"sessionSelectedDayRangeResolutionPath": "cache-hit",
"sessionSelectedDayRangeSummaryReadbackCount": 0,
"sessionSelectedDayRangeSummaryReadbackBytes": 0,
"sessionSelectedDayRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeResolutionPath": "not-needed",
"sessionSelectedHourRangeReadbackCount": 0,
"sessionSelectedHourRangeCpuScanCount": 0,
"sessionSelectedHourRangeSummaryReadbackCount": 0,
"sessionSelectedHourRangeSummaryReadbackBytes": 0,
"sessionSelectedHourRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeSummaryReductionPassCount": 0,
"sessionResultReadyAtMs": 26833.80000001192,
"sessionResultReturnedAtMs": 26833.80000001192,
"routePendingSurfaceExposedAtMs": 26834.5,
"routePublishedAtMs": 26909.900000035763,
"routeProjectedAtMs": 26910.700000047684,
"scenePendingSurfaceObservedAtMs": 26834.700000047684,
"sceneReactiveBlockEnteredAtMs": 26834.700000047684,
"sceneSyncInvocationQueuedAtMs": 26834.700000047684,
"sceneReactiveToSyncQueuedMs": 0,
"sceneSyncQueuedToStartMs": 0.19999998807907104,
"sceneSyncAttemptStartedAtMs": 26834.900000035763,
"sceneLayoutKeyStartedAtMs": 26834.900000035763,
"sceneLayoutKeyCompletedAtMs": 26835,
"scenePublicationPlanReadyAtMs": 26905.100000023842,
"sceneSurfacePendingStorageInitAtMs": 26905.30000001192,
"renderStorageReadyAtMs": 26905.5,
"sceneSyncCompletedAtMs": 26909.400000035763,
"controllerVisibleAcknowledgedAtMs": 26909.600000023842,
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "reuse-safe",
"renderLayoutReuseProofSource": "previous-publication-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.19999998807907104,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.10000002384185791,
"setPostSurfacePendingStorageInitMs": 0.09999996423721313
}
}
},
"layout": {
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "reuse-safe",
"renderLayoutReuseProofSource": "previous-publication-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.19999998807907104,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.10000002384185791,
"setPostSurfacePendingStorageInitMs": 0.09999996423721313
}
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"baseSameDeviceForComputeAndRender": true,
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
}
},
"forbiddenComparisonFieldsPresent": []
},
{
"caseId": "direct-nz-0_5m-single-submit",
"actionKind": "hour-scrub",
"actionLabel": "hour-3",
"colorMode": "normalized",
"selectedMonthIndex": 7,
"selectedHourIndex": 3,
"selectedTimeIndex": 171,
"selectionKey": "Ness-Tziona/exploded/nes_tziona_unblock_2|7|3",
"surfaceRequestId": 8,
"entryUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"targetUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"wallVisibleMs": 440.5637999999999,
"timings": {
"firstSelectedHourVisibleMs": 115.70000004768372,
"oneHourDispatchMs": 15.300000011920929,
"renderUpdateMs": 100.30000001192093,
"renderSceneSyncStartDelayMs": 61,
"renderSceneSyncTotalMs": 38.89999997615814,
"exposurePrecomputeMs": 16312.100000023842,
"exposureQueueWaitMs": 16310.699999988079,
"exposurePointChunks": 2,
"exposureSchedulerMode": "single-submit",
"exposureSchedulerSliceCount": 1,
"exposureSchedulerMaxWorkgroupsPerSlice": 8192,
"exposureSchedulerQueueWaitTotalMs": 16310.699999988079,
"exposureSchedulerQueueWaitMaxMs": 16310.699999988079,
"exposureSchedulerQueueWaitMinMs": 16310.699999988079,
"exposureSchedulerYieldCount": 0,
"exposureSchedulerSubmitCount": 1
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "scrub",
"renderPublicationMeshAction": "reused",
"renderPublicationPointCount": 8171761,
"renderPublicationVertexCount": 8177652,
"timeline": {
"controllerSessionRunStartedAtMs": 27247.900000035763,
"controllerSessionRunCompletedAtMs": 27323.5,
"controllerAcceptStartedAtMs": 27323.5,
"controllerAcceptedAtMs": 27323.5,
"controllerStatePublishedAtMs": 27323.600000023842,
"sessionComputeOutputReturnedAtMs": 27263.30000001192,
"sessionGpuOutputHandleReadyAtMs": 27263.400000035763,
"sessionRangeResolveStartedAtMs": 27323.200000047684,
"sessionRangeResolveCompletedAtMs": 27323.200000047684,
"sessionSelectedDayRangeCacheKey": "7:24",
"sessionSelectedDayRangeCacheHit": true,
"sessionSelectedDayRangeCacheSizeBefore": 1,
"sessionSelectedDayRangeCacheSizeAfter": 1,
"sessionSelectedDayRangeReadbackCount": 0,
"sessionSelectedDayRangeComputedHourCount": 0,
"sessionSelectedDayRangeResolutionPath": "cache-hit",
"sessionSelectedDayRangeSummaryReadbackCount": 0,
"sessionSelectedDayRangeSummaryReadbackBytes": 0,
"sessionSelectedDayRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeResolutionPath": "not-needed",
"sessionSelectedHourRangeReadbackCount": 0,
"sessionSelectedHourRangeCpuScanCount": 0,
"sessionSelectedHourRangeSummaryReadbackCount": 0,
"sessionSelectedHourRangeSummaryReadbackBytes": 0,
"sessionSelectedHourRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeSummaryReductionPassCount": 0,
"sessionResultReadyAtMs": 27323.400000035763,
"sessionResultReturnedAtMs": 27323.400000035763,
"routePendingSurfaceExposedAtMs": 27324.100000023842,
"routePublishedAtMs": 27364.100000023842,
"routeProjectedAtMs": 27365,
"scenePendingSurfaceObservedAtMs": 27324.200000047684,
"sceneReactiveBlockEnteredAtMs": 27324.200000047684,
"sceneSyncInvocationQueuedAtMs": 27324.200000047684,
"sceneReactiveToSyncQueuedMs": 0,
"sceneSyncQueuedToStartMs": 0.19999998807907104,
"sceneSyncAttemptStartedAtMs": 27324.400000035763,
"sceneLayoutKeyStartedAtMs": 27324.400000035763,
"sceneLayoutKeyCompletedAtMs": 27324.5,
"scenePublicationPlanReadyAtMs": 27358.700000047684,
"sceneSurfacePendingStorageInitAtMs": 27358.900000035763,
"renderStorageReadyAtMs": 27359.200000047684,
"sceneSyncCompletedAtMs": 27363.30000001192,
"controllerVisibleAcknowledgedAtMs": 27363.700000047684,
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "reuse-safe",
"renderLayoutReuseProofSource": "previous-publication-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.19999998807907104,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.09999996423721313,
"setPostSurfacePendingStorageInitMs": 0
}
}
},
"layout": {
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "reuse-safe",
"renderLayoutReuseProofSource": "previous-publication-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.19999998807907104,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.09999996423721313,
"setPostSurfacePendingStorageInitMs": 0
}
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"baseSameDeviceForComputeAndRender": true,
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
}
},
"forbiddenComparisonFieldsPresent": []
},
{
"caseId": "direct-nz-0_5m-single-submit",
"actionKind": "month-change",
"actionLabel": "month-8-first",
"colorMode": "normalized",
"selectedMonthIndex": 8,
"selectedHourIndex": 3,
"selectedTimeIndex": 195,
"selectionKey": "Ness-Tziona/exploded/nes_tziona_unblock_2|8|3",
"surfaceRequestId": 10,
"entryUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"targetUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"wallVisibleMs": 1022.6608000000015,
"timings": {
"firstSelectedHourVisibleMs": 390,
"oneHourDispatchMs": 13.200000047683716,
"renderUpdateMs": 376.60000002384186,
"renderSceneSyncStartDelayMs": 343,
"renderSceneSyncTotalMs": 33.19999998807907,
"exposurePrecomputeMs": 16312.100000023842,
"exposureQueueWaitMs": 16310.699999988079,
"exposurePointChunks": 2,
"exposureSchedulerMode": "single-submit",
"exposureSchedulerSliceCount": 1,
"exposureSchedulerMaxWorkgroupsPerSlice": 8192,
"exposureSchedulerQueueWaitTotalMs": 16310.699999988079,
"exposureSchedulerQueueWaitMaxMs": 16310.699999988079,
"exposureSchedulerQueueWaitMinMs": 16310.699999988079,
"exposureSchedulerYieldCount": 0,
"exposureSchedulerSubmitCount": 1
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "scrub",
"renderPublicationMeshAction": "reused",
"renderPublicationPointCount": 8171761,
"renderPublicationVertexCount": 8177652,
"timeline": {
"controllerSessionRunStartedAtMs": 28020.30000001192,
"controllerSessionRunCompletedAtMs": 28375.400000035763,
"controllerAcceptStartedAtMs": 28375.400000035763,
"controllerAcceptedAtMs": 28375.5,
"controllerStatePublishedAtMs": 28375.600000023842,
"sessionComputeOutputReturnedAtMs": 28033.80000001192,
"sessionGpuOutputHandleReadyAtMs": 28033.80000001192,
"sessionRangeResolveStartedAtMs": 28069.200000047684,
"sessionRangeResolveCompletedAtMs": 28375.200000047684,
"sessionSelectedDayRangeCacheKey": "8:24",
"sessionSelectedDayRangeCacheHit": false,
"sessionSelectedDayRangeCacheSizeBefore": 2,
"sessionSelectedDayRangeCacheSizeAfter": 3,
"sessionSelectedDayRangeReadbackCount": 0,
"sessionSelectedDayRangeComputedHourCount": 23,
"sessionSelectedDayRangeResolutionPath": "compact-gpu-summary",
"sessionSelectedDayRangeSummaryReadbackCount": 23,
"sessionSelectedDayRangeSummaryReadbackBytes": 368,
"sessionSelectedDayRangeFullReadbackAvoidedCount": 23,
"sessionSelectedHourRangeResolutionPath": "not-needed",
"sessionSelectedHourRangeReadbackCount": 0,
"sessionSelectedHourRangeCpuScanCount": 0,
"sessionSelectedHourRangeSummaryReadbackCount": 0,
"sessionSelectedHourRangeSummaryReadbackBytes": 0,
"sessionSelectedHourRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeSummaryReductionPassCount": 0,
"sessionResultReadyAtMs": 28375.400000035763,
"sessionResultReturnedAtMs": 28375.400000035763,
"routePendingSurfaceExposedAtMs": 28376.30000001192,
"routePublishedAtMs": 28410.5,
"routeProjectedAtMs": 28411.200000047684,
"scenePendingSurfaceObservedAtMs": 28376.600000023842,
"sceneReactiveBlockEnteredAtMs": 28376.600000023842,
"sceneSyncInvocationQueuedAtMs": 28376.600000023842,
"sceneReactiveToSyncQueuedMs": 0,
"sceneSyncQueuedToStartMs": 0.19999998807907104,
"sceneSyncAttemptStartedAtMs": 28376.80000001192,
"sceneLayoutKeyStartedAtMs": 28376.80000001192,
"sceneLayoutKeyCompletedAtMs": 28376.900000035763,
"scenePublicationPlanReadyAtMs": 28405.80000001192,
"sceneSurfacePendingStorageInitAtMs": 28406.200000047684,
"renderStorageReadyAtMs": 28406.600000023842,
"sceneSyncCompletedAtMs": 28410,
"controllerVisibleAcknowledgedAtMs": 28410.400000035763,
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "reuse-safe",
"renderLayoutReuseProofSource": "previous-publication-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.40000003576278687,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.19999998807907104,
"setPostSurfacePendingStorageInitMs": 0
}
}
},
"layout": {
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "reuse-safe",
"renderLayoutReuseProofSource": "previous-publication-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.40000003576278687,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.19999998807907104,
"setPostSurfacePendingStorageInitMs": 0
}
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"baseSameDeviceForComputeAndRender": true,
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
}
},
"forbiddenComparisonFieldsPresent": []
},
{
"caseId": "direct-nz-0_5m-single-submit",
"actionKind": "month-change",
"actionLabel": "month-0-first",
"colorMode": "normalized",
"selectedMonthIndex": 0,
"selectedHourIndex": 3,
"selectedTimeIndex": 3,
"selectionKey": "Ness-Tziona/exploded/nes_tziona_unblock_2|0|3",
"surfaceRequestId": 11,
"entryUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"targetUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"wallVisibleMs": 188.16739999999845,
"timings": {
"firstSelectedHourVisibleMs": 80.19999998807907,
"oneHourDispatchMs": 12.099999964237213,
"renderUpdateMs": 67.89999997615814,
"renderSceneSyncStartDelayMs": 36.80000001192093,
"renderSceneSyncTotalMs": 30.899999976158142,
"exposurePrecomputeMs": 16312.100000023842,
"exposureQueueWaitMs": 16310.699999988079,
"exposurePointChunks": 2,
"exposureSchedulerMode": "single-submit",
"exposureSchedulerSliceCount": 1,
"exposureSchedulerMaxWorkgroupsPerSlice": 8192,
"exposureSchedulerQueueWaitTotalMs": 16310.699999988079,
"exposureSchedulerQueueWaitMaxMs": 16310.699999988079,
"exposureSchedulerQueueWaitMinMs": 16310.699999988079,
"exposureSchedulerYieldCount": 0,
"exposureSchedulerSubmitCount": 1
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "scrub",
"renderPublicationMeshAction": "reused",
"renderPublicationPointCount": 8171761,
"renderPublicationVertexCount": 8177652,
"timeline": {
"controllerSessionRunStartedAtMs": 28515.30000001192,
"controllerSessionRunCompletedAtMs": 28563.400000035763,
"controllerAcceptStartedAtMs": 28563.400000035763,
"controllerAcceptedAtMs": 28563.400000035763,
"controllerStatePublishedAtMs": 28563.5,
"sessionComputeOutputReturnedAtMs": 28527.5,
"sessionGpuOutputHandleReadyAtMs": 28527.5,
"sessionRangeResolveStartedAtMs": 28563.200000047684,
"sessionRangeResolveCompletedAtMs": 28563.200000047684,
"sessionSelectedDayRangeCacheKey": "0:24",
"sessionSelectedDayRangeCacheHit": true,
"sessionSelectedDayRangeCacheSizeBefore": 3,
"sessionSelectedDayRangeCacheSizeAfter": 3,
"sessionSelectedDayRangeReadbackCount": 0,
"sessionSelectedDayRangeComputedHourCount": 0,
"sessionSelectedDayRangeResolutionPath": "cache-hit",
"sessionSelectedDayRangeSummaryReadbackCount": 0,
"sessionSelectedDayRangeSummaryReadbackBytes": 0,
"sessionSelectedDayRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeResolutionPath": "not-needed",
"sessionSelectedHourRangeReadbackCount": 0,
"sessionSelectedHourRangeCpuScanCount": 0,
"sessionSelectedHourRangeSummaryReadbackCount": 0,
"sessionSelectedHourRangeSummaryReadbackBytes": 0,
"sessionSelectedHourRangeFullReadbackAvoidedCount": 0,
"sessionSelectedHourRangeSummaryReductionPassCount": 0,
"sessionResultReadyAtMs": 28563.400000035763,
"sessionResultReturnedAtMs": 28563.400000035763,
"routePendingSurfaceExposedAtMs": 28564,
"routePublishedAtMs": 28595.80000001192,
"routeProjectedAtMs": 28596.5,
"scenePendingSurfaceObservedAtMs": 28564.200000047684,
"sceneReactiveBlockEnteredAtMs": 28564.200000047684,
"sceneSyncInvocationQueuedAtMs": 28564.200000047684,
"sceneReactiveToSyncQueuedMs": 0,
"sceneSyncQueuedToStartMs": 0.19999998807907104,
"sceneSyncAttemptStartedAtMs": 28564.400000035763,
"sceneLayoutKeyStartedAtMs": 28564.400000035763,
"sceneLayoutKeyCompletedAtMs": 28564.400000035763,
"scenePublicationPlanReadyAtMs": 28591.400000035763,
"sceneSurfacePendingStorageInitAtMs": 28591.600000023842,
"renderStorageReadyAtMs": 28591.80000001192,
"sceneSyncCompletedAtMs": 28595.30000001192,
"controllerVisibleAcknowledgedAtMs": 28595.5,
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "reuse-safe",
"renderLayoutReuseProofSource": "previous-publication-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.19999998807907104,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.19999998807907104,
"setPostSurfacePendingStorageInitMs": 0
}
}
},
"layout": {
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "reuse-safe",
"renderLayoutReuseProofSource": "previous-publication-proof",
"renderLayoutBuildTrace": null,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseFrameCacheHit": true,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.19999998807907104,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.19999998807907104,
"setPostSurfacePendingStorageInitMs": 0
}
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"baseSameDeviceForComputeAndRender": true,
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
}
},
"forbiddenComparisonFieldsPresent": []
},
{
"caseId": "direct-nz-0_5m-single-submit",
"actionKind": "month-change",
"actionLabel": "month-1-first",
"colorMode": "normalized",
"selectedMonthIndex": 1,
"selectedHourIndex": 3,
"selectedTimeIndex": 27,
"selectionKey": "Ness-Tziona/exploded/nes_tziona_unblock_2|1|3",
"surfaceRequestId": 12,
"entryUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"targetUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&gridResolution=0.5&utciRender=auto&utciRenderDiagnostics=1",
"wallVisibleMs": 575.7007999999987,
"timings": {
"firstSelectedHourVisibleMs": 420.5,
"oneHourDispatchMs": 12.699999988079071,
"renderUpdateMs": 407.60000002384186,
"renderSceneSyncStartDelayMs": 376.2000000476837,
"renderSceneSyncTotalMs": 31.099999964237213,
"exposurePrecomputeMs": 16312.100000023842,