corrected hipDeviceGetProperties to hipGetDeviceProperties - not docs

[ROCm/hip commit: d3ba2b9782]
此提交包含在:
Aditya Atluri
2016-03-06 08:31:04 -06:00
父節點 3c91a6d0a7
當前提交 f1b8758919
共有 24 個檔案被更改,包括 27 行新增27 行删除
+1 -1
查看文件
@@ -60,7 +60,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);