SWDEV-525653 - Make hipGetDeviceProperties and hipChooseDevice use the new API (#159)

[ROCm/clr commit: b006380ff6]
Этот коммит содержится в:
Brzak, Branislav
2025-04-08 18:54:05 +02:00
коммит произвёл GitHub
родитель 2f3bc7f01c
Коммит d4275741ba
2 изменённых файлов: 4 добавлений и 4 удалений
+2 -2
Просмотреть файл
@@ -800,6 +800,6 @@ hipError_t hipGetProcAddress(const char* symbol, void** pfn, int hipVersion, uin
} // namespace hip
extern "C" hipError_t hipGetDeviceProperties(hipDeviceProp_tR0000* props, hipDevice_t device) {
return hip::hipGetDevicePropertiesR0000(props, device);
extern "C" hipError_t hipGetDeviceProperties(hipDeviceProp_tR0600* props, hipDevice_t device) {
return hip::hipGetDevicePropertiesR0600(props, device);
}