Test hipModuleGetGlobal

[ROCm/clr commit: 46346343af]
Cette révision appartient à :
Rahul Garg
2019-03-15 04:08:03 +05:30
Parent 32fc302ba1
révision 19d2ff51c8
2 fichiers modifiés avec 5 ajouts et 3 suppressions
+4 -2
Voir le fichier
@@ -31,7 +31,6 @@ THE SOFTWARE.
#define SIZE LEN * sizeof(float)
#define fileName "vcpy_kernel.code"
float myDeviceGlobal;
float myDeviceGlobalArray[16];
#define HIP_CHECK(cmd) \
{ \
@@ -69,7 +68,10 @@ int main() {
HIP_CHECK(hipModuleLoad(&Module, fileName));
float myDeviceGlobal_h = 42.0;
myDeviceGlobal = 42.0;
float* deviceGlobal;
size_t deviceGlobalSize;
HIP_CHECK(hipModuleGetGlobal((void**)&deviceGlobal, &deviceGlobalSize, Module, "myDeviceGlobal"));
*deviceGlobal = 42.0;
#define ARRAY_SIZE 16
+1 -1
Voir le fichier
@@ -24,7 +24,7 @@ THE SOFTWARE.
#define ARRAY_SIZE (16)
extern float myDeviceGlobal;
__device__ float myDeviceGlobal;
extern float myDeviceGlobalArray[16];
;