Geoffrey Martin-Noble | 552d3f8 | 2021-05-25 17:56:09 -0700 | [diff] [blame] | 1 | // Copyright 2021 The IREE Authors |
raikonenfnu | 4b31bd9 | 2021-05-18 18:20:25 -0700 | [diff] [blame] | 2 | // |
Geoffrey Martin-Noble | 552d3f8 | 2021-05-25 17:56:09 -0700 | [diff] [blame] | 3 | // 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 |
raikonenfnu | 4b31bd9 | 2021-05-18 18:20:25 -0700 | [diff] [blame] | 6 | |
| 7 | #ifndef IREE_HAL_ROCM_NATIVE_EXECUTABLE_H_ |
| 8 | #define IREE_HAL_ROCM_NATIVE_EXECUTABLE_H_ |
| 9 | |
raikonenfnu | b3777ac | 2021-07-16 18:31:42 -0700 | [diff] [blame] | 10 | #include <stdint.h> |
| 11 | |
raikonenfnu | 4b31bd9 | 2021-05-18 18:20:25 -0700 | [diff] [blame] | 12 | #include "experimental/rocm/context_wrapper.h" |
| 13 | #include "experimental/rocm/rocm_headers.h" |
raikonenfnu | b3777ac | 2021-07-16 18:31:42 -0700 | [diff] [blame] | 14 | #include "iree/base/api.h" |
raikonenfnu | 4b31bd9 | 2021-05-18 18:20:25 -0700 | [diff] [blame] | 15 | #include "iree/hal/api.h" |
| 16 | |
| 17 | #ifdef __cplusplus |
| 18 | extern "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. |
| 23 | iree_status_t iree_hal_rocm_native_executable_create( |
Ben Vanik | 32edade | 2021-07-27 21:33:06 -0700 | [diff] [blame] | 24 | iree_hal_rocm_context_wrapper_t* context, |
Ben Vanik | 9f3b9fe | 2022-03-05 10:24:09 -0800 | [diff] [blame] | 25 | const iree_hal_executable_params_t* executable_params, |
Ben Vanik | 32edade | 2021-07-27 21:33:06 -0700 | [diff] [blame] | 26 | iree_hal_executable_t** out_executable); |
raikonenfnu | 4b31bd9 | 2021-05-18 18:20:25 -0700 | [diff] [blame] | 27 | |
| 28 | hipFunction_t iree_hal_rocm_native_executable_for_entry_point( |
Ben Vanik | 32edade | 2021-07-27 21:33:06 -0700 | [diff] [blame] | 29 | iree_hal_executable_t* executable, int32_t entry_point); |
raikonenfnu | 4b31bd9 | 2021-05-18 18:20:25 -0700 | [diff] [blame] | 30 | |
| 31 | // Return the block size of the given |entry_point| within the executable. |
| 32 | iree_status_t iree_hal_rocm_native_executable_block_size( |
Ben Vanik | 32edade | 2021-07-27 21:33:06 -0700 | [diff] [blame] | 33 | iree_hal_executable_t* executable, int32_t entry_point, uint32_t* x, |
| 34 | uint32_t* y, uint32_t* z); |
raikonenfnu | 4b31bd9 | 2021-05-18 18:20:25 -0700 | [diff] [blame] | 35 | |
Stanley Winata | 7df0109 | 2022-01-18 09:03:15 -0800 | [diff] [blame] | 36 | /// Return the layout associated with the entry point. |
Ben Vanik | b6afa47 | 2022-08-22 13:35:00 -0700 | [diff] [blame] | 37 | iree_hal_pipeline_layout_t* iree_hal_rocm_executable_get_layout( |
Stanley Winata | 7df0109 | 2022-01-18 09:03:15 -0800 | [diff] [blame] | 38 | iree_hal_executable_t* executable, int32_t entry_point); |
| 39 | |
raikonenfnu | 4b31bd9 | 2021-05-18 18:20:25 -0700 | [diff] [blame] | 40 | #ifdef __cplusplus |
| 41 | } // extern "C" |
| 42 | #endif // __cplusplus |
| 43 | |
| 44 | #endif // IREE_HAL_ROCM_NATIVE_EXECUTABLE_H_ |