|
| 1 | +** Task 3: |
| 2 | + |
| 3 | +Concurrency |
| 4 | + Concurrency means that a part of a program, a thread, can run independent of other part of a process that is running. |
| 5 | + Often implemented using threads running on a single core machine, and is therefore not "truely" parallel, |
| 6 | + but acts as if it is. |
| 7 | + |
| 8 | +Parallelism |
| 9 | + Parallelism is when processes runs in true parallel, utilising multiple processor cores. |
| 10 | + |
| 11 | + |
| 12 | +Why are multicore machines becoming more popular? |
| 13 | + Because of ability for parallelism and increased efficiency when executing processes on independent processors. |
| 14 | + |
| 15 | +What kinds of problems motivates the need for concurrent execution? (Or phrased differently: What problems do concurrency help in solving?) |
| 16 | + Problems where one needs to run multiple processes at the same time. For example keeping communication with multiple clients. |
| 17 | + |
| 18 | +Does creating concurrent programs make the programmer's life easier? Harder? Maybe both? (Come back to this after you have worked on part 4 of this exercise) |
| 19 | + More complicated implementation, but problems may require concurrency two work properly. So, a bit of both. |
| 20 | + |
| 21 | +What are the differences between processes, threads, green threads, and coroutines? |
| 22 | + Process: the execution of a program |
| 23 | + Thread: a sequence of instructions that can be executed independently by a scheduler and of other threads |
| 24 | + Green thread: threads that are scheduled by VM or runtime library and not OS |
| 25 | + Coroutine: differs from threads in that only one coroutine runs at the same time |
| 26 | + |
| 27 | +Which one of these do pthread_create() (C/POSIX), threading.Thread() (Python), go (Go) create? |
| 28 | + phthread_create(): thread |
| 29 | + threading.Thread(): thread |
| 30 | + go: spawns a goroutine, which is partly thread and partly coroutine, called a "lightweight" thread. |
| 31 | + |
| 32 | +How does pythons Global Interpreter Lock (GIL) influence the way a python Thread behaves? |
| 33 | + The GIL makes sure that only one thread has access to the interpreter at the same time. |
| 34 | + |
| 35 | + |
| 36 | +With this in mind: What is the workaround for the GIL (Hint: it's another module)? |
| 37 | + One can use multiprocessing as a workaround, utilizing an extra process to run additional interpreter when GIL has it locked down |
| 38 | + |
| 39 | + |
| 40 | +What does func GOMAXPROCS(n int) int change?: |
| 41 | + GOMAXPROCS limits the number of operating system threads that can execute user-level Go code simultaneously. |
| 42 | + |
| 43 | + |
| 44 | + |
| 45 | + |
| 46 | +** Task 4 |
| 47 | + When we run the code we see that the result is "never" 0, it's some number between -1 000 000 and 1 000 000. |
| 48 | + This is because there's no control over the concurrency. |
0 commit comments