Skip to content

Commit

Permalink
Next prototype of the framework integration (#100)
Browse files Browse the repository at this point in the history
Provide a mechanism for a chain of modules to share a resource, that can be e.g. CUDA device memory or a CUDA stream.
Minimize data movements between the CPU and the device, and support multiple devices.
Allow the same job configuration to be used on all hardware combinations.

See HeterogeneousCore/CUDACore/README.md for a more detailed description and examples.
  • Loading branch information
makortel authored and fwyzard committed Jan 15, 2021
1 parent 5b3bc29 commit 00dcadd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def customizePixelTracksForProfilingDisableConversion(process):
process = customizePixelTracksForProfiling(process)

# Disable conversions to legacy
process.siPixelClustersPreSplitting.gpuEnableConversion = False
process.siPixelRecHitsPreSplitting.gpuEnableConversion = False
process.pixelTracksHitQuadruplets.gpuEnableConversion = False
process.pixelTracks.gpuEnableConversion = False
Expand All @@ -33,7 +32,6 @@ def customizePixelTracksForProfilingDisableTransfer(process):
process = customizePixelTracksForProfilingDisableConversion(process)

# Disable "unnecessary" transfers to CPU
process.siPixelClustersPreSplitting.gpuEnableTransfer = False
process.siPixelRecHitsPreSplitting.gpuEnableTransfer = False
process.pixelTracksHitQuadruplets.gpuEnableTransfer = False
process.pixelVertices.gpuEnableTransfer = False
Expand Down
1 change: 1 addition & 0 deletions RecoPixelVertexing/PixelTriplets/test/BuildFile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
</bin>
<bin file="PixelTriplets_InvPrbl_prec.cpp">
<use name="RecoPixelVertexing/PixelTriplets"/>
<flags NO_TESTRUN="1"/>
</bin>

<bin file="fastDPHI_t.cpp"/>
Expand Down

0 comments on commit 00dcadd

Please sign in to comment.