Skip to content

Commit

Permalink
Remove deref inside unified cl cond try_cl_apply_fn_mut
Browse files Browse the repository at this point in the history
  • Loading branch information
elftausend committed Jul 24, 2024
1 parent 9af29b2 commit 15effb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ min-cl = { git = "https://github.com/elftausend/min-cl", optional = true }
[features]
# default = ["cpu", "opencl", "cuda", "blas", "static-api", "stack", "macro", "nnapi", "untyped", "autograd", "autograd", "cached", "lazy", "fork", "graph", "serde"]
# default = ["no-std"]
default = ["cuda", "vulkan"]
default = ["opencl"]
# default = ["untyped", "cpu", "lazy", "graph", "autograd", "fork", "serde", "json", "half", "cached", "static-api", "stack", "opencl", "cuda", "vulkan"]


Expand Down
2 changes: 1 addition & 1 deletion src/devices/opencl/ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ where
}
#[cfg(not(unified_cl))]
{
try_cl_apply_fn_mut(dev, buf, out, **f)?;
try_cl_apply_fn_mut(dev, buf, out, f)?;
Ok(())
}
})
Expand Down

0 comments on commit 15effb7

Please sign in to comment.