Skip to content

Commit 2f38f74

Browse files
committed
Non-blocking dispose
1 parent a6a068d commit 2f38f74

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

src/GraphBLAS-sharp.Backend/Objects/Matrix.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ module ClMatrix =
2222
q.Post(Msg.CreateFreeMsg<_>(this.Values))
2323
q.Post(Msg.CreateFreeMsg<_>(this.Columns))
2424
q.Post(Msg.CreateFreeMsg<_>(this.RowPointers))
25-
q.PostAndReply(Msg.MsgNotifyMe)
2625

2726
member this.Dispose q = (this :> IDeviceMemObject).Dispose q
2827

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ module ClVector =
1818
member this.Dispose(q) =
1919
q.Post(Msg.CreateFreeMsg<_>(this.Values))
2020
q.Post(Msg.CreateFreeMsg<_>(this.Indices))
21-
q.PostAndReply(Msg.MsgNotifyMe)
2221

2322
member this.Dispose(q) = (this :> IDeviceMemObject).Dispose(q)
2423

0 commit comments

Comments
 (0)