Skip to content

Commit

Permalink
Remove redundant parameter definition
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaLanfranchi committed Mar 10, 2020
1 parent d362bea commit 04f4bee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libethash-cuda/CUDAMiner_kernel.cu
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ __device__ __forceinline__ uint32_t kiss99(kiss99_t &st)
return ((MWC^st.jcong) + st.jsr);
}

__device__ __forceinline__ void fill_mix(uint32_t* hash_seed, uint32_t lane_id, uint32_t mix[PROGPOW_REGS])
__device__ __forceinline__ void fill_mix(uint32_t* hash_seed, uint32_t lane_id, uint32_t* mix)
{
// Use FNV to expand the per-warp seed to per-lane
// Use KISS to expand the per-lane seed to fill mix
Expand Down

0 comments on commit 04f4bee

Please sign in to comment.