12 research outputs found

    Development of a heterogeneous clustering algorithm for particle shower reconstruction in high energy physics using the SYCL abstraction layer

    Get PDF
    Nei prossimi anni è atteso un aggiornamento sostanziale di LHC, che prevede di aumentare la luminosità integrata di un fattore 10 rispetto a quella attuale. Tale parametro è proporzionale al numero di collisioni per unità di tempo. Per questo, le risorse computazionali necessarie a tutti i livelli della ricostruzione cresceranno notevolmente. Dunque, la collaborazione CMS ha cominciato già da alcuni anni ad esplorare le possibilità offerte dal calcolo eterogeneo, ovvero la pratica di distribuire la computazione tra CPU e altri acceleratori dedicati, come ad esempio schede grafiche (GPU). Una delle difficoltà di questo approccio è la necessità di scrivere, validare e mantenere codice diverso per ogni dispositivo su cui dovrà essere eseguito. Questa tesi presenta la possibilità di usare SYCL per tradurre codice per la ricostruzione di eventi in modo che sia eseguibile ed efficiente su diversi dispositivi senza modifiche sostanziali. SYCL è un livello di astrazione per il calcolo eterogeneo, che rispetta lo standard ISO C++. Questo studio si concentra sul porting di un algoritmo di clustering dei depositi di energia calorimetrici, CLUE, usando oneAPI, l'implementazione SYCL supportata da Intel. Inizialmente, è stato tradotto l'algoritmo nella sua versione standalone, principalmente per prendere familiarità con SYCL e per la comodità di confronto delle performance con le versioni già esistenti. In questo caso, le prestazioni sono molto simili a quelle di codice CUDA nativo, a parità di hardware. Per validare la fisica, l'algoritmo è stato integrato all'interno di una versione ridotta del framework usato da CMS per la ricostruzione. I risultati fisici sono identici alle altre implementazioni mentre, dal punto di vista delle prestazioni computazionali, in alcuni casi, SYCL produce codice più veloce di altri livelli di astrazione adottati da CMS, presentandosi dunque come una possibilità interessante per il futuro del calcolo eterogeneo nella fisica delle alte energie

    PlayeRank: data-driven performance evaluation and player ranking in soccer via a machine learning approach

    Full text link
    The problem of evaluating the performance of soccer players is attracting the interest of many companies and the scientific community, thanks to the availability of massive data capturing all the events generated during a match (e.g., tackles, passes, shots, etc.). Unfortunately, there is no consolidated and widely accepted metric for measuring performance quality in all of its facets. In this paper, we design and implement PlayeRank, a data-driven framework that offers a principled multi-dimensional and role-aware evaluation of the performance of soccer players. We build our framework by deploying a massive dataset of soccer-logs and consisting of millions of match events pertaining to four seasons of 18 prominent soccer competitions. By comparing PlayeRank to known algorithms for performance evaluation in soccer, and by exploiting a dataset of players' evaluations made by professional soccer scouts, we show that PlayeRank significantly outperforms the competitors. We also explore the ratings produced by {\sf PlayeRank} and discover interesting patterns about the nature of excellent performances and what distinguishes the top players from the others. At the end, we explore some applications of PlayeRank -- i.e. searching players and player versatility --- showing its flexibility and efficiency, which makes it worth to be used in the design of a scalable platform for soccer analytics

    Evaluating Performance Portability with the CMS Heterogeneous Pixel Reconstruction code

    Get PDF
    In the past years the landscape of tools for expressing parallel algorithms in a portable way across various compute accelerators has continued to evolve significantly. There are many technologies on the market that provide portability between CPU, GPUs from several vendors, and in some cases even FPGAs. These technologies include C++ libraries such as Alpaka and Kokkos, compiler directives such as OpenMP, the SYCL open specification that can be implemented as a library or in a compiler, and standard C++ where the compiler is solely responsible for the offloading. Given this developing landscape, users have to choose the technology that best fits their applications and constraints. For example, in the CMS experiment the experience so far in heterogeneous reconstruction algorithms suggests that the full application contains a large number of relatively short computational kernels and memory transfer operations. In this work we use a stand-alone version of the CMS heterogeneous pixel reconstruction code as a realistic use case of HEP reconstruction software that is capable of leveraging GPUs effectively. We summarize the experience of porting this code base from CUDA to Alpaka, Kokkos, SYCL, std::par, and OpenMP offloading. We compare the event processing throughput achieved by each version on NVIDIA and AMD GPUs as well as on a CPU, and compare those to what a native version of the code achieves on each platform

    Random walk in the quarter plane: numerical methods.

    No full text
    Random walks in the quarter-plane are frequently used to model queueing problems, they belong to the family of Quasi-Birth-Death processes and they are widely studied in literature. The main purpose of this thesis is to analyze and compare algorithms that allow us to calculate the invariant measure of the random walk when it is modelled as a discrete time Markov chain or as a continuous time Markov process. We do this with two approaches deeply diferent from each other. The first, based on the works of Bini et al., is an operator approach. The transition operator of this kind of process is semi-infinite, block-tridiagonal, almost block-Toeplitz with semi-infinite almost-Toeplitz blocks; the idea behind this approach is to adapt, to the infinite case, the avaliable algorithms valid for blocks of finite size. To do this we need first to define the right space which these infinite blocks belong to and then to build an arithmetic in it. In particular we focus on the algorithm of Cyclic Reduction and on the matrix geometric approach. We prove that, similarly to the finite case, this algorithm converges to the minimal solution of certain quadratic operator equations from which we can build the invariant probability vector. The second approach, named compensation approach, is based on the works of Adan. This is a more practical approach that exploits the structure of the equilibrium equations in the interior of the quarter plane by imposing that linear combinations of product forms satisfy these equations. This leads to a kernel equation for the terms appearing in the product forms. Then, it is required that these linear combinations satisfy the equilibrium equations on the boundaries as well. As it turns out, this can be done by alternatingly compensating for the errors on the two boundaries, which eventually leads to infinite series of product forms. Convergence of these series is a crucial issue, some sufficient conditions for the convergence of these series are provided. After introducing the two approaches and relying on the work of Kapodistria, we provide a comparison of the two approaches on both a theoretical and a computational basis. Some results are stated, in particular we show that eigenvalues and eigenvectors of the operators that we calculate in the first approach can be obtained in the construction of the infinite series of product forms in the compensation approach. An accurate numerical simulation is carried out relying on test problems taken from the current literature. It turns out that the applicability of the compensation approach is more restricted than the operator approach. On the other hand it shows a better performance in terms of accuracy. In fact the compensation approach provide approximation with very small relative error, whereas the operator approach in the current implementation does not maintain a uniform bound to the relative error, even though the absolute error in the approximation is quite small. The thesis is organized as follows. In Chapter 1 we describe the problem of the random walk in the quarter plane, we model it as a Markov chain and we recall some of the most important definitions and results about the subject. In Chapter 2 we extend the matrix geometric approach to the infinite case, we introduce the space of Quasi-Toeplitz operators and we describe a machine arithmetic for it. Chapter 3 concerns the Cyclic Reduction algorithm: we recall this algorithm together with its properties valid in the finite case, then we present its extension to the infinite case. In Chapter 4 we describe the compensation approach and we put it in relation with the operator approach. Finally, in Chapter 5 we exhibit the numerical results of our experimentation

    Block Sorting-Based Transformations on Words: Beyond the Magic BWT

    No full text
    The Burrows-Wheeler Transform (BWT) is a word transformation introduced in 1994 for Data Compression and later results have contributed to make it a fundamental tool for the design of self-indexing compressed data structures. The Alternating Burrows-Wheeler Transform (ABWT) is a more recent transformation, studied in the context of Combinatorics on Words, that works in a similar way, using an alternating lexicographical order instead of the usual one. In this paper we study a more general class of block sorting-based transformations. The transformations in this new class prove to be interesting combinatorial tools that offer new research perspectives. In particular, we show that all the transformations in this class can be used as booster for memoryless compressors and we provide an upper bound on the number of equal-letter runs in their output. Moreover, we introduce the notion of rank-invertibility, a property related to the implementation of an efficient inversion procedure. We show that the BWT and the Alternating BWT are the only rank-invertible transformations in the class we have defined

    Evaluating Performance Portability with the CMS Heterogeneous Pixel Reconstruction code

    No full text
    In the past years the landscape of tools for expressing parallel algorithms in a portable way across various compute accelerators has continued to evolve significantly. There are many technologies on the market that provide portability between CPU, GPUs from several vendors, and in some cases even FPGAs. These technologies include C++ libraries such as Alpaka and Kokkos, compiler directives such as OpenMP, the SYCL open specification that can be implemented as a library or in a compiler, and standard C++ where the compiler is solely responsible for the offloading. Given this developing landscape, users have to choose the technology that best fits their applications and constraints. For example, in the CMS experiment the experience so far in heterogeneous reconstruction algorithms suggests that the full application contains a large number of relatively short computational kernels and memory transfer operations. In this work we use a stand-alone version of the CMS heterogeneous pixel reconstruction code as a realistic use case of HEP reconstruction software that is capable of leveraging GPUs effectively. We summarize the experience of porting this code base from CUDA to Alpaka, Kokkos, SYCL, std par, and OpenMP offloading. We compare the event processing throughput achieved by each version on NVIDIA and AMD as well as on a CPU, and compare those to what a native version of the code achieves on each platform

    Prognostic impact of diabetes and prediabetes on survival outcomes in patients with chronic heart failure: A post-hoc analysis of the GISSI-HF (Gruppo Italiano per lo Studio della Sopravvivenza nella Insufficienza Cardiaca-Heart Failure) trial

    Get PDF
    826BACKGROUND: The independent prognostic impact of diabetes mellitus (DM) and prediabetes mellitus (pre-DM) on survival outcomes in patients with chronic heart failure has been investigated in observational registries and randomized, clinical trials, but the results have been often inconclusive or conflicting. We examined the independent prognostic impact of DM and pre-DM on survival outcomes in the GISSI-HF (Gruppo Italiano per lo Studio della Sopravvivenza nella Insufficienza Cardiaca-Heart Failure) trial. METHODS AND RESULTS: We assessed the risk of all-cause death and the composite of all-cause death or cardiovascular hospitalization over a median follow-up period of 3.9 years among the 6935 chronic heart failure participants of the GISSI-HF trial, who were stratified by presence of DM (n=2852), pre-DM (n=2013), and non-DM (n=2070) at baseline. Compared with non-DM patients, those with DM had remarkably higher incidence rates of all-cause death (34.5% versus 24.6%) and the composite end point (63.6% versus 54.7%). Conversely, both event rates were similar between non-DM patients and those with pre-DM. Cox regression analysis showed that DM, but not pre-DM, was associated with an increased risk of all-cause death (adjusted hazard ratio, 1.43; 95% CI, 1.28-1.60) and of the composite end point (adjusted hazard ratio, 1.23; 95% CI, 1.13-1.32), independently of established risk factors. In the DM subgroup, higher hemoglobin A1c was also independently associated with increased risk of both study outcomes (all-cause death: adjusted hazard ratio, 1.21; 95% CI, 1.02-1.43; and composite end point: adjusted hazard ratio, 1.14; 95% CI, 1.01-1.29, respectively). CONCLUSIONS: Presence of DM was independently associated with poor long-term survival outcomes in patients with chronic heart failure.openopenDauriz, Marco; Targher, Giovanni; Temporelli, Pier Luigi; Lucci, Donata; Gonzini, Lucio; Nicolosi, Gian Luigi; Marchioli, Roberto; Tognoni, Gianni; Latini, Roberto; Cosmi, Franco; Tavazzi, Luigi; Maggioni, Aldo Pietro*; Moccetti, T.; Rossi, M.G.; Pasotti, E.; Vaghi, F.; Roncarolo, P.; Zunino, M.T.; Matta, F.; Actis Perinetto, E.; Gaita, F.; Azzaro, G.; Zanetta, M.; Paino, A.M.; Parravicini, U.; Vegis, D.; Conte, R.; Ferraro, P.; De Bernardi, A.; Morelloni, S.; Fagnani, M.; Greco Lucchina, P.; Montagna, L.; Bellone, E.; Sappè, D.; Ferraro, F.; Delucchi, M.; Reynaud, S.G.; Dore, M.; La Brocca, A.; Massobrio, N.; Bo, L.; Trinchero, R.; Imazio, M.; Brocchi, G.; Nejrotti, A.; Rissone, L.; Gabasio, S.; Zocchi, C.; Randazzo, S.; Crenna, A.; Giannuzzi, P.; Bonanomi, E.; Mezzani, A.; De Marchi, M.; Begliuomini, G.; Gianonatti, C.A.; Gavazzi, A.; Grosu, A.; Dei Cas, L.; Nodari, S.; Garyfallidis, P.; Bertoletti, A.; Bonifazi, C.; Arisi, S.; Mascaro, F.; Fraccarollo, M.; Dell'Orto, S.; Sfolcini, M.; Bortolini, F.; Raccagni, D.; Turelli, A.; Santarone, M.; Miglierina, E.; Sormani, L.; Jemoli, R.; Tettamanti, F.; Pirelli, S.; Bianchi, C.; Verde, S.; Mariani, M.; Ziacchi, V.; Ferrazza, A.; Russo, A.; Bortolotti, M.; Pasini, G.F.; Volpi, A.; Jones, K.N.; Cuzzucrea, D.; Gullace, G.; Carbone, C.; Granata, A.; De Servi, S.; Del Rosso, G.; Inserra, C.; Renaldini, E.; Zappa, C.; Moretti, M.; Zanini, R.; Ferrari, M.; Moroni, E.; Cei, A.; Lissi, C.; Dovico, E.; Fiorentini, C.; Palermo, P.; Brusoni, B.; Negrini, M.; Heyman, J.; Danzi, G.B.; Finzi, A.; Frigerio, M.; Turazza, F.; Beretta, L.; Sachero, A.; Casazza, F.; Squadroni, L.; Lombardi, F.; Marano, L.; Margonato, A.; Fragasso, G.; Febo, O.C.; Aiolfi, E.; Olmetti, F.; Grieco, A.; Antonazzo, V.; Specchia, G.; Mortara, A.; Robustelli, F.; Songini, M.G.; Schweiger, C.; Frisinghelli, A.; Palvarini, M.; Campana, C.; Scelsi, L.; Ajmone Marsan, N.; Cobelli, F.; Gualco, A.; Opasich, C.; De Feo, S.; Mazzucco, R.; Iannone, M.A.; Diaco, T.; Zaniboni, D.; Milanesi, G.; Nassiacos, D.; Meloni, S.; Giani, P.; Nicoli, T.; Malinverni, C.; Gusmini, A.; Pozzoni, L.; Bisiani, G.; Margaroli, P.; Schizzarotto, A.; Daverio, A.; Occhi, G.; Partesana, N.; Bandini, P.; Rosella, M.G.; Giustiniani, S.; Cucchi, G.; Pedretti, R.; Raimondo, R.; Vaninetti, R.; Fedele, A.; Ghezzi, I.; Rezzonico, E.; Salerno Uriarte, J.A.; Morandi, F.; Salvucci, F.; Valenti, C.; Graziano, G.; Romanò, M.; Cimminiello, C.; Mangone, I.; Lombardo, M.; Quorso, P.; Marinoni, G.; Breghi, M.; Erckert, M.; Dienstl, A.; Mirante Marini, G.; Stefenelli, C.; Cioffi, G.; Buczkowska, E.; Bonanome, A.; Bazzanini, F.; Parissenti, L.; Serafini, C.; Catania, G.; Tarantini, L.; Rigatelli, G.; Boni, S.; Pasini, A.; Masini, E.; Zampiero, A.A.; Zanchetta, M.; Franceschetto, L.; Delise, P.; Marcon, C.; Sacchetta, A.; Borgese, L.; Artusi, L.; Casolino, P.; Corbara, F.; Banzato, A.; Barbiero, M.; Aldegheri, M.P.; Bazzucco, R.; Crivellenti, G.; Raviele, A.; Zanella, C.; Pascotto, P.; Sarto, P.; Milan, S.; Barbieri, E.; Girardi, P.; Dalla Villa, W.; Dalle Mule, J.; Di Sipio, M.L.; Cazzin, R.; Milan, D.; Zonzin, P.; Carraro, M.; Rossi, R.; Carbonieri, E.; Rossi, I.; Stritoni, P.; Meneghetti, P.; Risica, G.; Tenderini, P.L.; Vassanelli, C.; Zanolla, L.; Perini, G.; Brighetti, G.; Chiozza, R.; Giuliano, G.; Baldin, M.G.; Gortan, R.; Cesanelli, R.; Nicolosi, G.L.; Piazza, R.; Mos, L.; Vriz, O.; Pavan, D.; Pascottini, G.; Alberti, E.; Werren, M.; Solinas, L.; Sinagra, G.; Longaro, F.; Fioretti, P.; Albanese, M.C.; Miani, D.; Gianrossi, R.; Pende, A.; Rubartelli, P.; Magaia, O.; Domenicucci, S.; Caruso, D.; Faraguti, A.S.; Magliani, L.; Miccoli, F.; Guglielmino, G.; Bertoli, D.; Cantarelli, A.; Orlandi, S.; Vallebona, A.; Pozzati, A.; Brega, G.; Pancaldi, L.G.; Vandelli, R.; Urbinati, S.; Poci, M.G.; Zoli, M.; Costa, G.M.; Guiducci, U.; Zobbi, G.; Tartagni, F.; Tisselli, A.; Gentili, A.; Pieri, P.; Cagnetta, E.; Bendinelli, S.; Barbieri, A.; Conti, R.; Ferrari, R.; Merlini, F.; Fucili, A.; Moruzzi, P.; Buia, E.; Galvani, M.; Ferrini, D.; Baggioni, G.; Yiannacopulu, P.; Canè, G.; Bonfiglioli, A.; Zandomeneghi, R.; Brugioni, L.; Giannini, A.; Di Ruvo, R.; Giuliani, M.; Rusconi, L.; Del Corso, P.; Piovaccari, G.; Bologna, F.; Venturi, P.; Melandri, F.; Bagni, E.; Bolognese, L.; Perticucci, R.; Zuppiroli, A.; Nannini, M.; Consoli, N.; Petrone, P.; Pipitò, C.; Colombi, L.; Bernardi, D.; Mariani, P.R.; Testa, R.; Mazzinghi, F.; Cosmi, F.; Cosmi, D.; Zipoli, A.; Cecchi, A.; Castelli, G.; Ciaccheri, M.; Mori, F.; Pieri, F.; Valoti, P.; Chiarantini, D.; Santoro, G.M.; Minneci, C.; Marchi, F.; Milli, M.; Zambaldi, G.; Zipoli, A.; Brandinelli Geri, A.A.; Cipriani, M.; Alessandri, M.; Severi, S.; Stefanelli, S.; Comella, A.; Poddighe, R.; Digiorgio, A.; Carluccio, M.; Berti, S.; Rizza, A.; Bonatti, V.; Molendi, V.; Brancato, A.; D'Aprile, N.; Giappichini, G.; Del Vecchio, S.; Mantini, G.; De Tommasi, F.; Meucci, G.; Cordoni, M.; Bechi, S.; Barsotti, L.; Baldini, P.; Romei, M.; Scopelliti, G.; Lauri, G.; Pestelli, F.; Furiozzi, F.; Cocchieri, M.; Severini, D.; Patriarchi, F.; Chiocchi, P.; Buccolieri, M.; Martinelli, S.; Wee, A.; Angelici, F.; Bernardinangeli, M.; Proietti, G.; Biscottini, B.; Panciarola, R.; Marinacci, L.; Perna, G.P.; Gabrielli, D.; Moraca, A.; Moretti, L.; Partemi, L.; Gregori, G.; Amici, R.; Patteri, G.; Capone, P.; Savini, E.; Morgagni, G.L.; Paccaloni, L.; Pezzuoli, F.; Carincola, S.; Papi, S.; De Crescentini, S.; Gerardi, P.; Midi, P.; Gallenzi, E.; Pajes, G.; Mancone, C.; Di Spirito, V.; Di Gennaro, M.; Calcagno, S.; Toscano, S.; Antonicoli, S.; Carta, F.; Giorgi, G.; Comito, F.; Daniele, E.; Ciarla, O.; Gelfo, P.G.; Acquaviva, A.; Testa, D.; Testa, G.; Pagliaro, F.A.; Russo, F.; Vetta, F.; Marchese, I.; Di Sciascio, G.; D'Ambrosio, A.; Leggio, F.; Del Sindaco, D.; Lacchè, A.; Avallone, A.; Risa, M.P.; Azzolini, P.; Baldo, E.; Giovannini, E.; Pulignano, G.; Tondo, C.; Picchio, E.; Biffani, E.; Tanzi, P.; Pozzar, F.; Farnetti, F.; Azzarito, M.; Santini, M.; Varveri, A.; Ferraiuolo, G.; Valtorta, C.; Gaspardone, A.; Barbato, G.; Ceci, V.; Aspromonte, N.; Bellocci, F.; Colizzi, C.; Fedele, F.; Perez, F.I.; Galati, A.; Rossetti, A.; Mainella, A.; Ciuffetta, D.; Matteucci, C.; Busi, G.; De Angelis, A.; Farina, G.; Granatelli, A.; Leone, F.; Frasca, F.; Pajes, G.; Di Giovambattista, R.; Castellani, G.; Massaro, G.; Mastrogiuseppe, G.; Vacri, A.; De Sanctis, F.; Cioli, M.; Di Luzio, S.; Napoletano, C.; Piccioni, L.L.; De Simone, G.; Ottaviano, A.; Mazza, V.; Spedaliere, C.; Staniscia, D.; Calgione, E.; De Marco, G.; Chiacchio, T.; Di Napoli, T.; Romanzi, S.; Salvatore, G.; Golino, P.; Palermo, A.; Mascia, F.; Vetrano, A.; Vinciguerra, A.; Caliendo, L.; Longobardi, R.; De Caro, G.; Di Nola, R.; Piemonte, F.; Prinzi, D.; De Rosa, P.; De Rosa, V.; Riello, F.; Capuano, V.; Vecchio, G.; Landi, M.; Amato, S.; Garofalo, M.; Caruso, D.; D'Avino, M.; Sensale, P.; Maiolica, O.; Santoro, R.; Caso, P.; Miceli, D.; Maurea, N.; Bianchi, U.; Crispo, C.; Chiariello, M.; Perrone Filardi, P.; Russo, L.; Capuano, N.; Ungaro, G.; Vergara, G.; Scafuro, F.; D'Angelo, G.; Campaniello, C.; Bottiglieri, P.; Volpe, A.; Battista, R.; De Risi, L.; Cardillo, G.; Sibilio, G.; Marino, A.P.; Silvestri, F.; Predotti, P.; Iervoglini, A.; Stefanelli, S.; De Matteis, C.; Sarnicola, P.; Matarazzo, M.M.; Baldi, S.; Iuliano, V.; Astarita, C.; Cuccaro, P.; Liguori, A.; Liguori, G.; Gregorio, G.; Petraglia, L.; Antonelli, G.; Amodio, G.; De Luca, I.; Traversa, D.; Franchini, G.; Lenti, M.L.; Cavallari, D.; D'Agostino, C.; Scalera, G.; Altamura, C.M.; Russo, M.; Mascolo, A.R.; Pettinati, G.; Ciricugno, S.A.; Scrutinio, D.; Passantino, A.; Mastrangelo, D.; Di Masi, A.; De Carne, R.; Cannone, M.; Dibiase, F.; Pensato, M.; Loliva, F.; Trapani, F.; Panettieri, I.; Leone, L.; Di Biase, M.; Carrone, M.; Gallone, V.; Cocco, F.; Costantini, M.; Tritto, C.; Cavalieri, F.; Stella, L.; Magliari, F.; Callerame, M.; De Giorgi, A.; Pellegrino, L.; Correra, M.; Portulano, V.; Nisi, G.L.; Grassi, G.; Cristallo, E.; De Laura, D.; Salerno, C.; Fanelli, R.; Villella, M.; Pede, S.; Renna, A.; De Lorenzi, E.; Urso, L.; Lenti, V.; Peluso, A.; Baldi, N.; Polimeni, G.; Galati, A.; Palma, P.; Lauletta, R.; Tagliamonte, E.; Cirillo, T.; Silvestri, B.; Centonze, G.; D'Alessandro, B.; Truncellito, L.; Mecca, D.; Petruzzi, M.A.; Coviello, R.O.M.; Lopizzo, A.; Chiaffitelli, M.; Barbuzzi, S.; Gubelli, S.; Germinario, G.; Cosentino, N.; Mingrone, A.; Vico, R.; Borrello, G.; Mazza, M.L.; Cimino, R.; Galasso, D.; Cassadonte, F.; Talarico, U.; Perticone, F.; Cassano, S.; Catapano, F.; Calemme, S.; Feraco, E.; Cloro, C.; Misuraca, G.; Caporale, R.; Vigna, L.; Spagnuolo, V.; De Rosa, F.; Spadafora, G.; Zampaglione, G.; Russo, R.; Schipani, F.A.; Ferragina, A.F.; Stranieri, D.; Musca, G.; Carpino, C.; Bencardino, P.; Raimondo, F.; Musacchio, D.; Pulitanò, G.; Ruggeri, A.; Provenzano, A.; Salituri, S.; Musolino, M.; Calandruccio, S.; Marrari, A.; Tripodi, E.; Scali, R.; Anastasio, L.; Arone, A.; Aragona, P.; Donnangelo, L.; Comito, M.G.A.; Bilotta, F.; Vaccaro, I.; Rametta, R.; Ventura, V.; Bonvegna, A.; Alì, A.; Cinnirella, C.; Raineri, M.; Pompeo, F.; Cascio Ingurgio, N.; Carini, V.; Coco, R.; Giunta, G.; Leonardi, G.; Randazzo, V.; Di Blasi, V.; Tamburino, C.; Russo, G.; Mangiameli, S.; Cardillo, R.; Castelli, D.; Inserra, V.; Arena, A.; Gulizia, M.M.; Raciti, S.; Rapisarda, G.; Romano, R.; Prestifilippo, P.; Braschi, G.B.; Ledda, G.; Terrazzino, R.; De Caro, M.; Scilabra, G.; Graffagnino, B.; Grassi, R.; Di Tano, G.; Scimone, G.F.; Vasquez, L.; Coppolino, C.; Casale, A.; Castelli, M.; D'Urso, G.; D'Antonio, E.; Lo Presti, L.; Badalamenti, E.; Conti, P.; Sanfilippo, N.; Cirrincione, V.; Cinà, M.T.; Cusimano, G.; Taormina, A.; Giuliano, P.; Bajardi, A.; Mandalà, V.; Canonico, A.; Geraci, G.; Sabella, F.P.; Enia, F.; Floresta, A.M.; Lo Cascio, I.; Gumina, D.; Cavallaro, A.; Piccione, G.; Ferrante, R.; Blandino, M.; Iudicello, M.S.; Mossuti, E.; Romano, G.; Lombardo, L.; Monastra, P.; Di Vincenzo, D.; Porcu, M.; Orrù, P.; Muscas, F.; Giardina, G.; Corda, M.; Locci, G.; Podda, A.; Ledda, M.; Siddi, P.; Lai, C.; Pili, G.; Mercuro, G.; Mureddu, G.; Ganau, A.; Meloni, G.; Poddighe, G.; Sanna, G.; Barlera, Simona; Franzosi, Maria Grazia; Porcu, Maurizio; Yusuf, Salim; Camerini, Fulvio; Cohn, Jay N.; Decarli, Adriano; Pitt, Bertram; Sleight, Peter; Poole-Wilson, Philip A.; Geraci, Enrico; Scherillo, Marino; Fabbri, Gianna; Bartolomei, Barbara; Bertoli, Daniele; Cobelli, Franco; Fresco, Claudio; Ledda, Antonietta; Levantesi, Giacomo; Opasich, Cristina; Rusconi, Franco; Sinagra, Gianfranco; Turazza, Fabio; Volpi, Alberto; Ceseri, Martina; Alongi, Gianluca; Atzori, Antonio; Bambi, Filippo; Bastarolo, Desiree; Bianchini, Francesca; Cangioli, Iacopo; Canu, Vittoriana; Caporusso, Concetta; Cenni, Gabriele; Cintelli, Laura; Cocchio, Michele; Confente, Alessia; Fenicia, Eva; Friso, Giorgio; Gianfriddo, Marco; Grilli, Gianluca; Lazzaro, Beatrice; Lonardo, Giuseppe; Luise, Alessia; Nota, Rachele; Orlando, Mariaelena; Petrolo, Rosaria; Pierattini, Chiara; Pierota, Valeria; Provenzani, Alessandro; Quartuccio, Velia; Ragno, Anna; Serio, Chiara; Spolaor, Alvise; Tafi, Arianna; Tellaroli, Elisa; Ghio, Stefano; Ghizzardi, Elisa; Masson, Serge; Crociati, Lella; La Rovere, Maria Teresa; Corrà, Ugo; Di Giulio, Paola; Finzi, Andrea; Gorini, Marco; Milani, Valentina; Orsini, Giampietro; Bianchini, Elisa; Cabiddu, Silvia; Cangioli, Ilaria; Cipressa, Laura; Cipressa, Maria Lucia; Di Bitetto, Giuseppina; Ferri, Barbara; Galbiati, Luisa; Lorimer, Andrea; Pera, Carla; Priami, Paola; Vasamì, AntonellaDauriz, Marco; Targher, Giovanni; Temporelli, Pier Luigi; Lucci, Donata; Gonzini, Lucio; Nicolosi, Gian Luigi; Marchioli, Roberto; Tognoni, Gianni; Latini, Roberto; Cosmi, Franco; Tavazzi, Luigi; Maggioni, Aldo Pietro; Moccetti, T.; Rossi, M. G.; Pasotti, E.; Vaghi, F.; Roncarolo, P.; Zunino, M. T.; Matta, F.; Actis Perinetto, E.; Gaita, F.; Azzaro, G.; Zanetta, M.; Paino, A. M.; Parravicini, U.; Vegis, D.; Conte, R.; Ferraro, P.; De Bernardi, A.; Morelloni, S.; Fagnani, M.; Greco Lucchina, P.; Montagna, L.; Bellone, E.; Sappè, D.; Ferraro, F.; Delucchi, M.; Reynaud, S. G.; Dore, M.; La Brocca, A.; Massobrio, N.; Bo, L.; Trinchero, R.; Imazio, M.; Brocchi, G.; Nejrotti, A.; Rissone, L.; Gabasio, S.; Zocchi, C.; Randazzo, S.; Crenna, A.; Giannuzzi, P.; Bonanomi, E.; Mezzani, A.; De Marchi, M.; Begliuomini, G.; Gianonatti, C. A.; Gavazzi, A.; Grosu, A.; Dei Cas, L.; Nodari, S.; Garyfallidis, P.; Bertoletti, A.; Bonifazi, C.; Arisi, S.; Mascaro, F.; Fraccarollo, M.; Dell'Orto, S.; Sfolcini, M.; Bortolini, F.; Raccagni, D.; Turelli, A.; Santarone, M.; Miglierina, E.; Sormani, L.; Jemoli, R.; Tettamanti, F.; Pirelli, S.; Bianchi, C.; Verde, S.; Mariani, M.; Ziacchi, V.; Ferrazza, A.; Russo, A.; Bortolotti, M.; Pasini, G. F.; Volpi, A.; Jones, K. N.; Cuzzucrea, D.; Gullace, G.; Carbone, C.; Granata, A.; De Servi, S.; Del Rosso, G.; Inserra, C.; Renaldini, E.; Zappa, C.; Moretti, M.; Zanini, R.; Ferrari, M.; Moroni, E.; Cei, A.; Lissi, C.; Dovico, E.; Fiorentini, C.; Palermo, P.; Brusoni, B.; Negrini, M.; Heyman, J.; Danzi, G. B.; Finzi, A.; Frigerio, M.; Turazza, F.; Beretta, L.; Sachero, A.; Casazza, F.; Squadroni, L.; Lombardi, F.; Marano, L.; Margonato, A.; Fragasso, G.; Febo, O. C.; Aiolfi, E.; Olmetti, F.; Grieco, A.; Antonazzo, V.; Specchia, G.; Mortara, A.; Robustelli, F.; Songini, M. G.; Schweiger, C.; Frisinghelli, A.; Palvarini, M.; Campana, C.; Scelsi, L.; Ajmone Marsan, N.; Cobelli, F.; Gualco, A.; Opasich, C.; De Feo, S.; Mazzucco, R.; Iannone, M. A.; Diaco, T.; Zaniboni, D.; Milanesi, G.; Nassiacos, D.; Meloni, S.; Giani, P.; Nicoli, T.; Malinverni, C.; Gusmini, A.; Pozzoni, L.; Bisiani, G.; Margaroli, P.; Schizzarotto, A.; Daverio, A.; Occhi, G.; Partesana, N.; Bandini, P.; Rosella, M. G.; Giustiniani, S.; Cucchi, G.; Pedretti, R.; Raimondo, R.; Vaninetti, R.; Fedele, A.; Ghezzi, I.; Rezzonico, E.; Salerno Uriarte, J. A.; Morandi, F.; Salvucci, F.; Valenti, C.; Graziano, G.; Romanò, M.; Cimminiello, C.; Mangone, I.; Lombardo, M.; Quorso, P.; Marinoni, G.; Breghi, M.; Erckert, M.; Dienstl, A.; Mirante Marini, G.; Stefenelli, C.; Cioffi, G.; Buczkowska, E.; Bonanome, A.; Bazzanini, F.; Parissenti, L.; Serafini, C.; Catania, G.; Tarantini, L.; Rigatelli, G.; Boni, S.; Pasini, A.; Masini, E.; Zampiero, A. A.; Zanchetta, M.; Franceschetto, L.; Delise, P.; Marcon, C.; Sacchetta, A.; Borgese, L.; Artusi, L.; Casolino, P.; Corbara, F.; Banzato, A.; Barbiero, M.; Aldegheri, M. P.; Bazzucco, R.; Crivellenti, G.; Raviele, A.; Zanella, C.; Pascotto, P.; Sarto, P.; Milan, S.; Barbieri, E.; Girardi, P.; Dalla Villa, W.; Dalle Mule, J.; Di Sipio, M. L.; Cazzin, R.; Milan, D.; Zonzin, P.; Carraro, M.; Rossi, R.; Carbonieri, E.; Rossi, I.; Stritoni, P.; Meneghetti, P.; Risica, G.; Tenderini, P. L.; Vassanelli, C.; Zanolla, L.; Perini, G.; Brighetti, G.; Chiozza, R.; Giuliano, G.; Baldin, M. G.; Gortan, R.; Cesanelli, R.; Nicolosi, G. L.; Piazza, R.; Mos, L.; Vriz, O.; Pavan, D.; Pascottini, G.; Alberti, E.; Werren, M.; Solinas, L.; Sinagra, G.; Longaro, F.; Fioretti, P.; Albanese, M. C.; Miani, D.; Gianrossi, R.; Pende, A.; Rubartelli, P.; Magaia, O.; Domenicucci, S.; Caruso, D.; Faraguti, A. S.; Magliani, L.; Miccoli, F.; Guglielmino, G.; Bertoli, D.; Cantarelli, A.; Orlandi, S.; Vallebona, A.; Pozzati, A.; Brega, G.; Pancaldi, L. G.; Vandelli, R.; Urbinati, S.; Poci, M. G.; Zoli, M.; Costa, G. M.; Guiducci, U.; Zobbi, G.; Tartagni, F.; Tisselli, A.; Gentili, A.; Pieri, P.; Cagnetta, E.; Bendinelli, S.; Barbieri, A.; Conti, R.; Ferrari, R.; Merlini, F.; Fucili, A.; Moruzzi, P.; Buia, E.; Galvani, M.; Ferrini, D.; Baggioni, G.; Yiannacopulu, P.; Canè, G.; Bonfiglioli, A.; Zandomeneghi, R.; Brugioni, L.; Giannini, A.; Di Ruvo, R.; Giuliani, M.; Rusconi, L.; Del Corso, P.; Piovaccari, G.; Bologna, F.; Venturi, P.; Melandri, F.; Bagni, E.; Bolognese, L.; Perticucci, R.; Zuppiroli, A.; Nannini, M.; Consoli, N.; Petrone, P.; Pipitò, C.; Colombi, L.; Bernardi, D.; Mariani, P. R.; Testa, R.; Mazzinghi, F.; Cosmi, F.; Cosmi, D.; Zipoli, A.; Cecchi, A.; Castelli, G.; Ciaccheri, M.; Mori, F.; Pieri, F.; Valoti, P.; Chiarantini, D.; Santoro, G. M.; Minneci, C.; Marchi, F.; Milli, M.; Zambaldi, G.; Zipoli, A.; Brandinelli Geri, A. A.; Cipriani, M.; Alessandri, M.; Severi, S.; Stefanelli, S.; Comella, A.; Poddighe, R.; Digiorgio, A.; Carluccio, M.; Berti, S.; Rizza, A.; Bonatti, V.; Molendi, V.; Brancato, A.; D'Aprile, N.; Giappichini, G.; Del Vecchio, S.; Mantini, G.; De Tommasi, F.; Meucci, G.; Cordoni, M.; Bechi, S.; Barsotti, L.; Baldini, P.; Romei, M.; Scopelliti, G.; Lauri, G.; Pestelli, F.; Furiozzi, F.; Cocchieri, M.; Severini, D.; Patriarchi, F.; Chiocchi, P.; Buccolieri, M.; Martinelli, S.; Wee, A.; Angelici, F.; Bernardinangeli, M.; Proietti, G.; Biscottini, B.; Panciarola, R.; Marinacci, L.; Perna, G. P.; Gabrielli, D.; Moraca, A.; Moretti, L.; Partemi, L.; Gregori, G.; Amici, R.; Patteri, G.; Capone, P.; Savini, E.; Morgagni, G. L.; Paccaloni, L.; Pezzuoli, F.; Carincola, S.; Papi, S.; De Crescentini, S.; Gerardi, P.; Midi, P.; Gallenzi, E.; Pajes, G.; Mancone, C.; Di Spirito, V.; Di Gennaro, M.; Calcagno, S.; Toscano, S.; Antonicoli, S.; Carta, F.; Giorgi, G.; Comito, F.; Daniele, E.; Ciarla, O.; Gelfo, P. G.; Acquaviva, A.; Testa, D.; Testa, G.; Pagliaro, F. A.; Russo, F.; Vetta, F.; Marchese, I.; Di Sciascio, G.; D'Ambrosio, A.; Leggio, F.; Del Sindaco, D.; Lacchè, A.; Avallone, A.; Risa, M. P.; Azzolini, P.; Baldo, E.; Giovannini, E.; Pulignano, G.; Tondo, C.; Picchio, E.; Biffani, E.; Tanzi, P.; Pozzar, F.; Farnetti, F.; Azzarito, M.; Santini, M.; Varveri, A.; Ferraiuolo, G.; Valtorta, C.; Gaspardone, A.; Barbato, G.; Ceci, V.; Aspromonte, N.; Bellocci, F.; Colizzi, C.; Fedele, F.; Perez, F. I.; Galati, A.; Rossetti, A.; Mainella, A.; Ciuffetta, D.; Matteucci, C.; Busi, G.; De Angelis, A.; Farina, G.; Granatelli, A.; Leone, F.; Frasca, F.; Pajes, G.; Di Giovambattista, R.; Castellani, G.; Massaro, G.; Mastrogiuseppe, G.; Vacri, A.; De Sanctis, F.; Cioli, M.; Di Luzio, S.; Napoletano, C.; Piccioni, L. L.; De Simone, G.; Ottaviano, A.; Mazza, V.; Spedaliere, C.; Staniscia, D.; Calgione, E.; De Marco, G.; Chiacchio, T.; Di Napoli, T.; Romanzi, S.; Salvatore, G.; Golino, P.; Palermo, A.; Mascia, F.; Vetrano, A.; Vinciguerra, A.; Caliendo, L.; Longobardi, R.; De Caro, G.; Di Nola, R.; Piemonte, F.; Prinzi, D.; De Rosa, P.; De Rosa, V.; Riello, F.; Capuano, V.; Vecchio, G.; Landi, M.; Amato, S.; Garofalo, M.; Caruso, D.; D'Avino, M.; Sensale, P.; Maiolica, O.; Santoro, R.; Caso, P.; Miceli, D.; Maurea, N.; Bianchi, U.; Crispo, C.; Chiariello, M.; Perrone Filardi, P.; Russo, L.; Capuano, N.; Ungaro, G.; Vergara, G.; Scafuro, F.; D'Angelo, G.; Campaniello, C.; Bottiglieri, P.; Volpe, A.; Battista, R.; De Risi, L.; Cardillo, G.; Sibilio, G.; Marino, A. P.; Silvestri, F.; Predotti, P.; Iervoglini, A.; Stefanelli, S.; De Matteis, C.; Sarnicola, P.; Matarazzo, M. M.; Baldi, S.; Iuliano, V.; Astarita, C.; Cuccaro, P.; Liguori, A.; Liguori, G.; Gregorio, G.; Petraglia, L.; Antonelli, G.; Amodio, G.; De Luca, I.; Traversa, D.; Franchini, G.; Lenti, M. L.; Cavallari, D.; D'Agostino, C.; Scalera, G.; Altamura, C. M.; Russo, M.; Mascolo, A. R.; Pettinati, G.; Ciricugno, S. A.; Scrutinio, D.; Passantino, A.; Mastrangelo, D.; Di Masi, A.; De Carne, R.; Cannone, M.; Dibiase, F.; Pensato, M.; Loliva, F.; Trapani, F.; Panettieri, I.; Leone, L.; Di Biase, M.; Carrone, M.; Gallone, V.; Cocco, F.; Costantini, M.; Tritto, C.; Cavalieri, F.; Stella, L.; Magliari, F.; Callerame, M.; De Giorgi, A.; Pellegrino, L.; Correra, M.; Portulano, V.; Nisi, G. L.; Grassi, G.; Cristallo, E.; De Laura, D.; Salerno, C.; Fanelli, R.; Villella, M.; Pede, S.; Renna, A.; De Lorenzi, E.; Urso, L.; Lenti, V.; Peluso, A.; Baldi, N.; Polimeni, G.; Galati, A.; Palma, P.; Lauletta, R.; Tagliamonte, E.; Cirillo, T.; Silvestri, B.; Centonze, G.; D
    corecore