File tree Expand file tree Collapse file tree
src/GraphBLAS-sharp.Backend/Vector/SparseVector Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments