Files
rocm-systems/tests/src/nvcc/Device/hipGetDevice.cpp
T

9 lines
155 B
C++
Raw Normal View History

#include <hip/hip_runtime_api.h>
#include "test_common.h"
int main()
{
HIP_PRINT_STATUS(hipGetDevice(NULL));
HIP_PRINT_STATUS(hipGetDevice(0));
}