2016-10-04 22:20:50 +05:30
|
|
|
#include "hip/hip_runtime.h"
|
|
|
|
|
#include "hip/hip_runtime_api.h"
|
2018-03-12 11:29:03 +05:30
|
|
|
#include "hipDeviceUtil.h"
|
2016-09-27 11:38:31 -05:00
|
|
|
|
2018-03-12 11:29:03 +05:30
|
|
|
int main() {
|
2016-09-27 11:38:31 -05:00
|
|
|
int device;
|
|
|
|
|
HIP_CHECK(hipGetDevice(NULL), hipGetDevice);
|
|
|
|
|
HIP_CHECK(hipGetDevice(&device), hipGetDevice);
|
|
|
|
|
}
|