Skip to content

Commit ee7478f

Browse files
committed
refactor: Vector.Elementwise.general quote
1 parent 0608773 commit ee7478f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module Elementwise =
2828

2929
result @>
3030

31-
let preparePositionsGen (op: Expr<'a option -> 'b option -> 'c option>) =
31+
let preparePositionsGeneral (op: Expr<'a option -> 'b option -> 'c option>) =
3232
<@ fun (ndRange: Range1D) vectorLength leftValuesLength rightValuesLength (leftValues: ClArray<'a>) (leftIndices: ClArray<int>) (rightValues: ClArray<'b>) (rightIndices: ClArray<int>) (resultBitmap: ClArray<int>) (resultValues: ClArray<'c>) (resultIndices: ClArray<int>) ->
3333

3434
let gid = ndRange.GlobalID0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module SparseVector =
5656

5757
let kernel =
5858
clContext.Compile
59-
<| Elementwise.preparePositionsGen opAdd
59+
<| Elementwise.preparePositionsGeneral opAdd
6060

6161
fun (processor: MailboxProcessor<_>) (vectorLenght: int) (leftValues: ClArray<'a>) (leftIndices: ClArray<int>) (rightValues: ClArray<'b>) (rightIndices: ClArray<int>) ->
6262

0 commit comments

Comments
 (0)