|  | // Copyright 2021 The IREE Authors | 
|  | // | 
|  | // Licensed under the Apache License v2.0 with LLVM Exceptions. | 
|  | // See https://llvm.org/LICENSE.txt for license information. | 
|  | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | 
|  |  | 
|  | // A example of setting up a local-task device with the embedded ELF loader. | 
|  |  | 
|  | #include <stddef.h> | 
|  |  | 
|  | #include "iree/base/api.h" | 
|  | #include "iree/hal/api.h" | 
|  | #include "iree/hal/drivers/local_task/task_device.h" | 
|  | #include "iree/hal/local/executable_loader.h" | 
|  | #include "iree/hal/local/loaders/embedded_elf_loader.h" | 
|  | #include "iree/task/api.h" | 
|  |  | 
|  | // Compiled module embedded here to avoid file IO: | 
|  | #include "samples/simple_embedding/simple_embedding_test_bytecode_module_cpu_arm_64_c.h" | 
|  | #include "samples/simple_embedding/simple_embedding_test_bytecode_module_cpu_riscv_32_c.h" | 
|  | #include "samples/simple_embedding/simple_embedding_test_bytecode_module_cpu_riscv_64_c.h" | 
|  | #include "samples/simple_embedding/simple_embedding_test_bytecode_module_cpu_x86_64_c.h" | 
|  |  | 
|  | iree_status_t create_sample_device(iree_allocator_t host_allocator, | 
|  | iree_hal_device_t** out_device) { | 
|  | // Set parameters for the device created in the next step. | 
|  | iree_hal_task_device_params_t params; | 
|  | iree_hal_task_device_params_initialize(¶ms); | 
|  |  | 
|  | iree_hal_executable_loader_t* loader = NULL; | 
|  | IREE_RETURN_IF_ERROR(iree_hal_embedded_elf_loader_create( | 
|  | /*plugin_manager=*/NULL, host_allocator, &loader)); | 
|  |  | 
|  | // NOTE: hardcoded maximum executor count for this sample to keep it simple. | 
|  | iree_task_executor_t* executors[8] = {NULL}; | 
|  | iree_host_size_t executor_count = 0; | 
|  | iree_status_t status = iree_task_executors_create_from_flags( | 
|  | host_allocator, IREE_ARRAYSIZE(executors), executors, &executor_count); | 
|  |  | 
|  | iree_string_view_t identifier = iree_make_cstring_view("local-task"); | 
|  |  | 
|  | // Use the default host allocator for buffer allocations. | 
|  | iree_hal_allocator_t* device_allocator = NULL; | 
|  | if (iree_status_is_ok(status)) { | 
|  | status = iree_hal_allocator_create_heap(identifier, host_allocator, | 
|  | host_allocator, &device_allocator); | 
|  | } | 
|  |  | 
|  | // Create the device. | 
|  | if (iree_status_is_ok(status)) { | 
|  | status = iree_hal_task_device_create( | 
|  | identifier, ¶ms, executor_count, executors, | 
|  | /*loader_count=*/1, &loader, device_allocator, host_allocator, | 
|  | out_device); | 
|  | } | 
|  |  | 
|  | iree_hal_allocator_release(device_allocator); | 
|  | for (iree_host_size_t i = 0; i < executor_count; ++i) { | 
|  | iree_task_executor_release(executors[i]); | 
|  | } | 
|  | iree_hal_executable_loader_release(loader); | 
|  | return status; | 
|  | } | 
|  |  | 
|  | const iree_const_byte_span_t load_bytecode_module_data() { | 
|  | #if IREE_ARCH_X86_64 | 
|  | const struct iree_file_toc_t* module_file_toc = | 
|  | iree_samples_simple_embedding_test_module_cpu_x86_64_create(); | 
|  | #elif IREE_ARCH_RISCV_32 | 
|  | const struct iree_file_toc_t* module_file_toc = | 
|  | iree_samples_simple_embedding_test_module_cpu_riscv_32_create(); | 
|  | #elif IREE_ARCH_RISCV_64 | 
|  | const struct iree_file_toc_t* module_file_toc = | 
|  | iree_samples_simple_embedding_test_module_cpu_riscv_64_create(); | 
|  | #elif IREE_ARCH_ARM_64 | 
|  | const struct iree_file_toc_t* module_file_toc = | 
|  | iree_samples_simple_embedding_test_module_cpu_arm_64_create(); | 
|  | #else | 
|  | #error "Unsupported platform." | 
|  | #endif | 
|  | return iree_make_const_byte_span(module_file_toc->data, | 
|  | module_file_toc->size); | 
|  | } |