@@ -106,12 +106,12 @@ void GPUTPCDecompression::RegisterMemoryAllocation()
106106{
107107 AllocateAndInitializeLate ();
108108 mMemoryResInputGPU = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersInputGPU, GPUMemoryResource::MEMORY_INPUT_FLAG | GPUMemoryResource::MEMORY_GPU | GPUMemoryResource::MEMORY_EXTERNAL | GPUMemoryResource::MEMORY_SCRATCH, " TPCDecompressionInput" );
109- mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersTmpNativeBuffersGPU, GPUMemoryResource::MEMORY_SCRATCH, " TPCDecompressionTmpBuffersGPU" );
110- mResourceTmpIndexes = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersTmpNativeBuffersOutput, GPUMemoryResource::MEMORY_OUTPUT | GPUMemoryResource::MEMORY_SCRATCH , " TPCDecompressionTmpBuffersOutput" );
111- mResourceTmpClustersOffsets = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersTmpNativeBuffersInput, GPUMemoryResource::MEMORY_INPUT | GPUMemoryResource::MEMORY_SCRATCH , " TPCDecompressionTmpBuffersInput" );
112- mResourceTmpBufferBeforeFiltering = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersTmpClusterNativeAccessForFiltering, GPUMemoryResource::MEMORY_CUSTOM | GPUMemoryResource::MEMORY_SCRATCH, " TPCDecompressionTmpBufferForFiltering" );
113- mResourceClusterNativeAccess = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersInputClusterNativeAccess, GPUMemoryResource::MEMORY_INPUT | GPUMemoryResource::MEMORY_CUSTOM | GPUMemoryResource::MEMORY_SCRATCH , " TPCDecompressionTmpClusterAccessForFiltering" );
114- mResourceNClusterPerSectorRow = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersNClusterPerSectorRow, GPUMemoryResource::MEMORY_OUTPUT | GPUMemoryResource::MEMORY_CUSTOM | GPUMemoryResource::MEMORY_SCRATCH , " TPCDecompressionTmpClusterCountForFiltering" );
109+ mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersTmpNativeBuffersGPU, GPUMemoryResource::MEMORY_SCRATCH | GPUMemoryResource::MEMORY_STACK , " TPCDecompressionTmpBuffersGPU" );
110+ mResourceTmpIndexes = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersTmpNativeBuffersOutput, GPUMemoryResource::MEMORY_OUTPUT | GPUMemoryResource::MEMORY_STACK , " TPCDecompressionTmpBuffersOutput" );
111+ mResourceTmpClustersOffsets = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersTmpNativeBuffersInput, GPUMemoryResource::MEMORY_INPUT | GPUMemoryResource::MEMORY_STACK , " TPCDecompressionTmpBuffersInput" );
112+ mResourceTmpBufferBeforeFiltering = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersTmpClusterNativeAccessForFiltering, GPUMemoryResource::MEMORY_CUSTOM | GPUMemoryResource::MEMORY_SCRATCH | GPUMemoryResource::MEMORY_STACK , " TPCDecompressionTmpBufferForFiltering" );
113+ mResourceClusterNativeAccess = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersInputClusterNativeAccess, GPUMemoryResource::MEMORY_INPUT | GPUMemoryResource::MEMORY_CUSTOM | GPUMemoryResource::MEMORY_STACK , " TPCDecompressionTmpClusterAccessForFiltering" );
114+ mResourceNClusterPerSectorRow = mRec ->RegisterMemoryAllocation (this , &GPUTPCDecompression::SetPointersNClusterPerSectorRow, GPUMemoryResource::MEMORY_OUTPUT | GPUMemoryResource::MEMORY_CUSTOM | GPUMemoryResource::MEMORY_STACK , " TPCDecompressionTmpClusterCountForFiltering" );
115115}
116116
117117void GPUTPCDecompression::SetMaxData (const GPUTrackingInOutPointers& io)
0 commit comments