Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rurumimic/cuda
https://github.com/rurumimic/cuda
cuda deep-learning gpu nvidia
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/rurumimic/cuda
- Owner: rurumimic
- Created: 2023-11-23T10:02:08.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-16T11:01:59.000Z (about 2 months ago)
- Last Synced: 2024-12-16T12:18:46.116Z (about 2 months ago)
- Topics: cuda, deep-learning, gpu, nvidia
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CUDA
- nvidia developer
- [cuda-toolkit](https://developer.nvidia.com/cuda-toolkit)
- [gpu compute capability](https://developer.nvidia.com/cuda-gpus)
- docs
- [quick start](https://docs.nvidia.com/cuda/cuda-quick-start-guide/index.html)
- [support compiler](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/#host-compiler-support-policy)
- [best practices guide](https://docs.nvidia.com/cuda/cuda-c-best-practices-guide/)
- source
- [samples](https://developer.nvidia.com/cuda-code-samples)
- github: [nvidia/cuda-samples](https://github.com/nvidia/cuda-samples)---
## GPU Compute Capability
- [gpu compute capability](https://developer.nvidia.com/cuda-gpus)
```bash
nvidia-smi --query-gpu=compute_cap --format=csvcompute_cap
8.6
```---
## Code
### Samples
```bash
git clone https://github.com/NVIDIA/cuda-samples.git
```#### c++11_cuda
- Introduction: [c++11_cuda](https://github.com/NVIDIA/cuda-samples/tree/master/Samples/0_Introduction/c++11_cuda)
```bash
cd Samples/0_Introduction/c++11_cuda
```##### Compile
```bash
make HOST_COMPILER=g++ SMS="86" dbg=1
make HOST_COMPILER=g++-13 SMS="86" dbg=1
```#### Run
```bash
./c++11_cudaGPU Device 0: "Ampere" with compute capability 8.6
Read 3223503 byte corpus from ./warandpeace.txt
counted 107310 instances of 'x', 'y', 'z', or 'w' in "./warandpeace.txt"
```---
## Docs
- [install](docs/install.md)
- [clang](docs/clang.md)