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 4b1e22a commit fe1bec5Copy full SHA for fe1bec5
ext/EnzymeExt.jl
@@ -64,7 +64,7 @@ function EnzymeRules.forward(
64
)
65
kernel = func.val
66
f = kernel.f
67
- fwd_kernel = similar(config, kernel, cpu_fwd)
+ fwd_kernel = similar(kernel, cpu_fwd)
68
69
fwd_kernel(config, f, args...; ndrange, workgroupsize)
70
end
@@ -79,7 +79,7 @@ function EnzymeRules.forward(
79
80
81
82
- fwd_kernel = similar(config, kernel, gpu_fwd)
+ fwd_kernel = similar(kernel, gpu_fwd)
83
84
85
0 commit comments