blob: 938bb3d44a1fc4b3c95600625eb23b4801ad1622 [file] [log] [blame]
// Copyright 2023 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
#include "experimental/hip/registration/driver_module.h"
#include <inttypes.h>
#include <stddef.h>
#include "experimental/hip/api.h"
#include "iree/base/api.h"
#include "iree/base/internal/flags.h"
#include "iree/base/status.h"
#include "iree/base/tracing.h"
IREE_FLAG(bool, hip_use_streams, true,
"Use HIP streams (instead of graphs) for executing command buffers.");
IREE_FLAG(
bool, hip_async_allocations, true,
"Enables HIP asynchronous stream-ordered allocations when supported.");
IREE_FLAG(int32_t, hip_default_index, 0,
"Specifies the index of the default HIP device to use");
static iree_status_t iree_hal_hip_driver_factory_enumerate(
void* self, iree_host_size_t* out_driver_info_count,
const iree_hal_driver_info_t** out_driver_infos) {
IREE_ASSERT_ARGUMENT(out_driver_info_count);
IREE_ASSERT_ARGUMENT(out_driver_infos);
IREE_TRACE_ZONE_BEGIN(z0);
static const iree_hal_driver_info_t driver_infos[1] = {{
.driver_name = IREE_SVL("hip"),
.full_name = IREE_SVL("HIP HAL driver (via dylib)"),
}};
*out_driver_info_count = IREE_ARRAYSIZE(driver_infos);
*out_driver_infos = driver_infos;
IREE_TRACE_ZONE_END(z0);
return iree_ok_status();
}
static iree_status_t iree_hal_hip_driver_factory_try_create(
void* self, iree_string_view_t driver_name, iree_allocator_t host_allocator,
iree_hal_driver_t** out_driver) {
IREE_ASSERT_ARGUMENT(out_driver);
if (!iree_string_view_equal(driver_name, IREE_SV("hip"))) {
return iree_make_status(IREE_STATUS_UNAVAILABLE,
"no driver '%.*s' is provided by this factory",
(int)driver_name.size, driver_name.data);
}
IREE_TRACE_ZONE_BEGIN(z0);
iree_hal_hip_driver_options_t driver_options;
iree_hal_hip_driver_options_initialize(&driver_options);
iree_hal_hip_device_params_t device_params;
iree_hal_hip_device_params_initialize(&device_params);
if (FLAG_hip_use_streams) {
device_params.command_buffer_mode = IREE_HAL_HIP_COMMAND_BUFFER_MODE_STREAM;
}
device_params.async_allocations = FLAG_hip_async_allocations;
driver_options.default_device_index = FLAG_hip_default_index;
iree_status_t status = iree_hal_hip_driver_create(
driver_name, &driver_options, &device_params, host_allocator, out_driver);
IREE_TRACE_ZONE_END(z0);
return status;
}
IREE_API_EXPORT iree_status_t
iree_hal_hip_driver_module_register(iree_hal_driver_registry_t* registry) {
static const iree_hal_driver_factory_t factory = {
.self = NULL,
.enumerate = iree_hal_hip_driver_factory_enumerate,
.try_create = iree_hal_hip_driver_factory_try_create,
};
return iree_hal_driver_registry_register_factory(registry, &factory);
}