clMathLibraries / clBLAS

a software library containing BLAS functions written in OpenCL
Apache License 2.0
839 stars 240 forks source link

In the samples, need to call `clReleaseEvent` to prevent leaks #167

Closed hughperkins closed 8 years ago

hughperkins commented 8 years ago

In the samples, need to call clReleaseEvent, after waiting on it, to prevent memory leaks. ie:

        err = clWaitForEvents(1, &event);
        clReleaseEvent(event);
TimmyLiu commented 8 years ago

should be fixed by pr #178 . Can we close it?

hughperkins commented 8 years ago

Great! Thank you Timmy.