p2p_copy_coherency test: gracefully handle single gpu case

Change-Id: I216663f67ef58c673136332635dab8b57079b909


[ROCm/hip commit: 1efb6ce994]
Este commit está contenido en:
Maneesh Gupta
2017-06-07 15:23:37 +05:30
padre 1d1e50fa77
commit 7213c7a1ad
@@ -156,7 +156,13 @@ int main(int argc, char *argv[])
int dev0 = 0;
int dev1 = 1;
// TODO - only works on multi-GPU system:
int numDevices;
HIPCHECK(hipGetDeviceCount(&numDevices));
if (numDevices == 1) {
printf("warning : test requires atleast two gpus\n");
passed();
}
if (enablePeers(dev0,dev1) == -1) {
printf ("warning : could not find peer gpus\n");
return -1;