Skip to content

[SYCL][HIP] Vendor ID for AMD devices is expected to be 4098 #6127

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

Merged
merged 7 commits into from
May 27, 2022
Merged
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
11 changes: 10 additions & 1 deletion sycl/plugins/hip/pi_hip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,16 @@ pi_result hip_piDeviceGetInfo(pi_device device, pi_device_info param_name,
PI_DEVICE_TYPE_GPU);
}
case PI_DEVICE_INFO_VENDOR_ID: {
return getInfo(param_value_size, param_value, param_value_size_ret, 4318u);
#if defined(__HIP_PLATFORM_AMD__)
pi_uint32 vendor_id = 4098u;
#elif defined(__HIP_PLATFORM_NVIDIA__)
pi_uint32 vendor_id = 4318u;
#else
pi_uint32 vendor_id = 0u;
#endif

return getInfo(param_value_size, param_value, param_value_size_ret,
vendor_id);
}
case PI_DEVICE_INFO_MAX_COMPUTE_UNITS: {
int compute_units = 0;
Expand Down