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

[ROCm/clr commit: b006380ff6]
Este commit está contenido en:
Brzak, Branislav
2025-04-08 18:54:05 +02:00
cometido por GitHub
padre 2f3bc7f01c
commit d4275741ba
Se han modificado 2 ficheros con 4 adiciones y 4 borrados
+2 -2
Ver fichero
@@ -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);
}
+2 -2
Ver fichero
@@ -759,6 +759,6 @@ hipError_t hipSetValidDevices(int* device_arr, int len) {
}
} //namespace hip
extern "C" hipError_t hipChooseDevice(int* device, const hipDeviceProp_tR0000* properties) {
return hip::hipChooseDeviceR0000(device, properties);
extern "C" hipError_t hipChooseDevice(int* device, const hipDeviceProp_tR0600* properties) {
return hip::hipChooseDeviceR0600(device, properties);
}