Skip to content

Commit 5aa7368

Browse files
committed
Merge branch 'main' of github.com:mryab/efficient-dl-systems
2 parents 5a74c08 + 5c4f245 commit 5aa7368

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+4795
-3110
lines changed

README.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Efficient Deep Learning Systems
22
This repository contains materials for the Efficient Deep Learning Systems course taught at the [Faculty of Computer Science](https://cs.hse.ru/en/) of [HSE University](https://www.hse.ru/en/) and [Yandex School of Data Analysis](https://academy.yandex.com/dataschool/).
33

4-
__This branch corresponds to the ongoing 2024 course. If you want to see full materials of past years, see the ["Past versions"](#past-versions) section.__
4+
__This branch corresponds to the ongoing 2025 course. If you want to see full materials of past years, see the ["Past versions"](#past-versions) section.__
55

66
# Syllabus
77
- [__Week 1:__](./week01_intro) __Introduction__
@@ -10,20 +10,18 @@ __This branch corresponds to the ongoing 2024 course. If you want to see full ma
1010
- [__Week 2:__](./week02_management_and_testing) __Experiment tracking, model and data versioning, testing DL code in Python__
1111
- Lecture: Experiment management basics and pipeline versioning. Configuring Python applications. Intro to regular and property-based testing.
1212
- Seminar: Example DVC+Weights & Biases project walkthrough. Intro to testing with pytest.
13-
- [__Week 3:__](./week03_fast_pipelines) __Training optimizations, profiling DL code__
14-
- Lecture: Mixed-precision training. Data storage and loading optimizations. Tools for profiling deep learning workloads.
15-
- Seminar: Automatic Mixed Precision in PyTorch. Dynamic padding for sequence data and JPEG decoding benchmarks. Basics of profiling with py-spy, PyTorch Profiler, PyTorch TensorBoard Profiler, nvprof and Nsight Systems.
16-
- [__Week 4:__](./week04_distributed) __Basics of distributed ML__
17-
- Lecture: Introduction to distributed training. Process-based communication. Parameter Server architecture.
18-
- Seminar: Multiprocessing basics. Parallel GloVe training.
19-
- [__Week 5:__](./week05_data_parallel) __Data-parallel training and All-Reduce__
20-
- Lecture: Data-parallel training of neural networks. All-Reduce and its efficient implementations.
13+
- [__Week 3:__ ](./week03_fast_pipelines) __Training optimizations, FP16/BF16/FP8 formats, profiling deep learning code__
14+
- Lecture: Measuring performance of GPU-accelerated software. Mixed-precision training. Data storage and loading optimizations. Tools for profiling deep learning workloads.
15+
- Seminar: Automatic Mixed Precision in PyTorch. Dynamic padding for sequence data and JPEG decoding benchmarks. Basics of profiling with py-spy, PyTorch Profiler, Memory Snapshot and Nsight Systems.
16+
- [__Week 4:__](./week04_data_parallel) __Data-parallel training and All-Reduce__
17+
- Lecture: Introduction to distributed training. Data-parallel training of neural networks. All-Reduce and its efficient implementations.
2118
- Seminar: Introduction to PyTorch Distributed. Data-parallel training primitives.
19+
- __Week 5:__ __Sharded data-parallel training, distributed training optimizations__
2220
- __Week 6:__ __Training large models__
2321
- __Week 7:__ __Python web application deployment__
24-
- __Week 8:__ __Software for serving neural networks__
22+
- __Week 8:__ __LLM inference optimizations and software__
2523
- __Week 9:__ __Efficient model inference__
26-
- __Week 10:__ __Guest lecture__
24+
- __Week 10:__ Guest lecture
2725

2826
## Grading
2927
There will be several home assignments (spread over multiple weeks) on the following topics:
@@ -37,11 +35,16 @@ Please refer to the course page of your institution for details.
3735
# Staff
3836
- [Max Ryabinin](https://github.com/mryab)
3937
- [Just Heuristic](https://github.com/justheuristic)
40-
- [Alexander Markovich](https://github.com/markovka17)
38+
- [Yaroslav Zolotarev](https://github.com/Q-c7)
39+
- [Maksim Abraham](https://github.com/fdrose)
40+
- [Gregory Leleytner](https://github.com/RunFMe)
41+
- [Antony Frolov](https://github.com/antony-frolov)
4142
- [Anton Chigin](https://github.com/achigin)
42-
- [Ruslan Khaidurov](https://github.com/newokaerinasai)
43+
- [Alexander Markovich](https://github.com/markovka17)
44+
- [Roman Gorb](https://github.com/rvg77)
4345

4446
# Past versions
47+
- [2024](https://github.com/mryab/efficient-dl-systems/tree/2024)
4548
- [2023](https://github.com/mryab/efficient-dl-systems/tree/2023)
4649
- [2022](https://github.com/mryab/efficient-dl-systems/tree/2022)
4750
- [2021](https://github.com/yandexdataschool/dlatscale_draft)

week01_intro/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Week 1: Introduction
22

33
* Lecture: [link](./lecture.pdf)
4-
* Seminar + bonus home assignment: [link](./seminar.ipynb)
4+
* Seminar: [link](./seminar.ipynb)
55

66
## Further reading
77
* [CUDA MODE reading group Resource Stream](https://github.com/cuda-mode/resource-stream)
88
* [CUDA Programming Guide](https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html) and [CUDA C++ Best Practices Guide](https://docs.nvidia.com/cuda/cuda-c-best-practices-guide/index.html)
9+
* [Modal GPU Glossary](https://modal.com/gpu-glossary)
910
* [How to Optimize a CUDA Matmul Kernel for cuBLAS-like Performance: a Worklog](https://siboehm.com/articles/22/CUDA-MMM)
11+
* [GPU Puzzles](https://github.com/srush/GPU-Puzzles)
1012
* [PyTorch Performance Tuning Guide](https://pytorch.org/tutorials/recipes/recipes/tuning_guide.html)
1113
* [Earlier version of this guide from NVIDIA](https://tigress-web.princeton.edu/~jdh4/PyTorchPerformanceTuningGuide_GTC2021.pdf)
1214
* [Docs for caching memory allocation in PyTorch](https://pytorch.org/docs/stable/notes/cuda.html#cuda-memory-management)

week01_intro/lecture.pdf

420 KB
Binary file not shown.

0 commit comments

Comments
 (0)