Skip to content

Commit 2e8f46b

Browse files
committed
refactor: imports
1 parent b028f01 commit 2e8f46b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
namespace GraphBLAS.FSharp.Backend.Common.Sort
22

33
open Brahma.FSharp
4+
open GraphBLAS.FSharp.Backend.Common
45

56
module internal Bitonic =
67
let private localBegin (clContext: ClContext) workGroupSize =

src/GraphBLAS-sharp.Backend/Matrix/COOMatrix/Matrix.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ module Matrix =
124124
let transposeInplace (clContext: ClContext) workGroupSize =
125125

126126
let sort =
127-
BitonicSort.sortKeyValuesInplace clContext workGroupSize
127+
Sort.Bitonic.sortKeyValuesInplace clContext workGroupSize
128128

129129
fun (queue: MailboxProcessor<_>) (matrix: ClMatrix.COO<'a>) ->
130130
sort queue matrix.Columns matrix.Rows matrix.Values

0 commit comments

Comments
 (0)