We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 873b744 commit f38aa97Copy full SHA for f38aa97
README.md
@@ -0,0 +1,26 @@
1
+# Parallel-Programming
2
+
3
+HW1 - Parallel Matrix Multiplication on Shared Memory + Job Schedulers
4
+Matrix Multiplication - Iterative
5
+ - Recursive
6
+ - Parallel Implementation
7
+ - Cilk implementation
8
9
+Scheduler - Work Steal Scheduler
10
+ - Work Share Scheduler
11
+ - Centralized Share Scheduler
12
13
+Analysis of all approaches - Performance
14
+ - Efficiency
15
+ - l1, l2, l3 Cache Misses using PAPI
16
17
+HW2 - Parallel Sorting (QuickSort , Radix Sort with Counting Sort) + Minimum Spanning Tree
18
+- Randomized QuickSort
19
+- Radix Sort with ranking by counting sort
20
21
+Parallel MST by using
22
+ - Radix Sort with ranking by counting sort
23
+ - Binary Search
24
25
26
+HW3 - Distributed Memory Matrix Multiplication (OpenMPI)
0 commit comments