-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain-route-cold-start-waterfall.json
More file actions
5182 lines (5182 loc) · 253 KB
/
Copy pathmain-route-cold-start-waterfall.json
File metadata and controls
5182 lines (5182 loc) · 253 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": "/",
"collectionMethod": "Main route cold-start waterfall: / with utciRender=auto&utciRenderDiagnostics=1, collecting both initial first visible and first post-visible hour-slider scrub; no debug route and no parity/.bin comparison.",
"cases": [
{
"caseId": "ben-gurion-2m-chunked",
"projectLabel": "Ben-Gurion",
"analysisId": "Ben-Gurion/20250815_grid_2m_fullday",
"gridResolutionMeters": 2,
"pointCount": 104445,
"sourceUrl": "/?analysis=Ben-Gurion%2F20250815_grid_2m_fullday&utciRender=auto&utciRenderDiagnostics=1",
"initial": {
"firstVisibleMs": 4387.899999976158,
"timings": {
"payloadPrepareMs": null,
"workerBvhMs": null,
"pipelineUploadMs": null,
"exposurePrecomputeMs": 673.1999999880791,
"exposureCommandEncodeTotalMs": 0.19999998807907104,
"exposureEncodeMs": null,
"exposureSolarEncodeMs": 0.19999998807907104,
"exposureSkyEncodeMs": 0,
"exposureQueueWaitMs": 672.5999999642372,
"exposurePointCount": 104445,
"exposureTotalTimeSteps": 288,
"exposureDaylightTimeSteps": 145,
"exposurePointChunks": 1,
"exposureSchedulerMode": "chunked",
"exposureSchedulerSliceCount": 1,
"exposurePointDispatchChunkCount": 1,
"exposureSchedulerMaxWorkgroupsPerSlice": 2048,
"exposureSchedulerQueueWaitTotalMs": 672.5999999642372,
"exposureSchedulerQueueWaitMaxMs": 672.5999999642372,
"exposureSchedulerQueueWaitMinMs": 672.5999999642372,
"exposureSchedulerYieldCount": 0,
"exposureSchedulerSubmitCount": 1,
"exposureSolarDispatchCount": 1,
"exposureSkyDispatchCount": 1,
"exposureSolarRayBudget": 15144525,
"exposureSkyRayBudget": 15144525,
"oneHourDispatchMs": 2.300000011920929,
"firstSelectedHourReadyMs": 1297.199999988079,
"firstSelectedHourVisibleMs": 1046.5,
"renderUpdateMs": 204.60000002384186,
"renderSceneSyncStartDelayMs": 119.80000001192093,
"renderSceneSyncTotalMs": 83.90000003576279,
"renderLayoutBuildMs": 12,
"renderSurfaceMeshMs": 9.699999988079071,
"renderStorageInitWaitMs": 18.30000001192093,
"renderBufferCopyMs": 0,
"renderQueueDrainMs": 34.10000002384186
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "initial",
"renderPublicationMeshAction": "created",
"renderPublicationTimeline": {
"sessionComputeOutputReturnedAtMs": 4183.199999988079,
"sessionDiagnosticsAppliedAtMs": 4183.199999988079,
"sessionGpuOutputHandleReadyAtMs": 4183.299999952316,
"sessionPreferGpuResidentResolvedAtMs": 4183.299999952316,
"renderLayoutBuildTrace": {
"totalMs": 11.300000011920929,
"arrayAllocationMs": 0,
"transformBoundsPassMs": 5,
"coordinateAssignmentMs": 2.300000011920929,
"indexToTexelFillMs": 1.699999988079071,
"cellToPointIndexBuildMs": 1.5,
"colorBufferAllocationMs": 0
},
"renderLayoutReuseProofTrace": {
"decision": "rebuild-required",
"hoverCellLookupProofStatus": "proof-inconclusive",
"previousLayoutPresent": false,
"canonicalRuntimeCompatibilityWouldReuse": null,
"proofMatchesCanonicalRuntimeCompatibility": null,
"positionsReferenceMatch": null,
"pointCountMatch": null,
"gridSizeMatch": null,
"coordinateSystemMatch": null,
"normalizationSignature": {
"enabled": true,
"offset": {
"x": 3142.616943359375,
"y": -1.5000000001117586,
"z": -403.2862548828125
},
"provenance": "anchor-offset-minus-origin"
},
"previousNormalizationSignature": null,
"normalizationSignatureMatch": null,
"constructionMode": "world-positions",
"previousConstructionMode": null,
"constructionModeMatch": null,
"dimensionsMatch": null,
"placementMatch": null,
"cellToPointMappingMatch": null,
"proofCostMs": 0.09999996423721313,
"estimatedRetainedCpuLayoutBytes": 2088900
},
"sceneReactiveToSyncQueuedMs": 0.09999996423721313,
"sceneSyncQueuedToStartMs": 1,
"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,
"renderLayoutReuseAction": "build-required",
"renderLayoutReuseReason": "initial-publication",
"renderLayoutReuseDecisionMs": 21,
"renderLayoutReuseKeyMs": 8.700000047683716,
"renderLayoutReuseSourceSignatureMs": 1.5,
"renderLayoutReusePositionsSignatureMs": 1.5,
"renderLayoutReusePositionsSignatureCacheHit": false,
"renderLayoutReuseFrameCacheLookupMs": 7.200000047683716,
"renderLayoutReuseFrameDerivationMs": 6.899999976158142,
"renderLayoutReuseFrameCacheHit": false,
"renderLayoutReuseFrameCacheKind": "miss",
"renderLayoutReuseKeyMatch": false,
"renderLayoutReuseProofSource": "fresh-build-proof",
"renderLayoutReusePreviousKey": null,
"renderLayoutReusePreviousRequestId": null,
"renderLayoutReusePreviousSelectionKey": null,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "created",
"totalMs": 9.699999988079071,
"recreateDecision": {
"missingSurface": true,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": false
},
"disposeResetMeshRemovalMs": 0.10000002384185791,
"createComputeBufferSurfacePositionArrayAllocMs": 0,
"createComputeBufferSurfaceIndexArrayAllocMs": 0,
"createComputeBufferSurfacePositionArrayFillMs": 1.800000011920929,
"createComputeBufferSurfaceIndexArrayFillMs": 3.699999988079071,
"createComputeBufferSurfaceGeometryAttributeAttachMs": 0,
"createComputeBufferSurfaceBoundsMs": 0.10000002384185791,
"createComputeBufferSurfaceUtciStorageAllocMs": 0,
"createComputeBufferSurfaceCellToPointAllocFillMs": 1.699999988079071,
"createComputeBufferSurfaceColorLutSetupMs": 0.5999999642372131,
"createComputeBufferSurfaceMaterialSetupMs": 1,
"createComputeBufferSurfaceMeshConstructMs": 0,
"createComputeBufferSurfaceByteAccountingMs": 0,
"createComputeBufferSurfaceGeometryBytes": 3768504,
"createComputeBufferSurfaceUtciStorageBytes": 417780,
"createComputeBufferSurfaceCellToPointBytes": 417780,
"createComputeBufferSurfaceColorLutBytes": 1024,
"createComputeBufferSurfaceMeshMs": 9.300000011920929,
"applySurfaceMeshStateMs": 0,
"setCreatedSurfacePendingStorageInitMs": 0.09999996423721313,
"sceneAddMs": 0,
"publishUtciSurfaceDiagnosticsMs": 0,
"setPostSurfacePendingStorageInitMs": 0
},
"sceneSurfacePendingStorageInitAtMs": 4333.799999952316,
"renderStorageWaitStartedAtMs": 4334.399999976158,
"renderStoragePreWaitMs": 31.30000001192093,
"renderStorageWaitTrace": {
"waitStartedAtMs": 4334.399999976158,
"waitFinishedAtMs": 4352.699999988079,
"waitMs": 18.30000001192093,
"readAttemptCount": 2,
"frameWaitCount": 1,
"deviceAvailableCount": 2,
"backendEntryAvailableCount": 2,
"bufferAvailableCount": 1,
"firstDeviceAtMs": 4334.399999976158,
"firstBackendEntryAtMs": 4334.399999976158,
"firstBufferAtMs": 4352.699999988079,
"lastReadState": {
"deviceAvailable": true,
"backendEntryAvailable": true,
"bufferAvailable": true
},
"samples": [
{
"atMs": 4334.399999976158,
"deviceAvailable": true,
"backendEntryAvailable": true,
"bufferAvailable": false
},
{
"atMs": 4352.699999988079,
"deviceAvailable": true,
"backendEntryAvailable": true,
"bufferAvailable": true
}
]
},
"sceneSyncResetHistory": [
{
"resetAtMs": 3001.199999988079,
"resetReason": "dispose-utci-surface",
"invalidateActiveRun": true,
"previousCopyRunToken": 0,
"nextCopyRunToken": 1
}
],
"sceneSyncActiveWindowResetHistory": [],
"sessionDebugReadbackStartedAtMs": 4183.5,
"sessionDebugReadbackCompletedAtMs": 4188.399999976158,
"sessionSelectedHourRangeScanStartedAtMs": 4188.599999964237,
"sessionSelectedHourRangeScanCompletedAtMs": 4188.699999988079,
"sessionRangeResolveStartedAtMs": 4188.799999952316,
"sessionRangeResolveCompletedAtMs": 4299.399999976158,
"sessionSelectedHourAnalysisBuildStartedAtMs": 4299.5,
"sessionSelectedHourAnalysisBuildCompletedAtMs": 4299.699999988079,
"sessionCpuFallbackSetupStartedAtMs": 4299.699999988079,
"sessionCpuFallbackSetupCompletedAtMs": 4299.699999988079,
"sessionGpuResidentRangeResolveStartedAtMs": 4299.899999976158,
"sessionGpuResidentRangeResolveCompletedAtMs": 4299.899999976158,
"sessionTooltipValuesHandoffStartedAtMs": 4299.899999976158,
"sessionTooltipValuesHandoffCompletedAtMs": 4299.899999976158,
"sessionGpuResidentResultAssemblyStartedAtMs": 4299.899999976158,
"sessionGpuResidentResultAssemblyCompletedAtMs": 4300,
"sessionResultReadyAtMs": 4300,
"sessionResultReturnedAtMs": 4300,
"controllerSessionRunStartedAtMs": 3341.199999988079,
"controllerSessionRunCompletedAtMs": 4300.099999964237,
"controllerAcceptStartedAtMs": 4300.099999964237,
"computeCompletedAtMs": 4300.099999964237,
"selectedHourValuePublicationStartedAtMs": 4183.299999952316,
"controllerAcceptedAtMs": 4300.099999964237,
"controllerDiagnosticsMergedAtMs": 4300.199999988079,
"controllerStatePublishedAtMs": 4300.399999976158,
"scenePendingSurfaceObservedAtMs": 4302.099999964237,
"sceneReactiveBlockEnteredAtMs": 4302,
"sceneRenderStateResolvedAtMs": 4302.099999964237,
"sceneAcceptedKeyResolvedAtMs": 4302.099999964237,
"sceneSyncInvocationQueuedAtMs": 4302.099999964237,
"sceneStartSyncEnteredAtMs": 4302.699999988079,
"sceneStartSyncReturnedAtMs": 4303.099999964237,
"sceneSyncAttemptStartedAtMs": 4303.099999964237,
"sceneSyncAttemptToken": 2,
"sceneSurfaceReceivedAtMs": 4302.399999976158,
"publicationEffectStartedAtMs": 4303.099999964237,
"sceneLayoutKeyStartedAtMs": 4303.099999964237,
"sceneLayoutKeyCompletedAtMs": 4312,
"scenePublicationPlanReadyAtMs": 4324.099999964237,
"renderLayoutPublicationPlanMs": 12,
"renderLayoutCompatibilityMs": 0,
"renderLayoutReuseProofMs": 0.19999998807907104,
"renderStorageReadyAtMs": 4352.799999952316,
"renderBufferCopyEncoderCreateMs": 0,
"renderBufferCopyCommandRecordMs": 0,
"renderBufferCopySubmitMs": 0,
"sceneSyncCompletedAtMs": 4387,
"controllerVisibleAcknowledgedAtMs": 4387.899999976158,
"routePublishedAtMs": 4388.399999976158,
"routeProjectionEvaluationStartedAtMs": 4389.199999988079,
"routePendingSurfaceExposedAtMs": 4301.599999964237,
"routeProjectedAtMs": 4389.299999952316,
"routeProjectionEvaluationCompletedAtMs": 4389.299999952316
},
"renderPublicationPointCount": 104445,
"renderPublicationVertexCount": 105152,
"renderPublicationIndexCount": 626670,
"renderPublicationDrawIndexCount": 626670,
"renderPublicationGridWidth": 495,
"renderPublicationGridHeight": 211,
"renderPublicationGridSize": 2,
"renderPublicationSourceByteLength": 417780,
"renderPublicationTargetByteLength": 417780,
"renderPublicationRenderOwnedBytes": 4605088
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
},
"baseSameDeviceForComputeAndRender": true,
"selectedMonthIndex": 7,
"selectedHourIndex": 0,
"selectedTimeIndex": 168
}
},
"firstPostVisibleScrub": {
"selectedHourIndex": 1,
"selectedTimeIndex": 169,
"visibleMs": 151.32789999999932,
"surfaceRequestId": 2,
"timings": {
"payloadPrepareMs": null,
"workerBvhMs": null,
"pipelineUploadMs": null,
"exposurePrecomputeMs": 673.1999999880791,
"exposureCommandEncodeTotalMs": 0.19999998807907104,
"exposureEncodeMs": null,
"exposureSolarEncodeMs": 0.19999998807907104,
"exposureSkyEncodeMs": 0,
"exposureQueueWaitMs": 672.5999999642372,
"exposurePointCount": 104445,
"exposureTotalTimeSteps": 288,
"exposureDaylightTimeSteps": 145,
"exposurePointChunks": 1,
"exposureSchedulerMode": "chunked",
"exposureSchedulerSliceCount": 1,
"exposurePointDispatchChunkCount": 1,
"exposureSchedulerMaxWorkgroupsPerSlice": 2048,
"exposureSchedulerQueueWaitTotalMs": 672.5999999642372,
"exposureSchedulerQueueWaitMaxMs": 672.5999999642372,
"exposureSchedulerQueueWaitMinMs": 672.5999999642372,
"exposureSchedulerYieldCount": 0,
"exposureSchedulerSubmitCount": 1,
"exposureSolarDispatchCount": 1,
"exposureSkyDispatchCount": 1,
"exposureSolarRayBudget": 15144525,
"exposureSkyRayBudget": 15144525,
"oneHourDispatchMs": 10.100000023841858,
"firstSelectedHourReadyMs": 32.59999996423721,
"firstSelectedHourVisibleMs": 44.19999998807907,
"renderUpdateMs": 34,
"renderSceneSyncStartDelayMs": 23.69999998807907,
"renderSceneSyncTotalMs": 10,
"renderLayoutBuildMs": 0,
"renderSurfaceMeshMs": 0.5,
"renderStorageInitWaitMs": 0,
"renderBufferCopyMs": 0.10000002384185791,
"renderQueueDrainMs": 5.599999964237213
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "scrub",
"renderPublicationMeshAction": "reused",
"renderPublicationTimeline": {
"sessionComputeOutputReturnedAtMs": 4510.199999988079,
"sessionDiagnosticsAppliedAtMs": 4510.199999988079,
"sessionGpuOutputHandleReadyAtMs": 4510.199999988079,
"sessionPreferGpuResidentResolvedAtMs": 4510.199999988079,
"renderLayoutBuildTrace": null,
"renderLayoutReuseProofTrace": {
"decision": "reuse-safe",
"hoverCellLookupProofStatus": "same-point-confirmed",
"previousLayoutPresent": true,
"canonicalRuntimeCompatibilityWouldReuse": true,
"proofMatchesCanonicalRuntimeCompatibility": true,
"positionsReferenceMatch": true,
"pointCountMatch": true,
"gridSizeMatch": true,
"coordinateSystemMatch": true,
"normalizationSignature": {
"enabled": true,
"offset": {
"x": 3142.616943359375,
"y": -1.5000000001117586,
"z": -403.2862548828125
},
"provenance": "anchor-offset-minus-origin"
},
"previousNormalizationSignature": {
"enabled": true,
"offset": {
"x": 3142.616943359375,
"y": -1.5000000001117586,
"z": -403.2862548828125
},
"provenance": "anchor-offset-minus-origin"
},
"normalizationSignatureMatch": true,
"constructionMode": "world-positions",
"previousConstructionMode": "world-positions",
"constructionModeMatch": true,
"dimensionsMatch": true,
"placementMatch": true,
"cellToPointMappingMatch": true,
"proofCostMs": 0.19999998807907104,
"estimatedRetainedCpuLayoutBytes": 2088900
},
"sceneReactiveToSyncQueuedMs": 0,
"sceneSyncQueuedToStartMs": 0.10000002384185791,
"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,
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "refreshed-proof-safe",
"renderLayoutReuseDecisionMs": 3.300000011920929,
"renderLayoutReuseKeyMs": 0.19999998807907104,
"renderLayoutReuseSourceSignatureMs": 0.10000002384185791,
"renderLayoutReusePositionsSignatureMs": 0,
"renderLayoutReusePositionsSignatureCacheHit": true,
"renderLayoutReuseFrameCacheLookupMs": 0.09999996423721313,
"renderLayoutReuseFrameDerivationMs": 0,
"renderLayoutReuseFrameCacheHit": true,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseKeyMatch": true,
"renderLayoutReuseProofSource": "refreshed-runtime-proof",
"renderLayoutReusePreviousKey": "Ben-Gurion/20250815_grid_2m_fullday|v1:5a906203|495|211|0|0|-0.050000000111758605",
"renderLayoutReusePreviousRequestId": 1,
"renderLayoutReusePreviousSelectionKey": "Ben-Gurion/20250815_grid_2m_fullday|7|0",
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "updated",
"totalMs": 0.5,
"recreateDecision": {
"missingSurface": false,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": true
},
"updateComputeBufferSurfaceRangeUniformMs": 0,
"updateComputeBufferSurfacePendingSourceMs": 0,
"updateComputeBufferSurfaceLayoutUserDataMs": 0,
"updateComputeBufferSurfaceByteAccountingMs": 0,
"updateComputeBufferSurfaceMeshMs": 0.19999998807907104,
"fallbackDecisionMs": 0,
"applySurfaceMeshStateMs": 0.30000001192092896,
"setPostSurfacePendingStorageInitMs": 0
},
"sceneSurfacePendingStorageInitAtMs": 4537.699999988079,
"renderStorageWaitStartedAtMs": 4537.799999952316,
"renderStoragePreWaitMs": 3.899999976158142,
"renderStorageWaitTrace": {
"waitStartedAtMs": 4537.799999952316,
"waitFinishedAtMs": 4537.799999952316,
"waitMs": 0,
"readAttemptCount": 1,
"frameWaitCount": 0,
"deviceAvailableCount": 1,
"backendEntryAvailableCount": 1,
"bufferAvailableCount": 1,
"firstDeviceAtMs": 4537.799999952316,
"firstBackendEntryAtMs": 4537.799999952316,
"firstBufferAtMs": 4537.799999952316,
"lastReadState": {
"deviceAvailable": true,
"backendEntryAvailable": true,
"bufferAvailable": true
},
"samples": [
{
"atMs": 4537.799999952316,
"deviceAvailable": true,
"backendEntryAvailable": true,
"bufferAvailable": true
}
]
},
"sceneSyncResetHistory": [
{
"resetAtMs": 3001.199999988079,
"resetReason": "dispose-utci-surface",
"invalidateActiveRun": true,
"previousCopyRunToken": 0,
"nextCopyRunToken": 1
}
],
"sceneSyncActiveWindowResetHistory": [],
"sessionDebugReadbackStartedAtMs": 4510.299999952316,
"sessionDebugReadbackCompletedAtMs": 4532.399999976158,
"sessionSelectedHourRangeScanStartedAtMs": 4532.5,
"sessionSelectedHourRangeScanCompletedAtMs": 4532.5,
"sessionRangeResolveStartedAtMs": 4532.5,
"sessionRangeResolveCompletedAtMs": 4532.5,
"sessionSelectedHourAnalysisBuildStartedAtMs": 4532.5,
"sessionSelectedHourAnalysisBuildCompletedAtMs": 4532.5,
"sessionCpuFallbackSetupStartedAtMs": 4532.599999964237,
"sessionCpuFallbackSetupCompletedAtMs": 4532.599999964237,
"sessionGpuResidentRangeResolveStartedAtMs": 4532.599999964237,
"sessionGpuResidentRangeResolveCompletedAtMs": 4532.599999964237,
"sessionTooltipValuesHandoffStartedAtMs": 4532.599999964237,
"sessionTooltipValuesHandoffCompletedAtMs": 4532.599999964237,
"sessionGpuResidentResultAssemblyStartedAtMs": 4532.599999964237,
"sessionGpuResidentResultAssemblyCompletedAtMs": 4532.599999964237,
"sessionResultReadyAtMs": 4532.699999988079,
"sessionResultReturnedAtMs": 4532.699999988079,
"controllerSessionRunStartedAtMs": 4500,
"controllerSessionRunCompletedAtMs": 4532.699999988079,
"controllerAcceptStartedAtMs": 4532.699999988079,
"computeCompletedAtMs": 4532.699999988079,
"selectedHourValuePublicationStartedAtMs": 4510.199999988079,
"controllerAcceptedAtMs": 4532.699999988079,
"controllerDiagnosticsMergedAtMs": 4532.799999952316,
"controllerStatePublishedAtMs": 4532.899999976158,
"scenePendingSurfaceObservedAtMs": 4533.799999952316,
"sceneReactiveBlockEnteredAtMs": 4533.799999952316,
"sceneRenderStateResolvedAtMs": 4533.799999952316,
"sceneAcceptedKeyResolvedAtMs": 4533.799999952316,
"sceneSyncInvocationQueuedAtMs": 4533.799999952316,
"sceneStartSyncEnteredAtMs": 4533.899999976158,
"sceneStartSyncReturnedAtMs": 4533.899999976158,
"sceneSyncAttemptStartedAtMs": 4533.899999976158,
"sceneSyncAttemptToken": 3,
"sceneSurfaceReceivedAtMs": 4533.799999952316,
"publicationEffectStartedAtMs": 4533.899999976158,
"sceneLayoutKeyStartedAtMs": 4533.899999976158,
"sceneLayoutKeyCompletedAtMs": 4534.199999988079,
"scenePublicationPlanReadyAtMs": 4537.199999988079,
"renderLayoutPublicationPlanMs": 3,
"renderLayoutCompatibilityMs": 2.5,
"renderLayoutCompatibilityRequiredExpensiveMappingComparison": false,
"renderLayoutCompatibilityPerformedExpensiveMappingComparison": false,
"renderLayoutReuseProofMs": 0.19999998807907104,
"renderStorageReadyAtMs": 4538.099999964237,
"renderBufferCopyEncoderCreateMs": 0,
"renderBufferCopyCommandRecordMs": 0,
"renderBufferCopySubmitMs": 0.10000002384185791,
"sceneSyncCompletedAtMs": 4543.899999976158,
"controllerVisibleAcknowledgedAtMs": 4544.199999988079,
"routePublishedAtMs": 4544.399999976158,
"routeProjectionEvaluationStartedAtMs": 4545,
"routePendingSurfaceExposedAtMs": 4533.5,
"routeProjectedAtMs": 4545,
"routeProjectionEvaluationCompletedAtMs": 4545
},
"renderPublicationPointCount": 104445,
"renderPublicationVertexCount": 105152,
"renderPublicationIndexCount": 626670,
"renderPublicationDrawIndexCount": 626670,
"renderPublicationGridWidth": 495,
"renderPublicationGridHeight": 211,
"renderPublicationGridSize": 2,
"renderPublicationSourceByteLength": 417780,
"renderPublicationTargetByteLength": 417780,
"renderPublicationRenderOwnedBytes": 4605088
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
},
"baseSameDeviceForComputeAndRender": true,
"selectedMonthIndex": 7,
"selectedHourIndex": 1,
"selectedTimeIndex": 169
}
},
"assertions": {
"pythonBinDebugComparisonFieldsAbsent": true,
"initialForbiddenComparisonFieldsPresent": [],
"scrubForbiddenComparisonFieldsPresent": [],
"allForbiddenRequestUrls": [],
"memoryScope": "utci-owned-webgpu-buffers"
}
},
{
"caseId": "ness-tziona-2m-chunked",
"projectLabel": "Ness-Tziona",
"analysisId": "Ness-Tziona/exploded/nes_tziona_unblock_2",
"gridResolutionMeters": 2,
"pointCount": 511840,
"sourceUrl": "/?analysis=Ness-Tziona%2Fexploded%2Fnes_tziona_unblock_2&utciRender=auto&utciRenderDiagnostics=1",
"initial": {
"firstVisibleMs": 4676.099999964237,
"timings": {
"payloadPrepareMs": null,
"workerBvhMs": null,
"pipelineUploadMs": null,
"exposurePrecomputeMs": 1537.0999999642372,
"exposureCommandEncodeTotalMs": 1.0999999046325684,
"exposureEncodeMs": null,
"exposureSolarEncodeMs": 0.6999999284744263,
"exposureSkyEncodeMs": 0.20000004768371582,
"exposureQueueWaitMs": 1521.0999999642372,
"exposurePointCount": 511840,
"exposureTotalTimeSteps": 288,
"exposureDaylightTimeSteps": 145,
"exposurePointChunks": 4,
"exposureSchedulerMode": "chunked",
"exposureSchedulerSliceCount": 4,
"exposurePointDispatchChunkCount": 4,
"exposureSchedulerMaxWorkgroupsPerSlice": 2048,
"exposureSchedulerQueueWaitTotalMs": 1521.0999999642372,
"exposureSchedulerQueueWaitMaxMs": 515.6999999880791,
"exposureSchedulerQueueWaitMinMs": 224.5,
"exposureSchedulerYieldCount": 3,
"exposureSchedulerSubmitCount": 4,
"exposureSolarDispatchCount": 4,
"exposureSkyDispatchCount": 4,
"exposureSolarRayBudget": 74216800,
"exposureSkyRayBudget": 74216800,
"oneHourDispatchMs": 4.600000023841858,
"firstSelectedHourReadyMs": 2549.300000011921,
"firstSelectedHourVisibleMs": 2015.199999988079,
"renderUpdateMs": 273.7999999523163,
"renderSceneSyncStartDelayMs": 133.29999995231628,
"renderSceneSyncTotalMs": 139.70000004768372,
"renderLayoutBuildMs": 32.60000002384186,
"renderSurfaceMeshMs": 20.099999964237213,
"renderStorageInitWaitMs": 24.700000047683716,
"renderBufferCopyMs": 0.19999998807907104,
"renderQueueDrainMs": 42.10000002384186
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "initial",
"renderPublicationMeshAction": "created",
"renderPublicationTimeline": {
"sessionComputeOutputReturnedAtMs": 4402.300000011921,
"sessionDiagnosticsAppliedAtMs": 4402.300000011921,
"sessionGpuOutputHandleReadyAtMs": 4402.300000011921,
"sessionPreferGpuResidentResolvedAtMs": 4402.300000011921,
"renderLayoutBuildTrace": {
"totalMs": 32.39999997615814,
"arrayAllocationMs": 0.09999996423721313,
"transformBoundsPassMs": 14.199999988079071,
"coordinateAssignmentMs": 6.800000011920929,
"indexToTexelFillMs": 4.100000023841858,
"cellToPointIndexBuildMs": 6.399999976158142,
"colorBufferAllocationMs": 0.10000002384185791
},
"renderLayoutReuseProofTrace": {
"decision": "rebuild-required",
"hoverCellLookupProofStatus": "proof-inconclusive",
"previousLayoutPresent": false,
"canonicalRuntimeCompatibilityWouldReuse": null,
"proofMatchesCanonicalRuntimeCompatibility": null,
"positionsReferenceMatch": null,
"pointCountMatch": null,
"gridSizeMatch": null,
"coordinateSystemMatch": null,
"normalizationSignature": {
"enabled": true,
"offset": {
"x": 1327.1756591796875,
"y": -1.5,
"z": -123.610595703125
},
"provenance": "anchor-offset-minus-origin"
},
"previousNormalizationSignature": null,
"normalizationSignatureMatch": null,
"constructionMode": "world-positions",
"previousConstructionMode": null,
"constructionModeMatch": null,
"dimensionsMatch": null,
"placementMatch": null,
"cellToPointMappingMatch": null,
"proofCostMs": 0,
"estimatedRetainedCpuLayoutBytes": 10236800
},
"sceneReactiveToSyncQueuedMs": 0.10000002384185791,
"sceneSyncQueuedToStartMs": 0.09999996423721313,
"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,
"renderLayoutReuseAction": "build-required",
"renderLayoutReuseReason": "initial-publication",
"renderLayoutReuseDecisionMs": 52.200000047683716,
"renderLayoutReuseKeyMs": 19.399999976158142,
"renderLayoutReuseSourceSignatureMs": 3.399999976158142,
"renderLayoutReusePositionsSignatureMs": 3.199999988079071,
"renderLayoutReusePositionsSignatureCacheHit": false,
"renderLayoutReuseFrameCacheLookupMs": 16,
"renderLayoutReuseFrameDerivationMs": 15.899999976158142,
"renderLayoutReuseFrameCacheHit": false,
"renderLayoutReuseFrameCacheKind": "miss",
"renderLayoutReuseKeyMatch": false,
"renderLayoutReuseProofSource": "fresh-build-proof",
"renderLayoutReusePreviousKey": null,
"renderLayoutReusePreviousRequestId": null,
"renderLayoutReusePreviousSelectionKey": null,
"activeLayoutCandidateCount": 1,
"renderSurfaceMeshTrace": {
"action": "created",
"totalMs": 20.099999964237213,
"recreateDecision": {
"missingSurface": true,
"notComputeBufferSurface": false,
"analysisIdentityChanged": true,
"layoutCompatible": false
},
"disposeResetMeshRemovalMs": 0,
"createComputeBufferSurfacePositionArrayAllocMs": 0,
"createComputeBufferSurfaceIndexArrayAllocMs": 0,
"createComputeBufferSurfacePositionArrayFillMs": 4.900000035762787,
"createComputeBufferSurfaceIndexArrayFillMs": 9.199999988079071,
"createComputeBufferSurfaceGeometryAttributeAttachMs": 0,
"createComputeBufferSurfaceBoundsMs": 0,
"createComputeBufferSurfaceUtciStorageAllocMs": 0,
"createComputeBufferSurfaceCellToPointAllocFillMs": 4.399999976158142,
"createComputeBufferSurfaceColorLutSetupMs": 0.3999999761581421,
"createComputeBufferSurfaceMaterialSetupMs": 0.5,
"createComputeBufferSurfaceMeshConstructMs": 0,
"createComputeBufferSurfaceByteAccountingMs": 0,
"createComputeBufferSurfaceGeometryBytes": 18443940,
"createComputeBufferSurfaceUtciStorageBytes": 2047360,
"createComputeBufferSurfaceCellToPointBytes": 2047360,
"createComputeBufferSurfaceColorLutBytes": 1024,
"createComputeBufferSurfaceMeshMs": 19.899999976158142,
"applySurfaceMeshStateMs": 0,
"setCreatedSurfacePendingStorageInitMs": 0.10000002384185791,
"sceneAddMs": 0,
"publishUtciSurfaceDiagnosticsMs": 0,
"setPostSurfacePendingStorageInitMs": 0
},
"sceneSurfacePendingStorageInitAtMs": 4607.899999976158,
"renderStorageWaitStartedAtMs": 4608.099999964237,
"renderStoragePreWaitMs": 72.5,
"renderStorageWaitTrace": {
"waitStartedAtMs": 4608.099999964237,
"waitFinishedAtMs": 4632.800000011921,
"waitMs": 24.700000047683716,
"readAttemptCount": 2,
"frameWaitCount": 1,
"deviceAvailableCount": 2,
"backendEntryAvailableCount": 2,
"bufferAvailableCount": 1,
"firstDeviceAtMs": 4608.099999964237,
"firstBackendEntryAtMs": 4608.099999964237,
"firstBufferAtMs": 4632.800000011921,
"lastReadState": {
"deviceAvailable": true,
"backendEntryAvailable": true,
"bufferAvailable": true
},
"samples": [
{
"atMs": 4608.099999964237,
"deviceAvailable": true,
"backendEntryAvailable": true,
"bufferAvailable": false
},
{
"atMs": 4632.800000011921,
"deviceAvailable": true,
"backendEntryAvailable": true,
"bufferAvailable": true
}
]
},
"sceneSyncResetHistory": [
{
"resetAtMs": 1984,
"resetReason": "dispose-utci-surface",
"invalidateActiveRun": true,
"previousCopyRunToken": 0,
"nextCopyRunToken": 1
}
],
"sceneSyncActiveWindowResetHistory": [],
"sessionDebugReadbackStartedAtMs": 4402.300000011921,
"sessionDebugReadbackCompletedAtMs": 4407.199999988079,
"sessionSelectedHourRangeScanStartedAtMs": 4407.300000011921,
"sessionSelectedHourRangeScanCompletedAtMs": 4407.399999976158,
"sessionRangeResolveStartedAtMs": 4407.5,
"sessionRangeResolveCompletedAtMs": 4533.5,
"sessionSelectedHourAnalysisBuildStartedAtMs": 4533.599999964237,
"sessionSelectedHourAnalysisBuildCompletedAtMs": 4533.599999964237,
"sessionCpuFallbackSetupStartedAtMs": 4533.599999964237,
"sessionCpuFallbackSetupCompletedAtMs": 4533.599999964237,
"sessionGpuResidentRangeResolveStartedAtMs": 4533.699999988079,
"sessionGpuResidentRangeResolveCompletedAtMs": 4533.699999988079,
"sessionTooltipValuesHandoffStartedAtMs": 4533.699999988079,
"sessionTooltipValuesHandoffCompletedAtMs": 4533.699999988079,
"sessionGpuResidentResultAssemblyStartedAtMs": 4533.699999988079,
"sessionGpuResidentResultAssemblyCompletedAtMs": 4533.699999988079,
"sessionResultReadyAtMs": 4533.800000011921,
"sessionResultReturnedAtMs": 4533.800000011921,
"controllerSessionRunStartedAtMs": 2660.899999976158,
"controllerSessionRunCompletedAtMs": 4533.899999976158,
"controllerAcceptStartedAtMs": 4533.899999976158,
"computeCompletedAtMs": 4533.899999976158,
"selectedHourValuePublicationStartedAtMs": 4402.300000011921,
"controllerAcceptedAtMs": 4533.899999976158,
"controllerDiagnosticsMergedAtMs": 4533.899999976158,
"controllerStatePublishedAtMs": 4534,
"scenePendingSurfaceObservedAtMs": 4535.5,
"sceneReactiveBlockEnteredAtMs": 4535.399999976158,
"sceneRenderStateResolvedAtMs": 4535.399999976158,
"sceneAcceptedKeyResolvedAtMs": 4535.399999976158,
"sceneSyncInvocationQueuedAtMs": 4535.5,
"sceneStartSyncEnteredAtMs": 4535.599999964237,
"sceneStartSyncReturnedAtMs": 4535.599999964237,
"sceneSyncAttemptStartedAtMs": 4535.599999964237,
"sceneSyncAttemptToken": 2,
"sceneSurfaceReceivedAtMs": 4535.599999964237,
"publicationEffectStartedAtMs": 4535.599999964237,
"sceneLayoutKeyStartedAtMs": 4535.599999964237,
"sceneLayoutKeyCompletedAtMs": 4555.199999988079,
"scenePublicationPlanReadyAtMs": 4587.800000011921,
"renderLayoutPublicationPlanMs": 32.60000002384186,
"renderLayoutCompatibilityMs": 0,
"renderLayoutReuseProofMs": 0,
"renderStorageReadyAtMs": 4632.800000011921,
"renderBufferCopyEncoderCreateMs": 0,
"renderBufferCopyCommandRecordMs": 0,
"renderBufferCopySubmitMs": 0.19999998807907104,
"sceneSyncCompletedAtMs": 4675.300000011921,
"controllerVisibleAcknowledgedAtMs": 4676.099999964237,
"routePublishedAtMs": 4676.399999976158,
"routeProjectionEvaluationStartedAtMs": 4677.199999988079,
"routePendingSurfaceExposedAtMs": 4534.899999976158,
"routeProjectedAtMs": 4677.199999988079,
"routeProjectionEvaluationCompletedAtMs": 4677.199999988079
},
"renderPublicationPointCount": 511840,
"renderPublicationVertexCount": 513315,
"renderPublicationIndexCount": 3071040,
"renderPublicationDrawIndexCount": 3071040,
"renderPublicationGridWidth": 560,
"renderPublicationGridHeight": 914,
"renderPublicationGridSize": 2,
"renderPublicationSourceByteLength": 2047360,
"renderPublicationTargetByteLength": 2047360,
"renderPublicationRenderOwnedBytes": 22539684
},
"proof": {
"rendererBackend": "webgpu",
"utciRenderResolved": "gpuNative",
"utciSurfaceSource": "compute-buffer-selected-hour",
"baseRenderTransport": "compute-buffer-selected-hour",
"dataTextureBuildCount": 0,
"selectedHourRuntimeContract": {
"route": "main",
"readbackInstrumentation": "instrumented",
"visibleSelectedHourReadbackCount": 0,
"strongVisibleGpuPath": true
},
"baseSameDeviceForComputeAndRender": true,
"selectedMonthIndex": 7,
"selectedHourIndex": 0,
"selectedTimeIndex": 168
}
},
"firstPostVisibleScrub": {
"selectedHourIndex": 1,
"selectedTimeIndex": 169,
"visibleMs": 110.84929999999986,
"surfaceRequestId": 2,
"timings": {
"payloadPrepareMs": null,
"workerBvhMs": null,
"pipelineUploadMs": null,
"exposurePrecomputeMs": 1537.0999999642372,
"exposureCommandEncodeTotalMs": 1.0999999046325684,
"exposureEncodeMs": null,
"exposureSolarEncodeMs": 0.6999999284744263,
"exposureSkyEncodeMs": 0.20000004768371582,
"exposureQueueWaitMs": 1521.0999999642372,
"exposurePointCount": 511840,
"exposureTotalTimeSteps": 288,
"exposureDaylightTimeSteps": 145,
"exposurePointChunks": 4,
"exposureSchedulerMode": "chunked",
"exposureSchedulerSliceCount": 4,
"exposurePointDispatchChunkCount": 4,
"exposureSchedulerMaxWorkgroupsPerSlice": 2048,
"exposureSchedulerQueueWaitTotalMs": 1521.0999999642372,
"exposureSchedulerQueueWaitMaxMs": 515.6999999880791,
"exposureSchedulerQueueWaitMinMs": 224.5,
"exposureSchedulerYieldCount": 3,
"exposureSchedulerSubmitCount": 4,
"exposureSolarDispatchCount": 4,
"exposureSkyDispatchCount": 4,
"exposureSolarRayBudget": 74216800,
"exposureSkyRayBudget": 74216800,
"oneHourDispatchMs": 2.399999976158142,
"firstSelectedHourReadyMs": 12.800000011920929,
"firstSelectedHourVisibleMs": 22.600000023841858,
"renderUpdateMs": 20,
"renderSceneSyncStartDelayMs": 11.699999988079071,
"renderSceneSyncTotalMs": 8,
"renderLayoutBuildMs": 0,
"renderSurfaceMeshMs": 0.19999998807907104,
"renderStorageInitWaitMs": 0.10000002384185791,
"renderBufferCopyMs": 0,
"renderQueueDrainMs": 4.100000023841858
},
"renderPublication": {
"renderPublicationVersion": 1,
"renderPublicationPath": "compute-buffer-selected-hour",
"renderPublicationPhase": "scrub",
"renderPublicationMeshAction": "reused",
"renderPublicationTimeline": {
"sessionComputeOutputReturnedAtMs": 4773.800000011921,
"sessionDiagnosticsAppliedAtMs": 4773.800000011921,
"sessionGpuOutputHandleReadyAtMs": 4773.800000011921,
"sessionPreferGpuResidentResolvedAtMs": 4773.800000011921,
"renderLayoutBuildTrace": null,
"renderLayoutReuseProofTrace": {
"decision": "reuse-safe",
"hoverCellLookupProofStatus": "same-point-confirmed",
"previousLayoutPresent": true,
"canonicalRuntimeCompatibilityWouldReuse": true,
"proofMatchesCanonicalRuntimeCompatibility": true,
"positionsReferenceMatch": true,
"pointCountMatch": true,
"gridSizeMatch": true,
"coordinateSystemMatch": true,
"normalizationSignature": {
"enabled": true,
"offset": {
"x": 1327.1756591796875,
"y": -1.5,
"z": -123.610595703125
},
"provenance": "anchor-offset-minus-origin"
},
"previousNormalizationSignature": {
"enabled": true,
"offset": {
"x": 1327.1756591796875,
"y": -1.5,
"z": -123.610595703125
},
"provenance": "anchor-offset-minus-origin"
},
"normalizationSignatureMatch": true,
"constructionMode": "world-positions",
"previousConstructionMode": "world-positions",
"constructionModeMatch": true,
"dimensionsMatch": true,
"placementMatch": true,
"cellToPointMappingMatch": true,
"proofCostMs": 0,
"estimatedRetainedCpuLayoutBytes": 10236800
},
"sceneReactiveToSyncQueuedMs": 0,
"sceneSyncQueuedToStartMs": 0.19999998807907104,
"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,
"renderLayoutReuseAction": "reused",
"renderLayoutReuseReason": "refreshed-proof-safe",
"renderLayoutReuseDecisionMs": 3.399999976158142,
"renderLayoutReuseKeyMs": 0.09999996423721313,
"renderLayoutReuseSourceSignatureMs": 0,
"renderLayoutReusePositionsSignatureMs": 0,
"renderLayoutReusePositionsSignatureCacheHit": true,
"renderLayoutReuseFrameCacheLookupMs": 0.09999996423721313,
"renderLayoutReuseFrameDerivationMs": 0,
"renderLayoutReuseFrameCacheHit": true,
"renderLayoutReuseFrameCacheKind": "structural",
"renderLayoutReuseKeyMatch": true,
"renderLayoutReuseProofSource": "refreshed-runtime-proof",