SWDEV-525653 - Make hipGetDeviceProperties and hipChooseDevice use the new API (#159)
[ROCm/clr commit: b006380ff6]
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
2f3bc7f01c
Коммит
d4275741ba
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user