corrected hipDeviceGetProperties to hipGetDeviceProperties - not docs

[ROCm/hip-tests commit: 0155e5b879]
Šī revīzija ir iekļauta:
Aditya Atluri
2016-03-06 08:31:04 -06:00
vecāks 4d58d5e7cf
revīzija 0d32a4fecb
3 mainīti faili ar 3 papildinājumiem un 3 dzēšanām
@@ -53,7 +53,7 @@ int main(int argc, char *argv[])
size_t Nbytes = N * sizeof(float);
hipDeviceProp_t props;
CHECK(hipDeviceGetProperties(&props, 0/*deviceID*/));
CHECK(hipGetDeviceProperties(&props, 0/*deviceID*/));
printf ("info: running on device %s\n", props.name);
printf ("info: allocate host mem (%6.2f MB)\n", 2*Nbytes/1024.0/1024.0);