Help us make Indico better by taking this survey! Aidez-nous à améliorer Indico en répondant à ce sondage !

Sixth Computational and Data Science school for HEP (CoDaS-HEP 2024)

US/Eastern
Lewis Library 120 (Princeton University)

Lewis Library 120

Princeton University

Description

The sixth school on tools, techniques and methods for Computational and Data Science for High Energy Physics (CoDaS-HEP 2024) will take place on 22-26 July, 2024, at Princeton University.

Advanced software is a critical ingredient to scientific research. Training young researchers in the latest tools and techniques is an essential part of developing the skills required for a successful career both in research and in industry.

The CoDaS-HEP school aims to provide a broad introduction to these critical skills as well as an overview of applications High Energy Physics. Specific topics to be covered at the school include:

  • Parallel Programming 
  • Big Data Tools and Techniques
  • Machine Learning 
  • Practical skills like performance evaluation, collaborative use of git/github, etc.

The school offers a limited number of young researchers an opportunity to learn these skills from experienced scientists and instructors. Successful applicants will receive travel and lodging support to attend the school.

School website: http://codas-hep.org   

The school lectures will take place in Lewis Library 120 on the Princeton University campus.

This event is supported by National Science Foundation grants PHY-2323298, OAC-1829729 and OAC-1836650, the Princeton Institute for Computational Science and Engineering (PICSciE), the Princeton Physics Department, the Office of the Dean for Research of Princeton University and the Enrico Fermi Institute at the University of Chicago. Any opinions, findings, conclusions or recommendations expressed in this material are those of the developers and do not necessarily reflect the views of the National Science Foundation.

 

    • 08:30 09:00
      Breakfast 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 09:00 09:10
      Welcome and Overview 10m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Peter Elmer (Princeton University (US))
    • 09:10 09:50
      Collaborative Software Development with Git(Hub) 40m Lewis Library 120

      Lewis Library 120

      Princeton University

      Git is perhaps the single biggest denominator among all software developers, regardless of field or programming language. It serves not only as a version control system but as the backbone of all collaborative software development.

      This session aims to be 100% hands-on and at least 90% collaborative. We will exclusively work in the browser, using GitHub and GitHub codespaces. Learn forking, branching, opening pull requests, handling merge requests, and more. GitHub account required.

      Speaker: Kilian Lieret (Princeton University)
    • 09:50 10:20
      Coffee Break 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 10:20 11:00
      Collaborative Software Development with Git(Hub) (continued) 40m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Kilian Lieret (Princeton University)
    • 11:00 11:05
      Things you didn't know you needed Lewis Library 120

      Lewis Library 120

      Princeton University

      Convener: Kilian Lieret (Princeton University)
    • 11:05 11:25
      Getting connected to our compute platform 20m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Jim Pivarski (Princeton University)
    • 11:25 12:25
      What Every Computational Physicist Should Know About Computer Architecture 1h Lewis Library 120

      Lewis Library 120

      Princeton University

      These days, everyone in physics in a computational physicist in one way or another. Experiments, theory, and (obviously) simulations all rely heavily on computers. Isn't it time you got to know them better? Computer architecture is an interesting study in its own right, and how well one understands and uses the capabilities of today's systems can have real implications for how fast your computational work gets done. Let's dig in, learn some terminology, and find out what's in there.

      Speaker: Steven R Lantz (Cornell University (US))
    • 12:25 12:30
      Things you didn't know you needed 5m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Steven R Lantz (Cornell University (US))
    • 12:30 13:30
      Lunch 1h Lewis Library 120

      Lewis Library 120

      Princeton University

    • 13:30 15:00
      Parallel Programming - An introduction to parallel computing with OpenMP 1h 30m Lewis Library 120

      Lewis Library 120

      Princeton University

      We start with a discussion of the historical roots of parallel computing and how they appear in a modern context. We'll then use OpenMP and a series of hands-on exercises to explore the fundamental concepts behind parallel programming.

      Speaker: Tim Mattson (Intel)
    • 15:00 15:05
      Things you didn't know you needed 5m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Tim Mattson (Intel)
    • 15:05 15:35
      Coffee Break 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 15:35 17:30
      Parallel Programming - The OpenMP Common Core 1h 55m Lewis Library 120

      Lewis Library 120

      Princeton University

      We will explore through hands-on exercises the common core of OpenMP; that is, the features of the API that most OpenMP programmers use in all their parallel programs. This will provide a foundation of understanding you can build on as you explore the more advanced features of OpenMP.

      Speaker: Tim Mattson (Intel)
    • 18:00 20:30
      Welcome Reception 2h 30m Treehouse, 2/F Lewis Library

      Treehouse, 2/F Lewis Library

    • 08:00 08:30
      Breakfast 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 08:30 10:30
      Parallel Programming - Working with OpenMP 2h Lewis Library 120

      Lewis Library 120

      Princeton University

      We now know how to work with threads directly and how to parallelize loops with OpenMP directives. Now we move on managing the data environment. Our Hands-on exercises will be much more complicated as we explore how to debug multithreaded programs. Then we move on to task-level parallelism in OpenMP and wrap up with a look at the core design patterns of OpenMP.

      Speaker: Tim Mattson (Intel)
    • 10:30 10:40
      Group photo: Jadwin hall plaza Lewis Library 120

      Lewis Library 120

      Princeton University

    • 10:40 11:00
      Coffee Break 20m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 11:00 12:30
      Parallel Programming - The world beyond OpenMP 1h 30m Lewis Library 120

      Lewis Library 120

      Princeton University

      Parallel programming is hard. There is no way to avoid that reality. We can mitigate these difficulties by focusing on the fundamental design patterns from which most parallel algorithms are constructed. Once mastered, these patterns make it much easier to understand how your problems map onto other parallel programming models. Hence for our last session on parallel programming, we'll review these essential design patterns as seen in OpenMP, and then show how they appear in cluster computing (with MPI) and GPGPU computing (with OpenMP and then a quick survey of other GPGPU languages).

      Speaker: Tim Mattson (Intel)
    • 12:30 13:30
      Lunch 1h Lewis Library 120

      Lewis Library 120

      Princeton University

    • 13:30 15:00
      The Scientific Python Ecosystem 1h 30m Lewis Library 120

      Lewis Library 120

      Princeton University

      In recent years, Python has become a glue language for scientific computing. Although code written in Python is generally slow, it has a good connection with compiled C code and a common data abstraction through Numpy. Many data processing, statistical, and most machine learning software has a Python interface as a matter of course.

      This tutorial will introduce you to core Python packages for science, such as NumPy, SciPy, Matplotlib, Pandas, and Numba, (part 1) as well as HEP-specific tools like iminuit, particle, pyjet, and pyhf (part 2). We'll especially focus on accessing ROOT data in uproot and awkward. Part 1 will also cover the Scientific Python Development Guide and a short discussion on packaging.

      Speaker: Henry Fredrick Schreiner (Princeton University)
    • 15:00 15:05
      Things you didn't know you needed 5m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Henry Fredrick Schreiner (Princeton University)
    • 15:05 15:35
      Coffee Break 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 15:35 17:30
      The Scientific Python Ecosystem 1h 55m Lewis Library 120

      Lewis Library 120

      Princeton University

      Continued from last time. Part 2 focuses on the HEP portion of the ecosystem.

      Speaker: Henry Fredrick Schreiner (Princeton University)
    • 18:30 21:00
      BBQ and Drinks - Palmer House 2h 30m
    • 08:00 08:30
      Breakfast 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 08:30 09:30
      Floating Point Arithmetic Is Not Real 1h Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Tim Mattson (Intel)
    • 09:30 10:30
      Vector Parallelism on Multi-Core Processors 1h Lewis Library 120

      Lewis Library 120

      Princeton University

      All modern CPUs boost their performance through vector processing units (VPUs). VPUs are activated through special SIMD instructions that load multiple numbers into extra-wide registers and operate on them simultaneously. Intel's latest processors feature a plethora of 512-bit vector registers, as well as 1 or 2 VPUs per core, each of which can operate on 16 floats or 8 doubles in every cycle. Typically these SIMD gains are achieved not by the programmer directly, but by (a) the compiler through automatic vectorization of simple loops in the source code, or (b) function calls to highly vectorized performance libraries. Either way, vectorization is a significant component of parallel performance on CPUs, and to maximize performance, it is important to consider how well one's code is vectorized. We will take a look at vector hardware, then turn to simple code examples that illustrate how compiler-generated vectorization works.

      Speaker: Steven R Lantz (Cornell University (US))
    • 10:30 11:00
      Coffee Break 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 11:00 11:25
      Introduction to Performance Tuning & Optimization Tools 25m Lewis Library 120

      Lewis Library 120

      Princeton University

      Improving the performance of scientific code is something that is often considered to be an art that is difficult, mysterious, and time-consuming, but it doesn't have to be. Performance tuning and optimization tools can greatly aid in the evaluation and understanding of the performance of scientific code. In this talk we will discuss how to approach performance tuning and introduce some measurement tools to evaluate the performance of compiled-language (C/C++/Fortran) code. Powerful profiling tools, such as Intel VTune and Advisor, will be introduced and discussed.

      Speaker: Steven R Lantz (Cornell University (US))
    • 11:25 11:55
      Performance Case Study: the mkFit Particle Tracking Code 30m Lewis Library 120

      Lewis Library 120

      Princeton University

      In this presentation, we consider how a physics application may be restructured to take better advantage of vectorization and multithreading. For vectorization, we focus on the Matriplex concept that is used to implement parallel Kalman filtering in our collaboration's particle tracking R&D project called mkFit. Drastic changes to data structures and loops were required to help the compiler find the SIMD opportunities in the algorithm. For multithreading, we examine how binning detector hits and tracks in an abstraction of the detector geometry enabled track candidates to be processed in bunches. We conclude by looking at how Intel VTune and Advisor, together with simple test codes, played a role in identifying and resolving trouble spots that affected performance. The mkFit code is now part of the production software for CMS in LHC Run 3.

      Speaker: Steven R Lantz (Cornell University (US))
    • 11:55 12:25
      Performance Case Study: Charge Clusterization 30m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Louis-Guillaume Gagnon (University of California Berkeley (US))
    • 12:25 12:30
      Things you didn't know you needed 5m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Louis-Guillaume Gagnon (University of California Berkeley (US))
    • 12:30 13:30
      Lunch 1h Lewis Library 120

      Lewis Library 120

      Princeton University

    • 13:30 15:00
      Columnar Data Analysis 1h 30m Lewis Library 120

      Lewis Library 120

      Princeton University

      Data analysis languages, such as Numpy, MATLAB, R, IDL, and ADL, are typically interactive with an array-at-a-time interface. Instead of performing an entire analysis in a single loop, each step in the calculation is a separate pass, letting the user inspect distributions each step of the way.

      Unfortunately, these languages are limited to primitive data types: mostly numbers and booleans. Variable-length and nested data structures, such as different numbers of particles per event, don't fit this model. Fortunately, the model can be extended.

      This tutorial will introduce awkward-array, the concepts of columnar data structures, and how to use them in data analysis, such as computing combinatorics (quantities depending on combinations of particles) without any for loops.

      Speaker: Ianna Osborne (Princeton University)
    • 15:00 15:05
      Things you didn't know you needed 5m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Ianna Osborne (Princeton University)
    • 15:05 15:35
      Coffee Break 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 15:35 17:30
      Columnar Data Analysis 1h 55m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Ianna Osborne (Princeton University)
    • 18:00 20:00
      Dinner on your own 2h
    • 08:00 08:30
      Breakfast 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 08:30 10:00
      Machine Learning: introduction 1h 30m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Jim Pivarski (Princeton University)
    • 10:00 10:30
      Coffee Break 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 10:30 12:30
      Machine Learning: issues in practice 2h Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Jim Pivarski (Princeton University)
    • 12:30 13:30
      Lunch 1h Lewis Library 120

      Lewis Library 120

      Princeton University

    • 13:30 15:30
      Machine Learning: challenge exercise 2h Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Jim Pivarski (Princeton University)
    • 15:30 16:00
      Coffee Break 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 16:00 17:25
      Machine Learning: survey of architectures 1h 25m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Jim Pivarski (Princeton University)
    • 17:25 17:30
      Things you didn't know you needed 5m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Jim Pivarski (Princeton University)
    • 18:00 21:00
      School Social Dinner - Frick Atrium and Patio 3h
    • 08:30 09:00
      Breakfast 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 09:00 09:10
      You are qualified to be teachers! 10m Lewis Library 120

      Lewis Library 120

      Princeton University

      Join IRIS-HEP/HSF Training!

      Speaker: Sudhir Malik (University of Puerto Rico (US))
    • 09:10 10:05
      The Use and Abuse of Random Numbers 55m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Andres Rios-Tascon (Princeton University)
    • 10:05 10:10
      Things you didn't know you needed 5m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Andres Rios-Tascon (Princeton University)
    • 10:10 10:55
      Machine Learning for Track Reconstruction at the LHC 45m Lewis Library 120

      Lewis Library 120

      Princeton University

      Speaker: Louis-Guillaume Gagnon (University of California Berkeley (US))
    • 10:55 11:25
      Coffee Break 30m Lewis Library 120

      Lewis Library 120

      Princeton University

    • 11:25 12:35
      Closing Session 1h 10m Lewis Library 120

      Lewis Library 120

      Princeton University