File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed
src/GraphBLAS-sharp.Backend
tests/GraphBLAS-sharp.Tests/Common/Sort Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1- namespace GraphBLAS.FSharp.Backend.Common
1+ namespace GraphBLAS.FSharp.Backend.Common.Sort
22
33open Brahma.FSharp
44
5- module internal BitonicSort =
5+ module internal Bitonic =
66 let private localBegin ( clContext : ClContext ) workGroupSize =
77
88 let processedSize = workGroupSize * 2
Original file line number Diff line number Diff line change 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" />
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -82,4 +82,3 @@ module Radix =
8282
8383 makeTestKeysOnly sort
8484 |> testPropertyWithConfig config $" keys only"
85-
You can’t perform that action at this time.
0 commit comments