From 879a06c9131da6c2058ec1c81900b7cc50eff021 Mon Sep 17 00:00:00 2001 From: raver119 Date: Fri, 1 Nov 2019 09:13:15 +0300 Subject: [PATCH] few typos fixed Signed-off-by: raver119 --- libnd4j/blas/cuda/NativeOps.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libnd4j/blas/cuda/NativeOps.cu b/libnd4j/blas/cuda/NativeOps.cu index 5365fc660..2db1aa128 100755 --- a/libnd4j/blas/cuda/NativeOps.cu +++ b/libnd4j/blas/cuda/NativeOps.cu @@ -3282,8 +3282,8 @@ void scatterUpdate(Nd4jPointer *extraPointers, int opCode, int numOfSubArrs, auto type = ArrayOptions::dataType(hXShapeInfo); auto iType = ArrayOptions::dataType(hIndicesShapeInfo); - BUILD_DOUBLE_SELECTOR(type,, iType, scatterUpdateCudaLauncher, - (stream, opCode, numOfSubArrs, dX, dXShapeInfo, dXOffsets, dY, dYShapeInfo, dYOffsets, dIndexes), + BUILD_DOUBLE_SELECTOR(type, iType, scatterUpdateCudaLauncher, + (stream, opCode, numOfSubArrs, dX, dXShapeInfo, dXOffsets, dY, dYShapeInfo, dYOffsets, dIindexes), LIBND4J_TYPES, INDEXING_TYPES); nd4j::DebugHelper::checkErrorCode(stream, "scatterUpdate(...) failed");