Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HIP] Add missing symbols hip #1031

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions source/adapters/hip/ur_interface_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,22 @@ UR_DLLEXPORT ur_result_t UR_APICALL urGetUsmP2PExpProcAddrTable(
return retVal;
}

// TODO: Implement
UR_DLLEXPORT ur_result_t UR_APICALL urGetBindlessImagesExpProcAddrTable(
ur_api_version_t, ur_bindless_images_exp_dditable_t *) {
// This needs to return UR_RESULT_SUCCESS or else the platform can't be
// initialized
return UR_RESULT_SUCCESS;
}

// TODO: Implement
UR_DLLEXPORT ur_result_t UR_APICALL
urGetUSMExpProcAddrTable(ur_api_version_t, ur_usm_exp_dditable_t *) {
// This needs to return UR_RESULT_SUCCESS or else the platform can't be
// initialized
return UR_RESULT_SUCCESS;
}

UR_DLLEXPORT ur_result_t UR_APICALL urGetVirtualMemProcAddrTable(
ur_api_version_t version, ///< [in] API version requested
ur_virtual_mem_dditable_t
Expand Down