17 OCT 2024 - Welcome Back to TorrentFunk! Get your pirate hat back out. Streaming is dying and torrents are the new trend. Account Registration works again and so do Torrent Uploads. We invite you all to start uploading torrents again!
TORRENT DETAILS
Learn Parallel Computing In Python
TORRENT SUMMARY
Status:
All the torrents in this section have been verified by our verification system
The mood in the meeting on the 12th floor of an international investment bank was as bleak as it gets. The developers of the firm met to discuss the best way forward after a critical core application failed and caused a system wide outage.
“Guys, we have a serious issue here. I found out that the outage was caused by a race condition in our code, introduced a while ago and triggered last night.” says Mark Adams, senior developer.
The room goes silent. The cars outside the floor to ceiling windows slowly and silently creep along in the heavy city traffic. The senior developers immediately understand the severity of the situation, realizing that they will now be working around the clock to fix the issue and sort out the mess in the datastore. The less experienced developers understand that a race condition is serious but don’t know exactly what causes it and therefore keep their mouths shut.
Eventually Brian Holmes, delivery manager, breaks the silence with “The application has been running for months without any problems, we haven’t released any code recently, how is it possible that the software just broke down?!”
Everyone shakes their heads and goes back to their desk leaving Brian in the room alone, puzzled. He takes out his phone and googles “race condition”.
Sound familiar? How many times have you heard another developer talking about using threads and concurrent programming to solve a particular problem but out of fear you stayed out of the discussion?
Here’s the little secret that senior developers will never share… Multithreading and Multiprocessing programming is not much harder than normal programming. Developers are scared of concurrent programming because they think it is an advanced topic that only highly experienced developers get to play with.
This is far from the truth. Our minds are very much used to dealing with concurrency. In fact we do this in our everyday life without any problem but somehow we struggle to translate this into our code. One of the reasons for this is that we’re not familiar with the concepts and tools available to us to manage this concurrency. This course is here to help you understand how to use multithreading and multiprocessing tools and concepts to manage your parallel programming. It is designed to be as practical as possible. We start with some theory around parallelism and then explain how the operating system handles multiple processes and threads. Later we move on to explain the multiple tools available by solving example problems using concurrent programming.
In this course we use the Python language, however the concepts learned here can be applied to most programming languages.
All code in this course can be found on github, username/project: cutajarj/multithreadinginpython
Who this course is for:
Developers who want to take their career to the next level by improving their skills and learning about concurrent and parallel programming.
College students currently learning about parallel computing who want to see how concepts learned in class relate to practice.
Experienced developers that have struggled with this topic and want to give it another try using a different approach.
Delivery managers called Brian Holmes.
Requirements
Some experience of programming in Python (enough if you know how to use functions, lists and dictionaries).
Recent version of Python installed.
Being able to do 50 pull ups while shouting a unique prime number on each rep (just kidding).
[TutsNode.com] - Learn Parallel Computing in Python/2. Creating Threads and Processes/1. Processes and Threads.mp4
60.9 MB
[TutsNode.com] - Learn Parallel Computing in Python/2. Creating Threads and Processes/1. Processes and Threads.srt
9.8 KB
[TutsNode.com] - Learn Parallel Computing in Python/2. Creating Threads and Processes/2. Threads in Python and the GIL (Global Interpreter Lock).srt
11.9 KB
[TutsNode.com] - Learn Parallel Computing in Python/2. Creating Threads and Processes/3. Creating our first Thread.srt
9.7 KB
[TutsNode.com] - Learn Parallel Computing in Python/2. Creating Threads and Processes/4. Processes in Python.srt
7.3 KB
[TutsNode.com] - Learn Parallel Computing in Python/2. Creating Threads and Processes/5. Creating our first Processes.srt
5.7 KB
[TutsNode.com] - Learn Parallel Computing in Python/3. Memory Sharing between Threads/1. Memory Sharing.mp4
47.8 MB
[TutsNode.com] - Learn Parallel Computing in Python/3. Memory Sharing between Threads/1. Memory Sharing.srt
6.8 KB
[TutsNode.com] - Learn Parallel Computing in Python/3. Memory Sharing between Threads/2. Letter count Implementation.mp4
37.7 MB
[TutsNode.com] - Learn Parallel Computing in Python/3. Memory Sharing between Threads/2. Letter count Implementation.srt
11.6 KB
[TutsNode.com] - Learn Parallel Computing in Python/3. Memory Sharing between Threads/3. Letter count using Memory Sharing.srt
6.9 KB
[TutsNode.com] - Learn Parallel Computing in Python/4. Thread Synchronization with Mutexes/1. Why do we need Synchronization.mp4
88.9 MB
[TutsNode.com] - Learn Parallel Computing in Python/4. Thread Synchronization with Mutexes/1. Why do we need Synchronization.srt
15.1 KB
[TutsNode.com] - Learn Parallel Computing in Python/4. Thread Synchronization with Mutexes/2. Adding Mutexes to Letter Count.srt
4.2 KB
[TutsNode.com] - Learn Parallel Computing in Python/4. Thread Synchronization with Mutexes/3. Adding Mutexes to Letter Count Implementation.mp4
40 MB
[TutsNode.com] - Learn Parallel Computing in Python/4. Thread Synchronization with Mutexes/3. Adding Mutexes to Letter Count Implementation.srt
9.6 KB
[TutsNode.com] - Learn Parallel Computing in Python/5. Waiting for Completed tasks using Joins/1. Understanding Joins.mp4
59.5 MB
[TutsNode.com] - Learn Parallel Computing in Python/5. Waiting for Completed tasks using Joins/1. Understanding Joins.srt
10.8 KB
[TutsNode.com] - Learn Parallel Computing in Python/5. Waiting for Completed tasks using Joins/2. File Search Example.srt
8.9 KB
[TutsNode.com] - Learn Parallel Computing in Python/5. Waiting for Completed tasks using Joins/3. Concurrent File Search.mp4
45.4 MB
[TutsNode.com] - Learn Parallel Computing in Python/5. Waiting for Completed tasks using Joins/3. Concurrent File Search.srt
9.8 KB
[TutsNode.com] - Learn Parallel Computing in Python/6. Synchronization using Condition Variables/1. Introduction to Condition Variables.mp4
80.4 MB
[TutsNode.com] - Learn Parallel Computing in Python/6. Synchronization using Condition Variables/1. Introduction to Condition Variables.srt
13.1 KB
[TutsNode.com] - Learn Parallel Computing in Python/6. Synchronization using Condition Variables/2. Condition Variables for Wait Groups.srt
11.4 KB
[TutsNode.com] - Learn Parallel Computing in Python/6. Synchronization using Condition Variables/3. Implementing Wait Groups with Condition Variables.srt
6.8 KB
[TutsNode.com] - Learn Parallel Computing in Python/6. Synchronization using Condition Variables/4. Using Wait Groups.srt
6.2 KB
[TutsNode.com] - Learn Parallel Computing in Python/7. Barriers Explained/1. What’s a Barrier.mp4
61.5 MB
[TutsNode.com] - Learn Parallel Computing in Python/7. Barriers Explained/1. What’s a Barrier.srt
12.7 KB
[TutsNode.com] - Learn Parallel Computing in Python/7. Barriers Explained/2. Example Barrier Application Matrix Multiplication.srt