Этот коммит содержится в:
Ben Sander
2016-04-11 07:47:22 -05:00
родитель 4a0c0479d4
Коммит e4d1863ce8
+1 -1
Просмотреть файл
@@ -126,7 +126,7 @@ void printDeviceProp (int deviceId)
cout << setw(w1) << "peers: ";
for (int i=0; i<deviceCnt; i++) {
int isPeer;
hipDeviceCanAccessPeer(&isPeer, deviceId, i);
hipDeviceCanAccessPeer(&isPeer, i, deviceId);
if (isPeer) {
cout << "device#" << i << " ";
}