示例#1
0
文件: CudaClahe.cs 项目: aray2000/TFM
 /// <summary>
 /// Release all the unmanaged memory associated with this object
 /// </summary>
 protected override void DisposeObject()
 {
     if (_ptr != IntPtr.Zero)
     {
         CudaInvoke.cudaCLAHERelease(ref _ptr);
     }
 }