Skip to content

Commit 9cd0eff

Browse files
Update ggml/src/ggml-cuda/cumsum.cu
Co-authored-by: Johannes Gäßler <johannesg@5d6.de>
1 parent 08b3f2d commit 9cd0eff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ggml/src/ggml-cuda/cumsum.cu

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ static __global__ void cumsum_cub_kernel(
7272
// Fallback kernel implementation (original)
7373
template<typename T>
7474
static __global__ void cumsum_kernel(
75-
const T * src, T * dst,
76-
const int64_t ne00, const int64_t ne01, const int64_t ne02, const int64_t ne03,
77-
const int64_t nb00, const int64_t nb01, const int64_t nb02, const int64_t nb03,
78-
const int64_t nb0, const int64_t nb1, const int64_t nb2, const int64_t nb3) {
75+
const T * src, T * dst,
76+
const int64_t ne00, const int64_t ne01, const int64_t ne02, const int64_t ne03,
77+
const int64_t nb00, const int64_t nb01, const int64_t nb02, const int64_t nb03,
78+
const int64_t nb0, const int64_t nb1, const int64_t nb2, const int64_t nb3) {
7979

8080
GGML_UNUSED_VARS(nb00, nb0);
8181

0 commit comments

Comments
 (0)