Skip to content

Commit

Permalink
v.1.6.4: odroid xu4 mali fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyFFM committed Nov 3, 2018
1 parent 26ad692 commit d3613df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scavenger"
version = "1.6.2"
version = "1.6.4"
license = "GPL-3.0"
authors = ["PoC Consortium <[email protected]>"]
description = """
Expand Down
2 changes: 1 addition & 1 deletion src/ocl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ pub fn find_best_deadline_gpu(
}

core::set_kernel_arg(&gpu_context.kernel2, 0, ArgVal::mem(&buffer.deadlines_gpu)).unwrap();
core::set_kernel_arg(&gpu_context.kernel2, 1, ArgVal::primitive(&nonce_count)).unwrap();
core::set_kernel_arg(&gpu_context.kernel2, 1, ArgVal::primitive(&(nonce_count as u64))).unwrap();
core::set_kernel_arg(
&gpu_context.kernel2,
2,
Expand Down

0 comments on commit d3613df

Please sign in to comment.