File tree Expand file tree Collapse file tree
src/GraphBLAS-sharp.Backend/Matrix Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -355,8 +355,8 @@ module COOMatrix =
355355 queue.Post( Msg.CreateFreeMsg<_>( allValues))
356356
357357 { Context = clContext
358- RowCount = resultRows.Length
359- ColumnCount = resultColumns.Length
358+ RowCount = matrixLeft.RowCount
359+ ColumnCount = matrixLeft.ColumnCount
360360 Rows = resultRows
361361 Columns = resultColumns
362362 Values = resultValues }
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ module Matrix =
1818 fun ( processor : MailboxProcessor < _ >) ( matrix : Matrix < 'a >) ->
1919 match matrix with
2020 | MatrixCOO _ -> matrix
21- | MatrixCSR m -> toCOO processor workGroupSize m |> MatrixCOO
21+ | MatrixCSR m -> toCOO workGroupSize processor m |> MatrixCOO
2222
2323 let eWiseAdd ( clContext : ClContext ) ( opAdd : Expr < 'a -> 'a -> 'a >) workGroupSize =
2424 let COOeWiseAdd =
You can’t perform that action at this time.
0 commit comments