Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalii committed Nov 14, 2023
1 parent 805a35e commit cd62e66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions icicle/appUtils/poseidon/poseidon.cu
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ __host__ void Poseidon<S>::hash_blocks(const S* inp, size_t blocks, S* out, Hash
#endif

// execute half full rounds
full_rounds<<<number_of_blocks, number_of_threads, sizeof(S) * hashes_per_block* this->t, stream>>>(
full_rounds<<<number_of_blocks, number_of_threads, sizeof(S) * hashes_per_block * this->t, stream>>>(
states, blocks, rc_offset, true, this->config);
rc_offset += this->t * this->config.full_rounds_half;

Expand Down Expand Up @@ -230,7 +230,7 @@ __host__ void Poseidon<S>::hash_blocks(const S* inp, size_t blocks, S* out, Hash
#endif

// execute half full rounds
full_rounds<<<number_of_blocks, number_of_threads, sizeof(S) * hashes_per_block* this->t, stream>>>(
full_rounds<<<number_of_blocks, number_of_threads, sizeof(S) * hashes_per_block * this->t, stream>>>(
states, blocks, rc_offset, false, this->config);

#if !defined(__CUDA_ARCH__) && defined(DEBUG)
Expand Down

0 comments on commit cd62e66

Please sign in to comment.