public CuDevicePtrSafe(
     CuDevicePtr devicePtr,
     CuDevicePtrDeallocator deallocator)
 {
     DevicePtr = devicePtr;
     _deallocator = deallocator;
 }
        /// <inheritdoc cref="LibCuda.MemFree(CuDevicePtr)"/>
        public void Dispose()
        {
            var handle = Interlocked.Exchange(ref Handle, IntPtr.Zero);
            if (handle == IntPtr.Zero) return;
            var obj = new CuDevicePtr { Handle = handle };

            MemFree(obj);
        }
        /// <inheritdoc cref="LibCuVideo.UnmapVideoFrame64(CuVideoDecoder, CuDevicePtr)"/>
        public void Dispose()
        {
            var handle = Interlocked.Exchange(ref Handle, IntPtr.Zero);
            if (handle == IntPtr.Zero) return;
            var obj = new CuDevicePtr { Handle = handle };

            var result = Environment.Is64BitProcess
                ? UnmapVideoFrame64(_decoder, obj)
                : UnmapVideoFrame(_decoder, obj);

            CheckResult(result);
        }
Beispiel #4
0
 public static extern CuResult IpcGetMemHandle(CuIpcMemHandle *pHandle, CuDevicePtr dptr);
 public CuVideoFrame(CuDevicePtr devicePtr, CuVideoDecoder decoder)
 {
     Handle = devicePtr.Handle;
     _decoder = decoder;
 }
Beispiel #6
0
 public static extern CuResult MapVideoFrame64(CuVideoDecoder decoder, int nPicIdx,
                                               out CuDevicePtr devPtr, out int pitch, ref CuVideoProcParams vpp);
Beispiel #7
0
 public static extern CuResult MemsetD2D32Async(CuDevicePtr dstDevice, IntPtr dstPitch, int ui, IntPtr width, IntPtr height, CuStream hStream);
Beispiel #8
0
 public static extern CuResult MemsetD8(CuDevicePtr dstDevice, byte uc, IntPtr n);
Beispiel #9
0
 public static extern CuResult MemRangeGetAttributes(IntPtr data, IntPtr dataSizes, [MarshalAs(UnmanagedType.LPArray)] MemoryRangeAttribute[] attributes, IntPtr numAttributes, CuDevicePtr devPtr, IntPtr count);
Beispiel #10
0
 public static extern CuResult MemRangeGetAttribute(IntPtr data, IntPtr dataSize, MemoryRangeAttribute attribute, CuDevicePtr devPtr, IntPtr count);
Beispiel #11
0
 public static extern CuResult MemAdvise(CuDevicePtr devPtr, IntPtr count, MemoryAdvice advice, CuDevice device);
Beispiel #12
0
 public static extern CuResult MemPrefetchAsync(CuDevicePtr devPtr, IntPtr count, CuDevice dstDevice, CuStream hStream);
Beispiel #13
0
 public static extern CuResult PointerGetAttribute(IntPtr data, PointerAttribute attribute, CuDevicePtr ptr);
Beispiel #14
0
 public static extern CuResult IpcCloseMemHandle(CuDevicePtr dptr);
Beispiel #15
0
 public static extern CuResult IpcOpenMemHandle(out CuDevicePtr pdptr, CuIpcMemHandle handle, IpcMemoryFlags flags);
Beispiel #16
0
 public static extern CuResult MemsetD16Async(CuDevicePtr dstDevice, short us, IntPtr n, CuStream hStream);
Beispiel #17
0
 public static extern CuResult MemsetD32Async(CuDevicePtr dstDevice, int ui, IntPtr n, CuStream hStream);
Beispiel #18
0
 public static extern void ResizeNv12(
     CuDevicePtr dstNv12, int dstPitch, int dstWidth, int dstHeight,
     CuDevicePtr srcNv12, int srcPitch, int srcWidth, int srcHeight,
     CuDevicePtr dstNv12UV);
Beispiel #19
0
 public static extern CuResult MemsetD2D16Async(CuDevicePtr dstDevice, IntPtr dstPitch, short us, IntPtr width, IntPtr height, CuStream hStream);
Beispiel #20
0
 public static extern CuResult GraphicsResourceGetMappedPointer(out CuDevicePtr pDevPtr, out IntPtr pSize, CuGraphicsResource resource);
Beispiel #21
0
 public static extern CuResult MemsetD16(CuDevicePtr dstDevice, short us, IntPtr n);
Beispiel #22
0
 public static extern CuResult MemsetD32(CuDevicePtr dstDevice, int ui, IntPtr n);
Beispiel #23
0
 public static extern CuResult UnmapVideoFrame64(CuVideoDecoder decoder, CuDevicePtr devPtr);
Beispiel #24
0
 public static extern CuResult MemsetD2D8(CuDevicePtr dstDevice, IntPtr dstPitch, byte uc, IntPtr width, IntPtr height);
Beispiel #25
0
 public static extern CuResult MemsetD2D16(CuDevicePtr dstDevice, IntPtr dstPitch, short us, IntPtr width, IntPtr height);
Beispiel #26
0
 public static extern CuResult MemsetD2D32(CuDevicePtr dstDevice, IntPtr dstPitch, int ui, IntPtr width, IntPtr height);
 private CuDeviceMemory(CuDevicePtr devicePtr)
 {
     Handle = devicePtr.Handle;
 }
Beispiel #28
0
 public static extern CuResult MemsetD8Async(CuDevicePtr dstDevice, byte uc, IntPtr n, CuStream hStream);
Beispiel #29
0
 public static extern CuResult StreamAttachMemAsync(CuStream hStream, CuDevicePtr dptr, IntPtr length, MemoryAttachFlags flags);
Beispiel #30
0
 public static extern CuResult StreamWriteValue64(CuStream stream, CuDevicePtr addr, long value, int flags);