-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Projects in C/C++ | ||
This repository contains the five projects I did in the [C/C++ course](https://github.com/ShiqiYu/CPP/tree/main) taught by Shiqi Yu. | ||
## Project 1 | ||
Writing a calculator | ||
## Project2 | ||
Implement basic matrix multiplication with C and Java, compare their speed with matricies of different sizes, also compare the speed between different compile options. | ||
## Project 3 | ||
Implement matrix multiplication with SIMD and OpenMP, this is my first time using simd. Attempts of changing the order of the matrix multiplication is also included. | ||
## Project 4 | ||
Implement a matrix class to allow basic operations, cuda is also implemented. | ||
## Project 5 | ||
Speed up the matrix multiplication with parallel GPU, a parallel GPU algorithm that can utlize 4 GPU is implemented with cuBlas and OpenMP. |