Files
rocm-systems/projects/hip/tests/src/Negative/Device/hipGetDevice.cpp
T

10 خطوط
222 B
C++

#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);
}