Ejemplo n.º 1
0
 public CuDevicePtrSafe(
     CuDevicePtr devicePtr,
     CuDevicePtrDeallocator deallocator)
 {
     DevicePtr = devicePtr;
     _deallocator = deallocator;
 }
Ejemplo n.º 2
0
        /// <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);
        }
Ejemplo n.º 3
0
        /// <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);
        }
Ejemplo n.º 4
0
 public static extern CuResult IpcGetMemHandle(CuIpcMemHandle *pHandle, CuDevicePtr dptr);
Ejemplo n.º 5
0
 public CuVideoFrame(CuDevicePtr devicePtr, CuVideoDecoder decoder)
 {
     Handle = devicePtr.Handle;
     _decoder = decoder;
 }
Ejemplo n.º 6
0
 public static extern CuResult MapVideoFrame64(CuVideoDecoder decoder, int nPicIdx,
                                               out CuDevicePtr devPtr, out int pitch, ref CuVideoProcParams vpp);
Ejemplo n.º 7
0
 public static extern CuResult MemsetD2D32Async(CuDevicePtr dstDevice, IntPtr dstPitch, int ui, IntPtr width, IntPtr height, CuStream hStream);
Ejemplo n.º 8
0
 public static extern CuResult MemsetD8(CuDevicePtr dstDevice, byte uc, IntPtr n);
Ejemplo n.º 9
0
 public static extern CuResult MemRangeGetAttributes(IntPtr data, IntPtr dataSizes, [MarshalAs(UnmanagedType.LPArray)] MemoryRangeAttribute[] attributes, IntPtr numAttributes, CuDevicePtr devPtr, IntPtr count);
Ejemplo n.º 10
0
 public static extern CuResult MemRangeGetAttribute(IntPtr data, IntPtr dataSize, MemoryRangeAttribute attribute, CuDevicePtr devPtr, IntPtr count);
Ejemplo n.º 11
0
 public static extern CuResult MemAdvise(CuDevicePtr devPtr, IntPtr count, MemoryAdvice advice, CuDevice device);
Ejemplo n.º 12
0
 public static extern CuResult MemPrefetchAsync(CuDevicePtr devPtr, IntPtr count, CuDevice dstDevice, CuStream hStream);
Ejemplo n.º 13
0
 public static extern CuResult PointerGetAttribute(IntPtr data, PointerAttribute attribute, CuDevicePtr ptr);
Ejemplo n.º 14
0
 public static extern CuResult IpcCloseMemHandle(CuDevicePtr dptr);
Ejemplo n.º 15
0
 public static extern CuResult IpcOpenMemHandle(out CuDevicePtr pdptr, CuIpcMemHandle handle, IpcMemoryFlags flags);
Ejemplo n.º 16
0
 public static extern CuResult MemsetD16Async(CuDevicePtr dstDevice, short us, IntPtr n, CuStream hStream);
Ejemplo n.º 17
0
 public static extern CuResult MemsetD32Async(CuDevicePtr dstDevice, int ui, IntPtr n, CuStream hStream);
Ejemplo n.º 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);
Ejemplo n.º 19
0
 public static extern CuResult MemsetD2D16Async(CuDevicePtr dstDevice, IntPtr dstPitch, short us, IntPtr width, IntPtr height, CuStream hStream);
Ejemplo n.º 20
0
 public static extern CuResult GraphicsResourceGetMappedPointer(out CuDevicePtr pDevPtr, out IntPtr pSize, CuGraphicsResource resource);
Ejemplo n.º 21
0
 public static extern CuResult MemsetD16(CuDevicePtr dstDevice, short us, IntPtr n);
Ejemplo n.º 22
0
 public static extern CuResult MemsetD32(CuDevicePtr dstDevice, int ui, IntPtr n);
Ejemplo n.º 23
0
 public static extern CuResult UnmapVideoFrame64(CuVideoDecoder decoder, CuDevicePtr devPtr);
Ejemplo n.º 24
0
 public static extern CuResult MemsetD2D8(CuDevicePtr dstDevice, IntPtr dstPitch, byte uc, IntPtr width, IntPtr height);
Ejemplo n.º 25
0
 public static extern CuResult MemsetD2D16(CuDevicePtr dstDevice, IntPtr dstPitch, short us, IntPtr width, IntPtr height);
Ejemplo n.º 26
0
 public static extern CuResult MemsetD2D32(CuDevicePtr dstDevice, IntPtr dstPitch, int ui, IntPtr width, IntPtr height);
Ejemplo n.º 27
0
 private CuDeviceMemory(CuDevicePtr devicePtr)
 {
     Handle = devicePtr.Handle;
 }
Ejemplo n.º 28
0
 public static extern CuResult MemsetD8Async(CuDevicePtr dstDevice, byte uc, IntPtr n, CuStream hStream);
Ejemplo n.º 29
0
 public static extern CuResult StreamAttachMemAsync(CuStream hStream, CuDevicePtr dptr, IntPtr length, MemoryAttachFlags flags);
Ejemplo n.º 30
0
 public static extern CuResult StreamWriteValue64(CuStream stream, CuDevicePtr addr, long value, int flags);