corrected hipDeviceGetProperties to hipGetDeviceProperties - not docs

Этот коммит содержится в:
Aditya Atluri
2016-03-06 08:31:04 -06:00
родитель 3aa764d5eb
Коммит d3ba2b9782
24 изменённых файлов: 27 добавлений и 27 удалений
+1 -1
Просмотреть файл
@@ -39,7 +39,7 @@ int main(int argc, char *argv[])
int deviceId;
CHECK (hipGetDevice(&deviceId));
hipDeviceProp_t props;
CHECK(hipDeviceGetProperties(&props, deviceId));
CHECK(hipGetDeviceProperties(&props, deviceId));
printf ("info: running on device #%d %s\n", deviceId, props.name);
#ifdef __HCC__