Skip to content

Commit

Permalink
fix gather compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
sneaxiy committed Sep 7, 2021
1 parent fbaa127 commit c7f8dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/fluid/operators/gather.cu.h
Expand Up @@ -42,7 +42,7 @@ __global__ void GatherCUDAKernel(const T* params, const IndexT* indices,
}

template <typename T, typename IndexT = int>
__global__ void GatherNdCUDAKernel(const T* input, const int* input_dims,
__global__ void GatherNdCUDAKernel(const T* input, const int64_t* input_dims,
const IndexT* indices, T* output,
size_t remain_size, size_t slice_size,
size_t end_size) {
Expand Down

1 comment on commit c7f8dce

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉

Please sign in to comment.