We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6a068d commit 2f38f74Copy full SHA for 2f38f74
2 files changed
src/GraphBLAS-sharp.Backend/Objects/Matrix.fs
@@ -22,7 +22,6 @@ module ClMatrix =
22
q.Post(Msg.CreateFreeMsg<_>(this.Values))
23
q.Post(Msg.CreateFreeMsg<_>(this.Columns))
24
q.Post(Msg.CreateFreeMsg<_>(this.RowPointers))
25
- q.PostAndReply(Msg.MsgNotifyMe)
26
27
member this.Dispose q = (this :> IDeviceMemObject).Dispose q
28
src/GraphBLAS-sharp.Backend/Objects/Vector.fs
@@ -18,7 +18,6 @@ module ClVector =
18
member this.Dispose(q) =
19
20
q.Post(Msg.CreateFreeMsg<_>(this.Indices))
21
member this.Dispose(q) = (this :> IDeviceMemObject).Dispose(q)
0 commit comments