added tests to check nvcc runtime api output

Change-Id: Ifdd39b5d0a6a58d20a8e9745e59dd82d50a90e2f
This commit is contained in:
Aditya Atluri
2016-11-19 21:36:28 -06:00
parent 53e771fc75
commit 428041cfc2
11 changed files with 87 additions and 2 deletions
@@ -0,0 +1,8 @@
#include <hip/hip_runtime_api.h>
#include "test_common.h"
int main()
{
HIP_PRINT_STATUS(hipSetDeviceFlags(-1));
HIP_PRINT_STATUS(hipSetDeviceFlags(11));
}