taichi-dev / taichi

Productive, portable, and performant GPU programming in Python.
https://taichi-lang.org
Apache License 2.0
25.38k stars 2.27k forks source link

GGUI issues on Intel graphics card #4919

Closed ailzhang closed 2 years ago

ailzhang commented 2 years ago

This is a central place to list known issues about GGUI crashing on Intel graphics cards.

If you've seen similar issues, please feel free to comment below!

neozhaoliang commented 2 years ago

Below is the result of running ggui_mpm3d, no error message but a blank window. The window crashes adter a few seconds.

2022-05-06 16-51-08屏幕截图

AmesingFlank commented 2 years ago

@neozhaoliang

What error message is shown when the window crashes? Notice that "无响应" doesn't mean that it crashed. This is an extremely heavy example, so it's probably still loading when the "无响应" pop-up is shown.

grassFlamingo commented 2 years ago

There is the same problem in Ubuntu 20.04 LTS. My environments are listed as follows: [Taichi] version 1.0.0, llvm 10.0.0, commit 6a15da85, linux, python 3.10.4 [Taichi] Starting on arch=vulkan [vulkan_device_creator.cpp:pick_physical_device@356] Found Vulkan Device 0 (Intel(R) UHD Graphics 630 (CFL GT2))

grassFlamingo commented 2 years ago

I found that ti.GUI works. Can we replace the line 117-119 of 'voxel-challenge/scene.py',

 117:       self.window = ti.ui.Window("Taichi Voxel Renderer",
 118:                                 SCREEN_RES,
 119:                                  vsync=True)

with

    self.window = ti.GUI("Taichi Voxel Renderer", SCREEN_RES) 

replace line 186

186:  canvas.set_image(img)

with

    self.window.set_image(img)

and replace 'Camera._update_by_wasd'

83:        for key, d in lut:
84:           if win.is_pressed(key):
85:                pressed = True
86:                dir += np.array(d)

with

       for e in win.get_events(ti.GUI.PRESS):
            for key, d in lut:
                if e.key == key:
                    pressed = True
                    dir += np.array(d)

? I know this is against the rules.

neozhaoliang commented 2 years ago

@grassFlamingo Do you mean that you can run ggui after making the changes you listed above?

grassFlamingo commented 2 years ago

@neozhaoliang [Voxel challenge only] Thank you. There are two GUI systems in taichi. The first one is the ti.GUI and the second one is the GGUI (ti.ui.Window). I can't run the GGUI either. The code above is to run the ti.GUI system.

bobcao3 commented 2 years ago

@grassFlamingo

Can you try to run the GGUI mpm128 sample and hopefully that gives some error logs? Also please run it like this, so that we get more information:

TI_LOG_LEVEL=trace TI_ARCH=vulkan python ...../mpm128_ggui.py
grassFlamingo commented 2 years ago

@bobcao3 Thank you. This is my log.

TI_LOG_LEVEL=trace TI_ARCH=vulkan ti example mpm128_ggui
[I 05/10/22 10:00:00.658 8299] [misc.py:init@436] Following TI_ARCH setting up for arch=vulkan
[T 05/10/22 10:00:00.658 8299] [program.cpp:Program@51] Program initializing...
[T 05/10/22 10:00:00.658 8299] [memory_pool.cpp:MemoryPool@14] Memory pool created. Default buffer size per allocator = 1024 MB
[T 05/10/22 10:00:00.658 8299] [program.cpp:Program@163] Program (0x55bfb62f39f0) arch=vulkan initialized.
[T 05/10/22 10:00:00.658 8299] [misc.py:init@456] Materializing runtime...
[T 05/10/22 10:00:00.658 8299] [unified_allocator.cpp:UnifiedAllocator@36] Allocating virtual address space of size 1024 MB
[T 05/10/22 10:00:00.658 8299] [unified_allocator.cpp:UnifiedAllocator@45] Memory allocated. Allocation time = 1.19e-05 s
[T 05/10/22 10:00:00.658 8299] [unified_allocator.h:allocate@39] UM [data=140445900341248] allocate() request=256 remain=1073741824
[T 05/10/22 10:00:00.675 8299] [vulkan_program.cpp:operator()@132] before glfwCreateWindowSurface 0x55bfb636a450 0x55bfb63fa970
[I 05/10/22 10:00:00.677 8299] [vulkan_device_creator.cpp:pick_physical_device@363] Found Vulkan Device 0 (Intel(R) UHD Graphics 630 (CFL GT2))
[I 05/10/22 10:00:00.677 8299] [vulkan_device_creator.cpp:pick_physical_device@363] Found Vulkan Device 1 (llvmpipe (LLVM 12.0.0, 256 bits))
[I 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@431] Vulkan Device "Intel(R) UHD Graphics 630 (CFL GT2)" supports Vulkan 0 version 1.2.182
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_8bit_storage (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_16bit_storage (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_bind_memory2 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_buffer_device_address (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_copy_commands2 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_create_renderpass2 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_dedicated_allocation (3)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_deferred_host_operations (4)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_depth_stencil_resolve (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_descriptor_update_template (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_device_group (4)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_draw_indirect_count (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_driver_properties (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_external_fence (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_external_fence_fd (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_external_memory (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_external_memory_fd (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_external_semaphore (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_external_semaphore_fd (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_get_memory_requirements2 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_image_format_list (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_imageless_framebuffer (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_incremental_present (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_maintenance1 (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_maintenance2 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_maintenance3 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_multiview (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_pipeline_executable_properties (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_push_descriptor (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_relaxed_block_layout (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_sampler_mirror_clamp_to_edge (3)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_sampler_ycbcr_conversion (14)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_separate_depth_stencil_layouts (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_atomic_int64 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_clock (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_draw_parameters (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_float16_int8 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_float_controls (4)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_non_semantic_info (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_subgroup_extended_types (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_subgroup_uniform_control_flow (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_shader_terminate_invocation (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_spirv_1_4 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_storage_buffer_storage_class (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_swapchain (70)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_swapchain_mutable_format (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_timeline_semaphore (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_uniform_buffer_standard_layout (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_variable_pointers (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_vulkan_memory_model (3)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_workgroup_memory_explicit_layout (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_KHR_zero_initialize_workgroup_memory (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_4444_formats (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_buffer_device_address (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_calibrated_timestamps (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_color_write_enable (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_conditional_rendering (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_conservative_rasterization (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_custom_border_color (12)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_depth_clip_enable (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_descriptor_indexing (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_display_control (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_extended_dynamic_state (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_extended_dynamic_state2 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_external_memory_dma_buf (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_external_memory_host (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_fragment_shader_interlock (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_global_priority (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_host_query_reset (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_image_drm_format_modifier (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_image_robustness (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_index_type_uint8 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_inline_uniform_block (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_line_rasterization (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_memory_budget (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_multi_draw (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_pci_bus_info (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_physical_device_drm (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_pipeline_creation_cache_control (3)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_pipeline_creation_feedback (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_post_depth_coverage (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_private_data (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_provoking_vertex (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_queue_family_foreign (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_robustness2 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_sample_locations (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_sampler_filter_minmax (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_scalar_block_layout (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_separate_stencil_usage (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_shader_atomic_float (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_shader_demote_to_helper_invocation (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_shader_stencil_export (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_shader_subgroup_ballot (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_shader_subgroup_vote (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_shader_viewport_index_layer (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_subgroup_size_control (2)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_texel_buffer_alignment (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_transform_feedback (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_vertex_attribute_divisor (3)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_EXT_ycbcr_image_arrays (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_GOOGLE_decorate_string (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_GOOGLE_hlsl_functionality1 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_GOOGLE_user_type (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_INTEL_shader_integer_functions2 (1)
[T 05/10/22 10:00:00.678 8299] [vulkan_device_creator.cpp:create_logical_device@461] Vulkan device extension VK_NV_compute_shader_derivatives (1)
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_physical_storage_buffer (22) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_int8 (6) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_float16 (9) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_atomic_float (15) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_variable_ptr (21) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_subgroup_arithmetic (25) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::vk_has_external_memory (2) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_version (5) = 66816
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_subgroup_vote (24) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::vk_has_physical_features2 (1) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::vk_api_version (0) = 4202678
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_subgroup_basic (23) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_subgroup_ballot (26) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::vk_has_surface (3) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::wide_lines (27) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::vk_has_presentation (4) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_int16 (7) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_int64 (8) = 1
[T 05/10/22 10:00:00.680 8299] [device.cpp:print_all_cap@139] DeviceCapability::spirv_has_float64 (10) = 1
[T 05/10/22 10:00:00.715 8299] [hacked_signal_handler.cpp:HackedSignalRegister@62] Taichi signal handlers registered. Thread ID = 8299
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S2
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=2
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S2 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S3
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=3
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S3 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S1 (is_place=false)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=131072
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S5
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=5
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S5 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S6
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=6
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S6 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S4 (is_place=false)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=131072
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S8
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=8
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S8 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S9
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=9
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S9 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S10
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=10
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S10 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S11
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=11
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S11 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S7
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=7
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S7 (is_place=false)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=16
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=262144
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S13
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=13
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S13 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S14 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S15
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=15
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S15 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S16
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=16
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S16 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S12
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=12
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S12 (is_place=false)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=16
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=262144
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S18
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=18
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S18 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S17
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=17
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S17 (is_place=false)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=65536
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S20
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=20
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S20 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S19
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=19
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S19 (is_place=false)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=65536
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=9000
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S22
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..7
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 7..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=22
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S22 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S23
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..7
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 7..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=23
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S23 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S21
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..7
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 7..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=21
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S21 (is_place=false)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=131072
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S25
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..7
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 7..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=25
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S25 (is_place=true)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S24
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..7
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 7..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 14..14
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=24
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S24 (is_place=false)
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=65536
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=16384
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S27
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.748 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=27
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S27 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S28
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=28
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S28 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S26
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=26
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S26 (is_place=false)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S30
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=30
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S30 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S29
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=29
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S29 (is_place=false)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S32
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=32
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S32 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S33
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=33
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S33 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S31
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=31
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S31 (is_place=false)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S35
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=35
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S35 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S36
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=36
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S36 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S34
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=34
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S34 (is_place=false)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=4096
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=32768
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S38
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=38
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S38 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S39
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=39
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S39 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S37
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=37
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S37 (is_place=false)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=4096
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=32768
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S41
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=41
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S41 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S42
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=42
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S42 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S40
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=40
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S40 (is_place=false)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=4096
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=32768
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S44
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=44
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S44 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S45
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=45
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S45 (is_place=true)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S43
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=43
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S43 (is_place=false)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=8
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=0
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S0 (is_place=false)
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=1212444
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=1212444
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.749 8299] [snode_struct_compiler.cpp:run@17] RootBuffer size=1212444
[T 05/10/22 10:00:00.751 8299] [kernel_impl.py:materialize@492] Compiling kernel reset_c58_0...
[T 05/10/22 10:00:00.764 8299] [constant_fold.cpp:get_jit_evaluator_kernel@68] Saving JIT evaluator cache entry id=15274724004142056719
[T 05/10/22 10:00:00.764 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=jit_evaluator_0_k0000_vk
[T 05/10/22 10:00:00.764 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.764 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.764 8299] [kernel_utils.cpp:operator()@108]   at=scalar 1 offset_in_mem=4 stride=4
[T 05/10/22 10:00:00.764 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.764 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.764 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=8 rets=4
[T 05/10/22 10:00:00.764 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.765 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2032, after=2032
[T 05/10/22 10:00:00.765 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline jit_evaluator_0_k0000_vk_0_t00
[T 05/10/22 10:00:00.768 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=reset_c58_0_k0001_vk
[T 05/10/22 10:00:00.768 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.768 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.768 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=0 rets=0
[T 05/10/22 10:00:00.768 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.768 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = global_tmps_buffer, value = 47
[T 05/10/22 10:00:00.768 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 156
[T 05/10/22 10:00:00.770 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=1725, after=1526
[T 05/10/22 10:00:00.770 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline reset_c58_0_k0001_vk_0_t00
[T 05/10/22 10:00:00.771 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=snode_writer_27_k0002_vk
[T 05/10/22 10:00:00.771 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.771 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.771 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.771 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=4 rets=0
[T 05/10/22 10:00:00.771 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.771 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 51
[T 05/10/22 10:00:00.772 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2090, after=2031
[T 05/10/22 10:00:00.772 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline snode_writer_27_k0002_vk_0_t00
[T 05/10/22 10:00:00.773 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=snode_writer_28_k0003_vk
[T 05/10/22 10:00:00.773 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.773 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.773 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.773 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=4 rets=0
[T 05/10/22 10:00:00.773 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.773 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 52
[T 05/10/22 10:00:00.774 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2094, after=2039
[T 05/10/22 10:00:00.774 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline snode_writer_28_k0003_vk_0_t00
[T 05/10/22 10:00:00.776 8299] [constant_fold.cpp:get_jit_evaluator_kernel@68] Saving JIT evaluator cache entry id=15274724004142056704
[T 05/10/22 10:00:00.777 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=jit_evaluator_1_k0004_vk
[T 05/10/22 10:00:00.777 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.777 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.777 8299] [kernel_utils.cpp:operator()@108]   at=scalar 1 offset_in_mem=4 stride=4
[T 05/10/22 10:00:00.777 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.777 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.777 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=8 rets=4
[T 05/10/22 10:00:00.777 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.777 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2022, after=2022
[T 05/10/22 10:00:00.777 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline jit_evaluator_1_k0004_vk_0_t00
[T 05/10/22 10:00:00.777 8299] [constant_fold.cpp:get_jit_evaluator_kernel@68] Saving JIT evaluator cache entry id=15274724004142056705
[T 05/10/22 10:00:00.778 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=jit_evaluator_2_k0005_vk
[T 05/10/22 10:00:00.778 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.778 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.778 8299] [kernel_utils.cpp:operator()@108]   at=scalar 1 offset_in_mem=4 stride=4
[T 05/10/22 10:00:00.778 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.778 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.778 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=8 rets=4
[T 05/10/22 10:00:00.778 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.778 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2022, after=2022
[T 05/10/22 10:00:00.778 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline jit_evaluator_2_k0005_vk_0_t00
[T 05/10/22 10:00:00.779 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=snode_writer_44_k0006_vk
[T 05/10/22 10:00:00.779 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.779 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.779 8299] [kernel_utils.cpp:operator()@108]   at=scalar 1 offset_in_mem=4 stride=4
[T 05/10/22 10:00:00.779 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.779 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=8 rets=0
[T 05/10/22 10:00:00.779 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.779 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 51
[T 05/10/22 10:00:00.780 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2101, after=2042
[T 05/10/22 10:00:00.780 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline snode_writer_44_k0006_vk_0_t00
[T 05/10/22 10:00:00.781 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=snode_writer_45_k0007_vk
[T 05/10/22 10:00:00.782 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.782 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.782 8299] [kernel_utils.cpp:operator()@108]   at=scalar 1 offset_in_mem=4 stride=4
[T 05/10/22 10:00:00.782 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.782 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=8 rets=0
[T 05/10/22 10:00:00.782 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.782 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 52
[T 05/10/22 10:00:00.783 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2105, after=2050
[T 05/10/22 10:00:00.783 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline snode_writer_45_k0007_vk_0_t00
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S48
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=48
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S48 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S49
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=49
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S49 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S50
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=50
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S50 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S51
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=51
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S51 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S52
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=52
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S52 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S53
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=53
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S53 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S54
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=54
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S54 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S55
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=55
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S55 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S56
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=56
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S56 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S57
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=57
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S57 (is_place=true)
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.784 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S58
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=58
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S58 (is_place=true)
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S59
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=59
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S59 (is_place=true)
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S47
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=47
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S47 (is_place=false)
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=48
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=48
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S46
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=46
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S46 (is_place=false)
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=48
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=48
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:00.785 8299] [snode_struct_compiler.cpp:run@17] RootBuffer size=48
[T 05/10/22 10:00:00.785 8299] [kernel_impl.py:materialize@492] Compiling kernel copy_to_vbo_c44_0...
[T 05/10/22 10:00:00.794 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=copy_to_vbo_c44_0_k0008_vk
[T 05/10/22 10:00:00.794 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.794 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.794 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=0 rets=0
[T 05/10/22 10:00:00.794 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.794 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 59
[T 05/10/22 10:00:00.794 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_1, value = 78
[T 05/10/22 10:00:00.795 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=689, after=518
[T 05/10/22 10:00:00.795 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline copy_to_vbo_c44_0_k0008_vk_0_t00
[W 05/10/22 10:00:00.795 8299] [vulkan_device.cpp:buffer@615] Overriding last binding
[T 05/10/22 10:00:00.797 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=snode_writer_32_k0009_vk
[T 05/10/22 10:00:00.797 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.797 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.797 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.797 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=4 rets=0
[T 05/10/22 10:00:00.797 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.797 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 51
[T 05/10/22 10:00:00.798 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2090, after=2031
[T 05/10/22 10:00:00.798 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline snode_writer_32_k0009_vk_0_t00
[T 05/10/22 10:00:00.799 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=snode_writer_33_k0010_vk
[T 05/10/22 10:00:00.799 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.799 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.799 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.799 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=4 rets=0
[T 05/10/22 10:00:00.799 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.799 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 52
[T 05/10/22 10:00:00.800 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2094, after=2039
[T 05/10/22 10:00:00.800 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline snode_writer_33_k0010_vk_0_t00
[T 05/10/22 10:00:00.801 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=snode_writer_30_k0011_vk
[T 05/10/22 10:00:00.801 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:00.801 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:00.801 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:00.801 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=4 rets=0
[T 05/10/22 10:00:00.801 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:00.801 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 51
[T 05/10/22 10:00:00.802 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2090, after=2031
[T 05/10/22 10:00:00.802 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline snode_writer_30_k0011_vk_0_t00
[T 05/10/22 10:00:00.802 8299] [kernel_impl.py:materialize@492] Compiling kernel substep_c56_0...
[T 05/10/22 10:00:01.308 8299] [constant_fold.cpp:get_jit_evaluator_kernel@68] Saving JIT evaluator cache entry id=15274724004074684672
[T 05/10/22 10:00:01.308 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=jit_evaluator_3_k0012_vk
[T 05/10/22 10:00:01.308 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:01.308 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:01.308 8299] [kernel_utils.cpp:operator()@108]   at=scalar 1 offset_in_mem=4 stride=4
[T 05/10/22 10:00:01.308 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:01.308 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:01.308 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=8 rets=4
[T 05/10/22 10:00:01.308 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.308 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2022, after=2022
[T 05/10/22 10:00:01.308 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline jit_evaluator_3_k0012_vk_0_t00
[T 05/10/22 10:00:01.539 8299] [constant_fold.cpp:get_jit_evaluator_kernel@68] Saving JIT evaluator cache entry id=15274724004142056713
[T 05/10/22 10:00:01.539 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=jit_evaluator_4_k0013_vk
[T 05/10/22 10:00:01.539 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:01.539 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:01.539 8299] [kernel_utils.cpp:operator()@108]   at=scalar 1 offset_in_mem=4 stride=4
[T 05/10/22 10:00:01.539 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:01.539 8299] [kernel_utils.cpp:operator()@108]   at=scalar 0 offset_in_mem=0 stride=4
[T 05/10/22 10:00:01.539 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=8 rets=4
[T 05/10/22 10:00:01.539 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.539 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2022, after=2022
[T 05/10/22 10:00:01.540 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline jit_evaluator_4_k0013_vk_0_t00
[T 05/10/22 10:00:01.552 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=substep_c56_0_k0014_vk
[T 05/10/22 10:00:01.552 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:01.552 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:01.552 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=0 rets=0
[T 05/10/22 10:00:01.552 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.552 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 67
[T 05/10/22 10:00:01.553 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=668, after=570
[T 05/10/22 10:00:01.553 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.553 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 92
[T 05/10/22 10:00:01.554 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=9024, after=9024
[T 05/10/22 10:00:01.554 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.554 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 74
[T 05/10/22 10:00:01.555 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=2268, after=2268
[T 05/10/22 10:00:01.555 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.555 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 81
[T 05/10/22 10:00:01.555 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=4006, after=4006
[T 05/10/22 10:00:01.555 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline substep_c56_0_k0014_vk_0_t00
[T 05/10/22 10:00:01.556 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline substep_c56_0_k0014_vk_1_t01
[T 05/10/22 10:00:01.556 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline substep_c56_0_k0014_vk_2_t02
[T 05/10/22 10:00:01.557 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline substep_c56_0_k0014_vk_3_t03
[T 05/10/22 10:00:01.557 8299] [kernel_impl.py:materialize@492] Compiling kernel render_c60_0...
[T 05/10/22 10:00:01.562 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=render_c60_0_k0015_vk
[T 05/10/22 10:00:01.562 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:01.562 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:01.562 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=0 rets=0
[T 05/10/22 10:00:01.562 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.562 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 60
[T 05/10/22 10:00:01.563 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=1089, after=898
[T 05/10/22 10:00:01.563 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline render_c60_0_k0015_vk_0_t00
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S62
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=62
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S62 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S63
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=63
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S63 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S64
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=64
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S64 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S65
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=65
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S65 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S66
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=66
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S66 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S67
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=67
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S67 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S68
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=68
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S68 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S69
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=69
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S69 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S70
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=70
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S70 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S71
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=71
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S71 (is_place=true)
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S72
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.564 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=72
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S72 (is_place=true)
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S73
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=73
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S73 (is_place=true)
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S61
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=61
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S61 (is_place=false)
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=48
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=4096
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=196608
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S60
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=60
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S60 (is_place=false)
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=196608
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=196608
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.565 8299] [snode_struct_compiler.cpp:run@17] RootBuffer size=196608
[T 05/10/22 10:00:01.615 8299] [kernel_impl.py:materialize@492] Compiling kernel copy_to_vbo_c44_1...
[T 05/10/22 10:00:01.619 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=copy_to_vbo_c44_1_k0016_vk
[T 05/10/22 10:00:01.619 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:01.619 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:01.619 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=0 rets=0
[T 05/10/22 10:00:01.619 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.619 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 69
[T 05/10/22 10:00:01.619 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_2, value = 89
[T 05/10/22 10:00:01.620 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=787, after=674
[T 05/10/22 10:00:01.621 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline copy_to_vbo_c44_1_k0016_vk_0_t00
[W 05/10/22 10:00:01.621 8299] [vulkan_device.cpp:buffer@615] Overriding last binding
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S76
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=76
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S76 (is_place=true)
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S77
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.623 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=77
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S77 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S78
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=78
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S78 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S79
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=79
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S79 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S80
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=80
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S80 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S81
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=81
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S81 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S82
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=82
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S82 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S83
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=83
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S83 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S84
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=84
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S84 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S85
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=85
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S85 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S86
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=86
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S86 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S87
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=87
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S87 (is_place=true)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S75
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=75
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S75 (is_place=false)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=48
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=4096
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=196608
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S74
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=74
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S74 (is_place=false)
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=196608
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=196608
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.624 8299] [snode_struct_compiler.cpp:run@17] RootBuffer size=196608
[T 05/10/22 10:00:01.625 8299] [kernel_impl.py:materialize@492] Compiling kernel copy_to_vbo_c44_2...
[T 05/10/22 10:00:01.629 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=copy_to_vbo_c44_2_k0017_vk
[T 05/10/22 10:00:01.629 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:01.629 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:01.629 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=0 rets=0
[T 05/10/22 10:00:01.629 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.630 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 69
[T 05/10/22 10:00:01.630 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_3, value = 89
[T 05/10/22 10:00:01.631 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=787, after=674
[T 05/10/22 10:00:01.631 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline copy_to_vbo_c44_2_k0017_vk_0_t00
[W 05/10/22 10:00:01.631 8299] [vulkan_device.cpp:buffer@615] Overriding last binding
[T 05/10/22 10:00:01.633 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S90
[T 05/10/22 10:00:01.633 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.633 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.633 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.633 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.633 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=90
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S90 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S91
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=91
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S91 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S92
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=92
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S92 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S93
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=93
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S93 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S94
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=94
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S94 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S95
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=95
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S95 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S96
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=96
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S96 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S97
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=97
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S97 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S98
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=98
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S98 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S99
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=99
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S99 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S100
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=100
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S100 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S101
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=101
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S101 (is_place=true)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=4
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S89
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 12..12
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=89
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S89 (is_place=false)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=48
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=4096
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=196608
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=3000
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@80] Indices at SNode S88
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 0: 0..0
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 1: 0..0
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 2: 0..0
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 3: 0..0
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 4: 0..0
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 5: 0..0
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 6: 0..0
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@83] Index 7: 0..0
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@86] SNodeDescriptor
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@87] * snode=88
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@89] * type=S88 (is_place=false)
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@90] * cell_stride=196608
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@91] * cells_per_container_pot=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@92] * container_stride=196608
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@94] * total_num_cells_from_root=1
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:compute_snode_size@95] 
[T 05/10/22 10:00:01.634 8299] [snode_struct_compiler.cpp:run@17] RootBuffer size=196608
[T 05/10/22 10:00:01.635 8299] [kernel_impl.py:materialize@492] Compiling kernel copy_to_vbo_c44_3...
[T 05/10/22 10:00:01.639 8299] [runtime.cpp:run_codegen@629] VK codegen for Taichi kernel=copy_to_vbo_c44_3_k0018_vk
[T 05/10/22 10:00:01.639 8299] [kernel_utils.cpp:KernelContextAttributes@113] args:
[T 05/10/22 10:00:01.639 8299] [kernel_utils.cpp:KernelContextAttributes@118] rets:
[T 05/10/22 10:00:01.639 8299] [kernel_utils.cpp:KernelContextAttributes@121] sizes: args=0 rets=0
[T 05/10/22 10:00:01.639 8299] [spirv_ir_builder.cpp:init_header@17] SPIR-V Version 66816
[T 05/10/22 10:00:01.639 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_0, value = 69
[T 05/10/22 10:00:01.639 8299] [spirv_codegen.cpp:get_buffer_value@1887] buffer name = root_buffer_4, value = 89
[T 05/10/22 10:00:01.641 8299] [spirv_codegen.cpp:run@2146] SPIRV-Tools-opt: binary size, before=787, after=674
[T 05/10/22 10:00:01.641 8299] [vulkan_device.cpp:create_compute_pipeline@333] Compiling Vulkan pipeline copy_to_vbo_c44_3_k0018_vk_0_t00
[W 05/10/22 10:00:01.641 8299] [vulkan_device.cpp:buffer@615] Overriding last binding
FantasyVR commented 2 years ago

It's solved in https://github.com/KhronosGroup/MoltenVK/issues/1580#issuecomment-1122965111 and https://github.com/KhronosGroup/MoltenVK/pull/1593. Taichi uses brew installed libmoltenvk.dylib, so the problem couldn't be solved instantly.

TLTR: Solution 1: You could download a newly built libmoltenvk.dylib on my Mac and replace the old one in Taichi. The download link is here Solution 2: This problem started from MoltenVK 1.1.7. So Taichi could brew install MoltenVK 1.1.6 or an older version to solve this problem.

turbo0628 commented 2 years ago

Hi guys, how's this issue going with the latest master?

neozhaoliang commented 2 years ago

@turbo0628 For me it seems fixed now.

gh-xd commented 2 years ago

@turbo0628 For me it seems fixed now.

Hi, how did you fixed this? I am also tracking this issue , as I encountered the same issue days ago. Later I followed the instruction from @FantasyVR (Solution 1: replace local libmoltenvk.dylib with newly built one). But it is still not working :/

neozhaoliang commented 2 years ago

@gh-xd Could you try install and run with our nightly distribution? It's the most up-to-date one.

pip install -i https://pypi.taichi.graphics/simple/ taichi-nightly

Make sure you are importing this nightly verison, not your previously installed one.

gh-xd commented 2 years ago

@gh-xd Could you try install and run with our nightly distribution? It's the most up-to-date one.

pip install -i https://pypi.taichi.graphics/simple/ taichi-nightly

Make sure you are importing this nightly verison, not your previously installed one.

Thanks for your instant support! I tried nightly version just right away. The error info is different this time. As follows, I post the last two rows info:

[mvk-info] Created 2 swapchain images with initial size (1280, 960). GLFW Error 65537: The GLFW library is not initialized

Have I done things wrong, or should I need to open an new issue (didn't found GLFW error from current issue)?

ailzhang commented 2 years ago

@gh-xd IIRC GLFW Error 65537: The GLFW library is not initialized only shows up in the end when you terminate the window. Does the GUI show up correctly before that (if you wait for a few minutes)? Thanks!

gh-xd commented 2 years ago

@gh-xd IIRC GLFW Error 65537: The GLFW library is not initialized only shows up in the end when you terminate the window. Does the GUI show up correctly before that (if you wait for a few minutes)? Thanks!

Oh thanks for the tip. I noticed that the Window-icon appeared for 0.5 second in the tool-bar (MacOS), but no pop-up of GUI. Could it be a vs-code issue, as I met this kind of problem before...thanks!

A short supplement: GUI showed up unproblematically for demos using gui

grassFlamingo commented 2 years ago

@neozhaoliang Thank you. It works on my device (Ubuntu 20.04, Intel(R) UHD Graphics 630 (CFL GT2)) after installing the nightly version.
The canvas will be updated after waiting for about 10 ~ 12 seconds.

ailzhang commented 2 years ago

Closing as it's fixed.