Skip to content

Commit

Permalink
EcalUncalibRecHitProducerGPU: remove unused "shouldTransferToHost" pa…
Browse files Browse the repository at this point in the history
…rameter (#463)
  • Loading branch information
fwyzard committed Nov 16, 2020
1 parent 01afe10 commit 6b421cb
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ class EcalUncalibRecHitProducerGPU : public edm::stream::EDProducer<edm::Externa
// event data
ecal::multifit::EventOutputDataGPU eventOutputDataGPU_;
ecal::multifit::EventDataForScratchGPU eventDataForScratchGPU_;
bool shouldTransferToHost_{true};

cms::cuda::ContextState cudaState_;

Expand Down Expand Up @@ -128,7 +127,6 @@ void EcalUncalibRecHitProducerGPU::fillDescriptions(edm::ConfigurationDescriptio
desc.add<double>("amplitudeThresholdEB", 10);
desc.add<double>("amplitudeThresholdEE", 10);
desc.add<uint32_t>("maxNumberHits", 20000); //---- AM TEST
desc.add<bool>("shouldTransferToHost", true);
desc.add<std::vector<uint32_t>>("kernelMinimizeThreads", {32, 1, 1});
// ---- default false or true? It was set to true, but at HLT it is false
desc.add<bool>("shouldRunTimingComputation", false);
Expand Down Expand Up @@ -174,9 +172,6 @@ EcalUncalibRecHitProducerGPU::EcalUncalibRecHitProducerGPU(const edm::ParameterS
// max number of digis to allocate for
maxNumberHits_ = ps.getParameter<uint32_t>("maxNumberHits");

// transfer to host switch
shouldTransferToHost_ = ps.getParameter<bool>("shouldTransferToHost");

// switch to run timing computation kernels
configParameters_.shouldRunTimingComputation = ps.getParameter<bool>("shouldRunTimingComputation");

Expand Down

0 comments on commit 6b421cb

Please sign in to comment.