Skip to content

Commit

Permalink
Fix bitonic localSize
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgarbar authored Jun 2, 2024
1 parent 050df59 commit 12e733f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GraphBLAS-sharp.Backend/Common/Sort/Bitonic.fs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module Bitonic =
let localSize =
Common.Utils.floorToPower2 (
int (clContext.ClDevice.LocalMemSize)
/ (sizeof<int> + sizeof<'a>)
/ (sizeof<uint64> + sizeof<'a>)
)
/ 2

Expand Down

0 comments on commit 12e733f

Please sign in to comment.