Fix hipStreamWaitEvent for single GPU.

This commit is contained in:
Ben Sander
2017-05-10 13:23:49 -05:00
parent a38e36ec2f
commit e0c3ea15b2
@@ -395,7 +395,7 @@ int main(int argc, char *argv[])
int numDevices;
HIPCHECK(hipGetDeviceCount(&numDevices));
numDevices =2; // TODO - remove me.
numDevices = min(2, numDevices); // multi-GPU to 2 device.
for (int d=0; d<numDevices/*TODO*/; d++) {
for (int i=0; i<p_streams; i++) {