Skip to content

Commit b028f01

Browse files
committed
refactor: formatting
1 parent a4aa593 commit b028f01

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/GraphBLAS-sharp.Backend/Common/BitonicSort.fs renamed to src/GraphBLAS-sharp.Backend/Common/Sort/Bitonic.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
namespace GraphBLAS.FSharp.Backend.Common
1+
namespace GraphBLAS.FSharp.Backend.Common.Sort
22

33
open Brahma.FSharp
44

5-
module internal BitonicSort =
5+
module internal Bitonic =
66
let private localBegin (clContext: ClContext) workGroupSize =
77

88
let processedSize = workGroupSize * 2

src/GraphBLAS-sharp.Backend/GraphBLAS-sharp.Backend.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
<Compile Include="Common/Sum.fs" />
3232
<Compile Include="Common/PrefixSum.fs" />
3333
<Compile Include="Common/ClArray.fs" />
34-
<Compile Include="Common/BitonicSort.fs" />
3534
<Compile Include="Common/Sort/Radix.fs" />
35+
<Compile Include="Common/Sort/Bitonic.fs" />
3636
<!--Compile Include="Matrices.fs" /-->
3737
<Compile Include="Matrix/Common.fs" />
3838
<Compile Include="Matrix/COOMatrix/Map2.fs" />

tests/GraphBLAS-sharp.Tests/Common/Sort/Bitonic.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module Bitonic =
6767
|> Utils.compareArrays (=) actualValues expectedValues
6868

6969
let testFixtures<'a when 'a: equality> =
70-
BitonicSort.sortKeyValuesInplace<int, 'a> context wgSize
70+
Sort.Bitonic.sortKeyValuesInplace<int, 'a> context wgSize
7171
|> makeTest
7272
|> testPropertyWithConfig config $"Correctness on %A{typeof<'a>}"
7373

tests/GraphBLAS-sharp.Tests/Common/Sort/Radix.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,3 @@ module Radix =
8282

8383
makeTestKeysOnly sort
8484
|> testPropertyWithConfig config $"keys only"
85-

0 commit comments

Comments
 (0)