Skip to content

Commit

Permalink
Bugfix: add missing GPU memory free to PixelCPEFast (cms-sw#570)
Browse files Browse the repository at this point in the history
  • Loading branch information
fwyzard committed Nov 12, 2020
1 parent 7447a4a commit 5348fee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions RecoLocalTracker/SiPixelRecHits/src/PixelCPEFast.cc
Expand Up @@ -311,6 +311,7 @@ PixelCPEFast::GPUData::~GPUData() {
cudaFree((void*)h_paramsOnGPU.m_commonParams);
cudaFree((void*)h_paramsOnGPU.m_detParams);
cudaFree((void*)h_paramsOnGPU.m_averageGeometry);
cudaFree((void*)h_paramsOnGPU.m_layerGeometry);
cudaFree(d_paramsOnGPU);
}
}
Expand Down

0 comments on commit 5348fee

Please sign in to comment.