Skip to content

Commit

Permalink
refactor: fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasviGoyal committed Jan 25, 2024
1 parent 7d97302 commit 24ea1cf
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
template <typename T, typename C, typename U, typename V>
__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;

Expand All @@ -37,13 +37,13 @@ awkward_IndexedArray_index_of_nulls_a(T* toindex,
template <typename T, typename C, typename U, typename V>
__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;

Expand Down

0 comments on commit 24ea1cf

Please sign in to comment.