Skip to content

Commit ec246c7

Browse files
committed
Format
1 parent 89b57e9 commit ec246c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/histogram.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function histogram_kernel!(histogram_output, input, ::Val{gs}) where {gs}
5252
end
5353

5454
end
55-
55+
return
5656
end
5757

5858
function histogram!(histogram_output, input, groupsize = 256)

examples/performant_matmul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function coalesced_matmul_kernel!(
7070
if I <= N && J <= M
7171
@inbounds output[I, J] = outval
7272
end
73-
return nothing
73+
return
7474
end
7575

7676
N = 1024

0 commit comments

Comments
 (0)