We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 527fd0e commit 31946bdCopy full SHA for 31946bd
examples/histogram.jl
@@ -1,6 +1,10 @@
1
using KernelAbstractions, Test
2
include(joinpath(@__DIR__, "utils.jl")) # Load backend
3
4
+if Base.VERSION < v"1.7.0"
5
+ return
6
+end
7
+
8
# Function to use as a baseline for CPU metrics
9
function create_histogram(input)
10
histogram_output = zeros(Int, maximum(input))
test/atomic_test.jl
@@ -1,4 +1,4 @@
-using KernelAbstractions, CUDA, Test
+using KernelAbstractions, Test
# Note: kernels affect second element because some CPU defaults will affect the
# first element of a pointer if not specified, so I am covering the bases
0 commit comments