blob: 9434545f3d96ad3aed5049a1164955706cd849e6 [file]
// 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
// An example of setting up the Vulkan driver.
#include <stddef.h>
#include "iree/async/util/proactor_pool.h"
#include "iree/base/api.h"
#include "iree/base/threading/numa.h"
#include "iree/hal/api.h"
#include "iree/hal/drivers/vulkan/registration/driver_module.h"
// Compiled module embedded here to avoid file IO:
#include "samples/simple_embedding/simple_embedding_test_bytecode_module_vulkan_c.h"
iree_status_t create_sample_device(iree_allocator_t host_allocator,
iree_hal_device_t** out_device) {
// Only register the Vulkan HAL driver.
IREE_RETURN_IF_ERROR(iree_hal_vulkan_driver_module_register(
iree_hal_driver_registry_default()));
// Create the HAL driver from the name.
iree_hal_driver_t* driver = NULL;
iree_string_view_t identifier = iree_make_cstring_view("vulkan");
iree_status_t status = iree_hal_driver_registry_try_create(
iree_hal_driver_registry_default(), identifier, host_allocator, &driver);
// Create a shared proactor pool for async I/O. The device retains the pool
// so we release our reference immediately after device creation.
iree_async_proactor_pool_t* proactor_pool = NULL;
if (iree_status_is_ok(status)) {
status = iree_async_proactor_pool_create(
iree_numa_node_count(), /*node_ids=*/NULL,
iree_async_proactor_pool_options_default(), host_allocator,
&proactor_pool);
}
// Create the default device (primary GPU).
iree_hal_device_create_params_t create_params =
iree_hal_device_create_params_default();
create_params.proactor_pool = proactor_pool;
if (iree_status_is_ok(status)) {
status = iree_hal_driver_create_default_device(driver, &create_params,
host_allocator, out_device);
}
iree_async_proactor_pool_release(proactor_pool);
iree_hal_driver_release(driver);
return status;
}
const iree_const_byte_span_t load_bytecode_module_data() {
const struct iree_file_toc_t* module_file_toc =
iree_samples_simple_embedding_test_module_vulkan_create();
return iree_make_const_byte_span(module_file_toc->data,
module_file_toc->size);
}