Skip to content

Commit

Permalink
linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
luhenry committed Apr 16, 2024
1 parent e6143c1 commit 6fbfa92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions velox/experimental/gpu/tests/HashTableTest.cu
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,7 @@ __global__ void probe<true>(
j = (j + sizeof(uint32_t)) & tableSizeMask;
cmpMask = 0xffffffff;
}
end:
;
end:;
}
}

Expand Down Expand Up @@ -628,8 +627,7 @@ __global__ void probePartitioned<true>(
j = (j + sizeof(uint32_t)) & tableSizeMask;
cmpMask = 0xffffffff;
}
end:
;
end:;
}
}

Expand Down
4 changes: 2 additions & 2 deletions velox/experimental/wave/common/Cuda.cu
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ struct EventImpl {

Event::Event(bool withTime) : hasTiming_(withTime) {
event_ = std::make_unique<EventImpl>();
CUDA_CHECK(
cudaEventCreateWithFlags(&event_->event, withTime ? 0 : cudaEventDisableTiming));
CUDA_CHECK(cudaEventCreateWithFlags(
&event_->event, withTime ? 0 : cudaEventDisableTiming));
}

Event::~Event() {}
Expand Down

0 comments on commit 6fbfa92

Please sign in to comment.