14
Parallel Implementation of Parallel Implementation of the KFParticle Vertexing Package for the KFParticle Vertexing Package for the CBM and ALICE Experiments the CBM and ALICE Experiments Ivan Kisel Ivan Kisel 1,2,3 1,2,3 , Igor Kulakov , Igor Kulakov 1,4 1,4 , , Maksym Zyzak Maksym Zyzak 1,4 1,4 1 – Goethe-Universität Frankfurt, Frankfurt am Main, Germany 1 – Goethe-Universität Frankfurt, Frankfurt am Main, Germany 2 – Frankfurt Institute for Advanced Studies, Frankfurt am Main, Germany 2 – Frankfurt Institute for Advanced Studies, Frankfurt am Main, Germany 3 – 3 – GSI Helmholtzzentrum für Schwerionenforschung GmbH, Darmstadt, Germany GSI Helmholtzzentrum für Schwerionenforschung GmbH, Darmstadt, Germany 4 – Taras Shevchenko National University of Kyiv, Kyiv, Ukraine 4 – Taras Shevchenko National University of Kyiv, Kyiv, Ukraine Computing in High Energy and Nuclear Physics Computing in High Energy and Nuclear Physics 24 May 2012 24 May 2012 New York New York

Ivan Kisel 1,2,3 , Igor Kulakov 1,4 , Maksym Zyzak 1,4

  • Upload
    lionel

  • View
    55

  • Download
    1

Embed Size (px)

DESCRIPTION

Parallel Implementation of the KFParticle Vertexing Package for the CBM and ALICE Experiments. Ivan Kisel 1,2,3 , Igor Kulakov 1,4 , Maksym Zyzak 1,4 1 – Goethe- Universität Frankfurt, Frankfurt am Main, Germany - PowerPoint PPT Presentation

Citation preview

Page 1: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

Parallel Implementation of Parallel Implementation of the KFParticle Vertexing Package for the KFParticle Vertexing Package for

the CBM and ALICE Experimentsthe CBM and ALICE Experiments

Ivan KiselIvan Kisel1,2,31,2,3, Igor Kulakov , Igor Kulakov 1,41,4, , Maksym Maksym ZyzakZyzak1,41,4

1 – Goethe-Universität Frankfurt, Frankfurt am Main, Germany1 – Goethe-Universität Frankfurt, Frankfurt am Main, Germany2 – Frankfurt Institute for Advanced Studies, Frankfurt am Main, 2 – Frankfurt Institute for Advanced Studies, Frankfurt am Main, GermanyGermany3 – 3 – GSI Helmholtzzentrum für Schwerionenforschung GmbH, Darmstadt, GSI Helmholtzzentrum für Schwerionenforschung GmbH, Darmstadt, GermanyGermany4 – Taras Shevchenko National University of Kyiv, Kyiv, Ukraine4 – Taras Shevchenko National University of Kyiv, Kyiv, Ukraine

Computing in High Energy and Nuclear PhysicsComputing in High Energy and Nuclear Physics24 May 201224 May 2012

New YorkNew York

Page 2: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

ContentContent

• Concept of the KFParticle package

• The block-diagram of KFParticle algorithm

• Functionality of the KFParticle package

• SIMDized KFParticle

• Particles finding with the SIMDized KFParticle package

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 22/14/14

Page 3: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 33/14/14

Reconstruction of Vertices and Decayed ParticlesReconstruction of Vertices and Decayed Particles

DD00DD00

KK--

++

AliKFVertex PrimVtx( ESDPrimVtx ); // Set primary vertex// Set daughters

AliKFParticle K( ESDp1, -321 ), pi( ESDp2, 211 );

AliKFParticle D0( K, pi ); // Construct mother

PrimVtx += D0; // Improve the primary

vertex.

D0.SetProductionVertex( PrimVtx ); // m3 is fully

fitted

K.SetProductionVertex( D0 ); // K is fully fitted

pi.SetProductionVertex( D0 ); // pi is fully fitted

r = { x, y, z, px, py, pz, E }

Position, direction and momentum

State vector

• Mother and daughter particles have the same state vector and are treated in the same way

Geometry independent

Reconstruction of decay chains

Kalman filter (KF) based

x, y, z, px, y, z, pxx, p, pyy, p, pzz, E, m, L, c, E, m, L, cx, y, z, px, y, z, pxx, p, pyy, p, pzz, E, m, L, c, E, m, L, c

KFParticle: powerful tool for physics analysis

KFParticle: powerful tool for physics analysis

Page 4: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

ExperimentsExperiments

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 44/14/14

CBM (FAIR, Germany) – a fixed-target experiment

KFParticle is developed based on the ALICE and CBM experiments.

• Up to 1000 charged particles/collision

• Non-homogeneous magnetic field

• 107 AuAu collisions/sec

• Reconstruction of the full event topology is required in the first level trigger

• The speed and efficiency of the reconstruction is crucial

• Few 1000s charged particles/collision

• High statistic is collected – a speed of short-lived particles reconstruction is important for the physics analysis

ALICE (CERN, Switzerland) – a collider experiment

Page 5: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

KFParticle AlgorithmKFParticle Algorithm

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 55/14/14

The mathematics is described in:S. Gorbunov and I. Kisel, Reconstruction of decayed particles based on the Kalman filter. CBM-SOFT-note-2007-003, 7 May 2007

Initial approximatio

nr0, C0

Estimation of

parameters and their

errorsrn, Cn

Filtering a daughter particle

usingthe Kalman

Filter mathematics

Transport of a daughter to the

decay point

n p

artic

les

n p

art

icle

s

N ite

ratio

ns

N ite

rati

on

s

r0, C0 r0i, C0 rn

i, Cni rn, Cn

N iterations

rki, Ck

i

Page 6: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

Structure of KFParticleStructure of KFParticle

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 66/14/14

Intermediate level (for advanced users)

• Feasibility studies• Reconstruction of particles• Reconstruction of decay chains

Low level (for developers, basic functionality)

• Transport functions• Calculation of distances and

deviations between particles, a particle and a point

• KF mathematics• Constraints

High level or KFParticle-Light (for users and triggering)

• Reconstruction of standard decays (K0

s, hyperons, D0-mesons,…)

• Reconstruction of event topology• On-line selection of events

Page 7: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

Functionality in ALICE and CBMFunctionality in ALICE and CBM

Functions ALICE CBMConstruct, SetMassConstraint, SetProductionVertex, SetVtxGuess + +

GetMass, GetMomentum, GetDecayLength, GetLifeTime + +

GetDecayLengthXY, GetPhi, GetR +Extrapolate, TransportToProductionVertex(), TransportToDecayVertex() + +

TransportToPoint, TransportToVertex, TransportToParticle, TransportToDS, +

GetDStoPoint + +GetDStoParticle, GetDStoParticleXY, GetDistanceFromVertex, GetDistanceFromVertexXY, GetDistanceFromParticle, GetDistanceFromParticleXY, GetDeviationFromVertex, GetDeviationFromVertexXY, GetDeviationFromParticle, GetDeviationFromParticleXY

+

GetAngle, GetAngleXY, GetAngleRZ +

SubtractFromVertex, ConstructGamma +

SetNoDecayLength, +=, -= +

Particles finder +

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 77/14/14

Functionality becomes more and more advanced

Page 8: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

SIMDization of KFParticleSIMDization of KFParticle

• KFParticle has been SIMDized

• The reconstruction quality is the same for the scalar version and the SIMD version:

– Λ reconstruction in CBM

– D0 reconstruction in ALICE (using MC data)

• Speedup factor of 5 for CBM and 3 for ALICE has been achieved

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 88/14/14

Resolution Pull

  M, MeV/c2 X, cm Y, cm Z, cm M X Y Z

Scalar 1.2 0.011 0.015 0.18 1.54 1.50 1.42 1.63

SIMD 1.2 0.013 0.015 0.18 1.54 1.51 1.50 1.69

Resolution Pull

  M, MeV/c2 X, cm Y, cm Z, cm M X Y Z

Scalar 18.4 0.012 0.011 0.016 1.16 1.15 1.12 1.12

SIMD 18.5 0.012 0.012 0.016 1.19 1.16 1.15 1.11

Page 9: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

ExamplesExamples

Scalar versionAliKFParticle P1, P2;

P1 = AliKFParticle( *pTrack, PDG );

AliKFParticle V0( P1, P2);

Double_t length, sigmaLength;V0.GetDecayLength( length, sigmaLength ) ;Double_t mass, sigmaMass;V0.GetMass(mass, sigmaMass ) ;

TH1F *MassDistribution;…MassDistribution->Fill(mass[i]);

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 99/14/14

SIMD versionAliKFParticle P1[fvecLen], P2[fvecLen];for(int i=0; i<fvecLen; i++) P1[i] = AliKFParticle( *pTrack, PDG );AliKFParticleSIMD PartPos( P1, PDG );AliKFParticleSIMD PartNeg( P2, PDG2 );AliKFParticleSIMD V0( PartPos, PartNeg );

fvec length, sigmaLength;V0.GetDecayLength( length, sigmaLength ) ;fvec mass, sigmaMass;V0.GetMass( mass, sigmaMass );

TH1F *MassDistribution;…for(int i=0;i<fvecLen; i++) MassDistribution->Fill( mass[i] );

Page 10: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 1010/14/14

KF Particle Finder for the CBM ExperimentKF Particle Finder for the CBM Experiment

Tracks: e±, μ±, π±, K±, p±

secondary and primary

Strange particles:K0

s → π+ π-

Λ → p π-

Λ → π+ p-

Gammaγ → e- e+

Strange resonancesK*0 → K+ π-

K*0 → π+ K-

Λ* → p K-

Λ* → p- K+

Light vector mesons:ρ → e- e+

ρ → μ- μ+

ω → e- e+

ω → μ- μ+

φ → e- e+

φ → μ- μ+

φ → K- K+

Charmonium:J/Ψ → e- e+

J/Ψ → μ- μ+

Multi-strange resonances:

Ξ*0 → Ξ- π+

Ξ*0 → Ξ+ π-

Ω*- → Ξ- π+ K-

Ω*+ → Ξ+ π- K+

Open-charm:D0 → π+ K-

D0 → π+ π+ π- K-

D0 → π- K+

D0 → π- π- π+ K+

D+ → π+ π+ K-

D- → π- π- K+

Ds+ → π+ K+ K-

Ds- → π- K+ K-

Λc → π+ K- p Multi-strange hyperons:

Ξ- → Λ π-

Ξ+ → Λ π+

Ω- → Λ K-

Ω+ → Λ K+

Strange and multi-strange resonances:

Σ*+ → Λ π+

Σ*+ → Λ π-

Σ*- → Λ π-

Σ*- → Λ π+

K*- → K0s π-

K*+ → K0s π+

Ξ*- → Λ K-

Ξ*+ → Λ K+

Open-charm resonances:

D*0 → D+ π-

D*0 → D- π+

D*+ → D0 π+

D*- → D0 π-

Page 11: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

Characteristics of the Particle Finder for CBMCharacteristics of the Particle Finder for CBM

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 1111/14/14

central AuAu collisions at 25 AGeV

Particle : Eff Ghost BackGr N Ghost N BackGr N Reco N Clone | N MCKshort : 0.249 0.972 0.015 18155772 284536 242696 254 | 972992Lambda : 0.201 0.972 0.014 18155772 257777 269527 181 | 1341971Lambda b : 0.213 0.972 0.028 18155772 526299 1187 0 | 5568Xi- : 0.023 0.969 0.001 22934 25 708 0 | 30198Xi+ : 0.026 1.000 0.000 21842 1 9 0 | 348Omega- : 0.020 0.955 0.044 8869 411 10 0 | 506Omega+ : 0.000 0.999 0.001 9391 6 0 0 | 11

UrQMD events, central AuAu collisions at 25 AGeV, 80 kEvents, w/o PID

Efficiencies of the KF Particle Finder (job summary)

Signal of the found particlesMultiplicities times branching ratio, heavy ion collisions, statistical model

The speed of the package:•central AuAu collisions at 25 AGeV – 11.7 ms/event•minbias AuAu collisions at 25 AGeV – 1.5 ms/event

Page 12: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 1212/14/14

Scalability on Many-core SystemScalability on Many-core System

Given n threads each filled with 1000 events, run them on specific n logical cores, 1 thread per 1 core.AuAu mbias events at 25 AGeV

• The KF Particle Finder has been parallelized using Intel TBB.

• The KF Particle Finder shows linear scalability on many-core machines (the scalability on a computer with 80 cores is shown).

Page 13: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

Unification of ALICE and CBM KFParticleUnification of ALICE and CBM KFParticle

• The unified KFParticle package has been created and tested within the CBMRoot framework.

• The unified package has the functionality of both ALICE and CBM.

• The first tests have been done using CbmV0Analysis.

• The unified KFParticle and CbmKFParticle show similar results.

• Further tests of the package functionality will be done.

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 1313/14/14

K0s Λ

Page 14: Ivan Kisel 1,2,3 , Igor  Kulakov 1,4 ,  Maksym  Zyzak 1,4

24 May 201224 May 2012 Igor Kulakov, CHEP 2012, New YorkIgor Kulakov, CHEP 2012, New York 1414/14/14

Summary and PlansSummary and Plans

Summary

•The KFParticle package is a particle reconstruction package with a rich functionality. The functionality becomes more and more advanced.

•KFParticle has been SIMDized. SIMDized version shows the same results.

•The unified version of the KFParticle has been created.

•The particles finder has been developed based on the SIMDized KFParticle package. About 50 particles (decay channels) are included.

•The algorithm shows high speed (1.5 ms per mbias AuAu event at 25 AGeV) and efficiency, shows linear scalability on many-core systems.

Plans

•Increase the functionality of the package, create the KFParticle library.

•Implement statistical methods for the particle reconstruction and selection based on KFParticle.

•Add adaptive methods (DAF, PDAF, etc.) to KFParticle.

•Implement using parallel languages (ArBB and OpenCL), implement on GPUs.