p2p_copy_coherency test: gracefully handle single gpu case

Change-Id: I216663f67ef58c673136332635dab8b57079b909


[ROCm/clr commit: a7dc938ec0]
This commit is contained in:
Maneesh Gupta
2017-06-07 15:23:37 +05:30
parent daae691cdb
commit e23be58d91
@@ -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;