Fixed HIP for C runtime

1. fixed constant memory test
2. added runtime gcc/g++ test
3. added fix for runtime with gcc/g++

Change-Id: Ie14dad6633411b188bdeea044e140b6d5beabe16
This commit is contained in:
Aditya Atluri
2017-02-07 13:15:36 -06:00
parent 3664e8784f
commit 05c8aa1cf5
7 changed files with 42 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
#include<hip/hip_runtime_api.h>
#include<stdio.h>
int main()
{
int *Ad;
hipMalloc((void**)&Ad, 1024);
}