Skip to content

Commit 3ac5f5b

Browse files
committed
Trigger fail
1 parent d6c1b6e commit 3ac5f5b

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

examples/histogram.jl

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ function create_histogram(input)
1313
end
1414

1515
# This a 1D histogram kernel where the histogramming happens on shmem
16-
@kernel unsafe_indices=true function histogram_kernel!(histogram_output, input)
16+
# @kernel unsafe_indices=true function histogram_kernel!(histogram_output, input)
17+
@kernel function histogram_kernel!(histogram_output, input)
1718
tid = @index(Global, Linear)
1819
lid = @index(Local, Linear)
1920

@@ -77,23 +78,23 @@ end
7778
all_two = fill(Int32(2), 512)
7879

7980
histogram_rand_baseline = create_histogram(rand_input)
80-
histogram_linear_baseline = create_histogram(linear_input)
81-
histogram_two_baseline = create_histogram(all_two)
81+
# histogram_linear_baseline = create_histogram(linear_input)
82+
# histogram_two_baseline = create_histogram(all_two)
8283

8384
rand_input = move(backend, rand_input)
84-
linear_input = move(backend, linear_input)
85-
all_two = move(backend, all_two)
85+
# linear_input = move(backend, linear_input)
86+
# all_two = move(backend, all_two)
8687

8788
rand_histogram = KernelAbstractions.zeros(backend, eltype(rand_input), Int(maximum(rand_input)))
88-
linear_histogram = KernelAbstractions.zeros(backend, eltype(linear_input), Int(maximum(linear_input)))
89-
two_histogram = KernelAbstractions.zeros(backend, eltype(all_two), Int(maximum(all_two)))
89+
# linear_histogram = KernelAbstractions.zeros(backend, eltype(linear_input), Int(maximum(linear_input)))
90+
# two_histogram = KernelAbstractions.zeros(backend, eltype(all_two), Int(maximum(all_two)))
9091

9192
histogram!(rand_histogram, rand_input, 6)
92-
histogram!(linear_histogram, linear_input)
93-
histogram!(two_histogram, all_two)
93+
# histogram!(linear_histogram, linear_input)
94+
# histogram!(two_histogram, all_two)
9495
KernelAbstractions.synchronize(backend)
9596

9697
@test isapprox(Array(rand_histogram), histogram_rand_baseline)
97-
@test isapprox(Array(linear_histogram), histogram_linear_baseline)
98-
@test isapprox(Array(two_histogram), histogram_two_baseline)
98+
# @test isapprox(Array(linear_histogram), histogram_linear_baseline)
99+
# @test isapprox(Array(two_histogram), histogram_two_baseline)
99100
end

0 commit comments

Comments
 (0)