| 562 | } |
| 563 | |
| 564 | static void floor_alloc_host_stack_memory() { |
| 565 | if (!floor_stack_memory_data) { |
| 566 | floor_stack_memory_data = make_aligned_ptr<uint8_t>(floor_max_thread_count * item_stack_size * host_limits::max_total_local_size); |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | // |
| 571 | host_function::host_function(const std::string_view function_name_, const void* function_, host_function_entry&& entry_) : |