Skip to content

Commit

Permalink
relpath
Browse files Browse the repository at this point in the history
Signed-off-by: Mayank Mishra <[email protected]>
  • Loading branch information
mayank31398 committed Dec 19, 2024
1 parent 8f70e94 commit 7f468d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ __global__ void _swiglu_backward_cuda_kernel(const scalar_t *gate,
static_assert(vector_instruction_width == 1 || vector_instruction_width == 2 || vector_instruction_width == 4 ||
vector_instruction_width == 8);

const int64_t thread_id = get_global_thread_id();
const uint64 thread_id = get_global_thread_id();
using dtype = DType<scalar_t>;

if constexpr (vector_instruction_width == 1) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ __global__ void _swiglu_forward_cuda_kernel(const scalar_t *gate,
static_assert(vector_instruction_width == 1 || vector_instruction_width == 2 || vector_instruction_width == 4 ||
vector_instruction_width == 8);

const int64_t thread_id = get_global_thread_id();
const uint64 thread_id = get_global_thread_id();
using dtype = DType<scalar_t>;

if constexpr (vector_instruction_width == 1) {
Expand Down

0 comments on commit 7f468d6

Please sign in to comment.