-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
20 lines (20 loc) · 1.04 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Special Topic
--------------
The ParallelMatMul folder contains all code required for our own implementation of a matrix multiplier.
- ChannelRowColMultiplier.go
contains RowColMultiplier function
- beta1.go
contains the main function which calls functions from other files to perform the multiplication and profiles the execution.
- read_csv.go
contains functions for reading matrices from csv files and to interact with the resulting matrices
- structure_defs.go
contains the structure definitions for structures used
- beta_test.go and beta_b_test.go
contains testing and benchmarking code
The Strassen Mul folder contains all code required for our serial and parallel implementations of Strassen multiplication.
- StrassenMul.go andParStrassenMul.go
contain serial and parallel implementations for Strassen multiplication of files
- read_csv.go
contains functions for reading matrices from csv files and to interact with the resulting matrices
- structure_defs.go
contains the structure definitions for structures used