corrected hipDeviceGetProperties to hipGetDeviceProperties - not docs

这个提交包含在:
Aditya Atluri
2016-03-06 08:31:04 -06:00
父节点 3aa764d5eb
当前提交 d3ba2b9782
修改 24 个文件,包含 27 行新增27 行删除
+1 -1
查看文件
@@ -73,7 +73,7 @@ void printDeviceProp (int deviceId)
cout << setw(w1) << "device#" << deviceId << endl;
hipDeviceProp_t props;
HIPCHECK(hipDeviceGetProperties(&props, deviceId));
HIPCHECK(hipGetDeviceProperties(&props, deviceId));
cout << setw(w1) << "Name: " << props.name << endl;
cout << setw(w1) << "pciBusID: " << props.pciBusID << endl;