https://github.com/pandh4cker/cudamatrixmultiplication
https://github.com/pandh4cker/cudamatrixmultiplication
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pandh4cker/cudamatrixmultiplication
- Owner: PandH4cker
- Created: 2021-11-19T19:58:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-21T17:39:27.000Z (over 4 years ago)
- Last Synced: 2025-03-11T12:38:11.517Z (over 1 year ago)
- Language: Cuda
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CudaMatrixMultiplication
## Author: [Dray Raphael](https://www.linkedin.com/in/raphaeldray/)
Matrix Multiplication using **Nvidia Cuda** cores.
**Nvidia GPU/Accelerator** is required to run this program.
## Compile:
You will have to install the
**Nvidia Cuda Development Toolkit** and to use **nvcc**:
```shell
nvcc main.cu -o CudaMatrixMultiplication
```
Or using **CMake**:
```shell
mkdir build
cd build
cmake --build ..
```
## Usage:
```shell
./CudaMatrixMultiplication
```