blob: 30233dda649e826c0bd892a43a4d7b4b6f5fabe3 [file] [log] [blame]
Geoffrey Martin-Noble552d3f82021-05-25 17:56:09 -07001// Copyright 2021 The IREE Authors
raikonenfnu4b31bd92021-05-18 18:20:25 -07002//
Geoffrey Martin-Noble552d3f82021-05-25 17:56:09 -07003// Licensed under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
raikonenfnu4b31bd92021-05-18 18:20:25 -07006
7#ifndef IREE_HAL_ROCM_NATIVE_EXECUTABLE_H_
8#define IREE_HAL_ROCM_NATIVE_EXECUTABLE_H_
9
raikonenfnub3777ac2021-07-16 18:31:42 -070010#include <stdint.h>
11
raikonenfnu4b31bd92021-05-18 18:20:25 -070012#include "experimental/rocm/context_wrapper.h"
13#include "experimental/rocm/rocm_headers.h"
raikonenfnub3777ac2021-07-16 18:31:42 -070014#include "iree/base/api.h"
raikonenfnu4b31bd92021-05-18 18:20:25 -070015#include "iree/hal/api.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif // __cplusplus
20
21// Creates an executable from a HSACO module. The module may contain several
22// kernels that can be extracted along with the associated block size.
23iree_status_t iree_hal_rocm_native_executable_create(
Ben Vanik32edade2021-07-27 21:33:06 -070024 iree_hal_rocm_context_wrapper_t* context,
Ben Vanik9f3b9fe2022-03-05 10:24:09 -080025 const iree_hal_executable_params_t* executable_params,
Ben Vanik32edade2021-07-27 21:33:06 -070026 iree_hal_executable_t** out_executable);
raikonenfnu4b31bd92021-05-18 18:20:25 -070027
28hipFunction_t iree_hal_rocm_native_executable_for_entry_point(
Ben Vanik32edade2021-07-27 21:33:06 -070029 iree_hal_executable_t* executable, int32_t entry_point);
raikonenfnu4b31bd92021-05-18 18:20:25 -070030
31// Return the block size of the given |entry_point| within the executable.
32iree_status_t iree_hal_rocm_native_executable_block_size(
Ben Vanik32edade2021-07-27 21:33:06 -070033 iree_hal_executable_t* executable, int32_t entry_point, uint32_t* x,
34 uint32_t* y, uint32_t* z);
raikonenfnu4b31bd92021-05-18 18:20:25 -070035
Stanley Winata7df01092022-01-18 09:03:15 -080036/// Return the layout associated with the entry point.
Ben Vanikb6afa472022-08-22 13:35:00 -070037iree_hal_pipeline_layout_t* iree_hal_rocm_executable_get_layout(
Stanley Winata7df01092022-01-18 09:03:15 -080038 iree_hal_executable_t* executable, int32_t entry_point);
39
raikonenfnu4b31bd92021-05-18 18:20:25 -070040#ifdef __cplusplus
41} // extern "C"
42#endif // __cplusplus
43
44#endif // IREE_HAL_ROCM_NATIVE_EXECUTABLE_H_