This commit is contained in:
bmitra 2016-01-11 10:05:16 -08:00
Родитель 3c4cddad19
Коммит 7c434383d7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2995,7 +2995,7 @@ __global__ void _reshape(
return;
int currentCol = id;
int oldColLower = newNumRows / oldNumRows * currentCol;
int oldColLower = (newNumRows * currentCol) / oldNumRows;
// initialize to the end and then scan in the right direction in the for-loop
int currentColStart = oldColumnIndex[oldNumCols];