Skip to content

Commit c611da2

Browse files
committed
refactor: Helpers, Vector
1 parent f14ab78 commit c611da2

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/GraphBLAS-sharp.Backend/Vector/Vector.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ module Vector =
155155
(clContext: ClContext)
156156
(workGroupSize: int)
157157
=
158+
158159
let denseFillVector =
159160
DenseVector.fillSubVector clContext (StandardOperations.fillSubComplementedToOption maskOp) workGroupSize
160161

tests/GraphBLAS-sharp.Tests/Helpers.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ module TestCases =
755755
|> contextFilter
756756
|> List.ofSeq
757757

758-
let matrixTestCases<'a> contextFilter =
758+
let getTestCases<'a> contextFilter =
759759
Context.availableContexts defaultPlatformRegex
760760
|> contextFilter
761761
|> List.ofSeq
@@ -770,7 +770,7 @@ module TestCases =
770770
Format = snd pair })
771771

772772
let operationGPUTests name (testFixtures: OperationCase<'a> -> Test list) =
773-
matrixTestCases<'a> Context.gpuOnlyContextFilter
773+
getTestCases<'a> Context.gpuOnlyContextFilter
774774
|> List.distinctBy (fun case -> case.ClContext.ClContext, case.Format)
775775
|> List.collect testFixtures
776776
|> testList name

0 commit comments

Comments
 (0)