From 24ea1cf3aba3025d7769b1aa216e55ef2ca7c4d2 Mon Sep 17 00:00:00 2001 From: ManasviGoyal Date: Tue, 23 Jan 2024 12:19:45 +0100 Subject: [PATCH] refactor: fix indentation --- .../awkward_IndexedArray_index_of_nulls.cu | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/awkward/_connect/cuda/cuda_kernels/awkward_IndexedArray_index_of_nulls.cu b/src/awkward/_connect/cuda/cuda_kernels/awkward_IndexedArray_index_of_nulls.cu index 863eb5c829..a5beadb17f 100644 --- a/src/awkward/_connect/cuda/cuda_kernels/awkward_IndexedArray_index_of_nulls.cu +++ b/src/awkward/_connect/cuda/cuda_kernels/awkward_IndexedArray_index_of_nulls.cu @@ -14,13 +14,13 @@ template __global__ void awkward_IndexedArray_index_of_nulls_a(T* toindex, - const C* fromindex, - int64_t lenindex, - const U* parents, - const V* starts, - int64_t* scan_in_array, - uint64_t invocation_index, - uint64_t* err_code) { + const C* fromindex, + int64_t lenindex, + const U* parents, + const V* starts, + int64_t* scan_in_array, + uint64_t invocation_index, + uint64_t* err_code) { if (err_code[0] == NO_ERROR) { int64_t thread_id = blockIdx.x * blockDim.x + threadIdx.x; @@ -37,13 +37,13 @@ awkward_IndexedArray_index_of_nulls_a(T* toindex, template __global__ void awkward_IndexedArray_index_of_nulls_b(T* toindex, - const C* fromindex, - int64_t lenindex, - const U* parents, - const V* starts, - int64_t* scan_in_array, - uint64_t invocation_index, - uint64_t* err_code) { + const C* fromindex, + int64_t lenindex, + const U* parents, + const V* starts, + int64_t* scan_in_array, + uint64_t invocation_index, + uint64_t* err_code) { if (err_code[0] == NO_ERROR) { int64_t thread_id = blockIdx.x * blockDim.x + threadIdx.x;