Skip to content

Commit 4b39f81

Browse files
committed
First exercise
0 parents  commit 4b39f81

File tree

7 files changed

+157
-0
lines changed

7 files changed

+157
-0
lines changed

Ex1/Ex1.txt

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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.

Ex1/hello_world_c

8.87 KB
Binary file not shown.

Ex1/hello_world_c.c

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#include <pthread.h>
2+
#include <stdio.h>
3+
4+
int i = 0;
5+
6+
7+
void* inc(){
8+
for(int j = 0; j < 1000000; j++){
9+
i++;
10+
}
11+
return NULL;
12+
}
13+
14+
void* dec(){
15+
for (int j = 0; j < 1000000; j++){
16+
i--;
17+
}
18+
return NULL;
19+
}
20+
21+
int main(){
22+
pthread_t thread_inc;
23+
pthread_t thread_dec;
24+
25+
pthread_create(&thread_inc, NULL, inc, NULL);
26+
pthread_create(&thread_dec, NULL, dec, NULL);
27+
28+
pthread_join(thread_inc, NULL);
29+
pthread_join(thread_dec, NULL);
30+
31+
printf("Result: %d\n", i);
32+
33+
return 0;
34+
}
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>English</string>
7+
<key>CFBundleIdentifier</key>
8+
<string>com.apple.xcode.dsym.hello_world_c</string>
9+
<key>CFBundleInfoDictionaryVersion</key>
10+
<string>6.0</string>
11+
<key>CFBundlePackageType</key>
12+
<string>dSYM</string>
13+
<key>CFBundleSignature</key>
14+
<string>????</string>
15+
<key>CFBundleShortVersionString</key>
16+
<string>1.0</string>
17+
<key>CFBundleVersion</key>
18+
<string>1</string>
19+
</dict>
20+
</plist>
Binary file not shown.

Ex1/hello_world_go.go

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"runtime"
6+
"time"
7+
)
8+
9+
var i int = 0
10+
11+
func inc(){
12+
for j := 0; j < 1000000; j++ {
13+
i++
14+
}
15+
}
16+
17+
func dec(){
18+
for j := 0; j < 1000000; j++ {
19+
i--
20+
}
21+
}
22+
23+
func main() {
24+
runtime.GOMAXPROCS(runtime.NumCPU())
25+
26+
go inc()
27+
go dec()
28+
29+
time.Sleep(100 * time.Millisecond)
30+
fmt.Printf("Result: %d\n", i)
31+
}

Ex1/hello_world_py.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from threading import Thread
2+
3+
i = 0
4+
5+
def thread_inc():
6+
global i
7+
for j in range(1000000):
8+
i += 1
9+
10+
def thread_dec():
11+
global i
12+
for p in range(1000000):
13+
i -= 1
14+
15+
def main():
16+
inc = Thread(target = thread_inc, args = (),)
17+
dec = Thread(target = thread_dec, args = (),)
18+
inc.start()
19+
dec.start()
20+
inc.join()
21+
dec.join()
22+
print(i)
23+
24+
main()

0 commit comments

Comments
 (0)