[dtests] Fix typo in hipAPIStreamDisable.cpp (#1227)

Change-Id: Ib88a6be49ba192578129bb88ad09817839981398
Этот коммит содержится в:
Maneesh Gupta
2019-07-17 07:28:38 +00:00
коммит произвёл GitHub
родитель f7bb4f233c
Коммит 8a28afeb84
+1 -1
Просмотреть файл
@@ -55,7 +55,7 @@ int main() {
for (int i = 0; i < num_streams; i++) {
HIPCHECK(hipStreamCreate(&streams[i]));
HIPCHECK(hipMalloc(&data[i], NN * sizeof(float)));
hipLaunchKernelGGL(HIP_KERNEL_NAME(kernel), dim3(1), dim3(1), 0, streams[i], data[i], xd, N);
hipLaunchKernelGGL(HIP_KERNEL_NAME(kernel), dim3(1), dim3(1), 0, streams[i], data[i], xd, NN);
hipLaunchKernelGGL(HIP_KERNEL_NAME(nKernel), dim3(1), dim3(1), 0, 0, yd);
}