We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b028f01 commit 2e8f46bCopy full SHA for 2e8f46b
src/GraphBLAS-sharp.Backend/Common/Sort/Bitonic.fs
@@ -1,6 +1,7 @@
1
namespace GraphBLAS.FSharp.Backend.Common.Sort
2
3
open Brahma.FSharp
4
+open GraphBLAS.FSharp.Backend.Common
5
6
module internal Bitonic =
7
let private localBegin (clContext: ClContext) workGroupSize =
src/GraphBLAS-sharp.Backend/Matrix/COOMatrix/Matrix.fs
@@ -124,7 +124,7 @@ module Matrix =
124
let transposeInplace (clContext: ClContext) workGroupSize =
125
126
let sort =
127
- BitonicSort.sortKeyValuesInplace clContext workGroupSize
+ Sort.Bitonic.sortKeyValuesInplace clContext workGroupSize
128
129
fun (queue: MailboxProcessor<_>) (matrix: ClMatrix.COO<'a>) ->
130
sort queue matrix.Columns matrix.Rows matrix.Values
0 commit comments