ファイル
rocm-systems/hipamd/tests/src/Functional/Negative/Device/hipGetDevice.cpp
T

11 行
219 B
C++
Raw 通常表示 履歴

2016-09-27 11:38:31 -05:00
#include<hip/hip_runtime.h>
#include<hip/hip_runtime_api.h>
#include"hipDeviceUtil.h"
int main()
{
int device;
HIP_CHECK(hipGetDevice(NULL), hipGetDevice);
HIP_CHECK(hipGetDevice(&device), hipGetDevice);
}