Skip to content

Commit 12e733f

Browse files
authored
Fix bitonic localSize
1 parent 050df59 commit 12e733f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GraphBLAS-sharp.Backend/Common/Sort/Bitonic.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module Bitonic =
1010
let localSize =
1111
Common.Utils.floorToPower2 (
1212
int (clContext.ClDevice.LocalMemSize)
13-
/ (sizeof<int> + sizeof<'a>)
13+
/ (sizeof<uint64> + sizeof<'a>)
1414
)
1515
/ 2
1616

0 commit comments

Comments
 (0)