PxGpuCopyDescQueue.h

Go to the documentation of this file.
00001 //
00002 // Redistribution and use in source and binary forms, with or without
00003 // modification, are permitted provided that the following conditions
00004 // are met:
00005 //  * Redistributions of source code must retain the above copyright
00006 //    notice, this list of conditions and the following disclaimer.
00007 //  * Redistributions in binary form must reproduce the above copyright
00008 //    notice, this list of conditions and the following disclaimer in the
00009 //    documentation and/or other materials provided with the distribution.
00010 //  * Neither the name of NVIDIA CORPORATION nor the names of its
00011 //    contributors may be used to endorse or promote products derived
00012 //    from this software without specific prior written permission.
00013 //
00014 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
00015 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00016 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
00017 // PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
00018 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00019 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00020 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00021 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
00022 // OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
00023 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
00024 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00025 //
00026 // Copyright (c) 2008-2018 NVIDIA Corporation. All rights reserved.
00027 
00028 #ifndef PXCUDACONTEXTMANAGER_PXGPUCOPYDESCQUEUE_H
00029 #define PXCUDACONTEXTMANAGER_PXGPUCOPYDESCQUEUE_H
00030 
00031 #include "foundation/PxPreprocessor.h"
00032 
00033 #if PX_SUPPORT_GPU_PHYSX
00034 
00035 #include "foundation/PxAssert.h"
00036 #include "task/PxTaskDefine.h"
00037 #include "task/PxGpuDispatcher.h"
00038 #include "cudamanager/PxGpuCopyDesc.h"
00039 #include "cudamanager/PxCudaContextManager.h"
00040 
00041 /* forward decl to avoid including <cuda.h> */
00042 typedef struct CUstream_st* CUstream;
00043 
00044 namespace physx
00045 {
00046 
00047 PX_PUSH_PACK_DEFAULT
00048 
00050 class PxGpuCopyDescQueue
00051 {
00052 public:
00054     PxGpuCopyDescQueue(PxGpuDispatcher& d)
00055         : mDispatcher(d)
00056         , mBuffer(0)
00057         , mStream(0)
00058         , mReserved(0)
00059         , mOccupancy(0)
00060         , mFlushed(0)
00061     {
00062     }
00063 
00065     ~PxGpuCopyDescQueue()
00066     {
00067         if (mBuffer)
00068         {
00069             mDispatcher.getCudaContextManager()->getMemoryManager()->free(PxCudaBufferMemorySpace::T_PINNED_HOST, (size_t) mBuffer);
00070         }
00071     }
00072 
00078     void reset(CUstream stream, uint32_t reserveSize)
00079     {
00080         if (reserveSize > mReserved)
00081         {
00082             if (mBuffer)
00083             {
00084                 mDispatcher.getCudaContextManager()->getMemoryManager()->free(
00085                     PxCudaBufferMemorySpace::T_PINNED_HOST,
00086                     (size_t) mBuffer);
00087                 mReserved = 0;
00088             }
00089             mBuffer = (PxGpuCopyDesc*) mDispatcher.getCudaContextManager()->getMemoryManager()->alloc(
00090                           PxCudaBufferMemorySpace::T_PINNED_HOST,
00091                           reserveSize * sizeof(PxGpuCopyDesc),
00092                           PX_ALLOC_INFO("PxGpuCopyDescQueue", GPU_UTIL));
00093             if (mBuffer)
00094             {
00095                 mReserved = reserveSize;
00096             }
00097         }
00098 
00099         mOccupancy = 0;
00100         mFlushed = 0;
00101         mStream = stream;
00102     }
00103 
00105     void enqueue(PxGpuCopyDesc& desc)
00106     {
00107         PX_ASSERT(desc.isValid());
00108         if (desc.bytes == 0)
00109         {
00110             return;
00111         }
00112 
00113         if (mOccupancy < mReserved)
00114         {
00115             mBuffer[ mOccupancy++ ] = desc;
00116         }
00117         else
00118         {
00119             mDispatcher.launchCopyKernel(&desc, 1, mStream);
00120         }
00121     }
00122 
00124     void flushEnqueued()
00125     {
00126         if (mOccupancy > mFlushed)
00127         {
00128             mDispatcher.launchCopyKernel(mBuffer + mFlushed, mOccupancy - mFlushed, mStream);
00129             mFlushed = mOccupancy;
00130         }
00131     }
00132 
00133 private:
00134     PxGpuDispatcher&    mDispatcher;
00135     PxGpuCopyDesc*  mBuffer;
00136     CUstream        mStream;
00137     uint32_t        mReserved;
00138     uint32_t        mOccupancy;
00139     uint32_t        mFlushed;
00140 
00141     void operator=(const PxGpuCopyDescQueue&); // prevent a warning...
00142 };
00143 
00144 PX_POP_PACK
00145 
00146 } // end physx namespace
00147 
00148 #endif // PX_SUPPORT_GPU_PHYSX
00149 #endif // PXCUDACONTEXTMANAGER_PXGPUCOPYDESCQUEUE_H


Copyright © 2008-2018 NVIDIA Corporation, 2701 San Tomas Expressway, Santa Clara, CA 95050 U.S.A. All rights reserved. www.nvidia.com