https://github.com/1407arjun/openmp-parallel-computing
Collection of parallel programming implementations of various problems
https://github.com/1407arjun/openmp-parallel-computing
openmp parallel-computing
Last synced: 9 months ago
JSON representation
Collection of parallel programming implementations of various problems
- Host: GitHub
- URL: https://github.com/1407arjun/openmp-parallel-computing
- Owner: 1407arjun
- Created: 2023-01-20T20:21:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-17T15:10:50.000Z (over 2 years ago)
- Last Synced: 2025-02-15T08:31:02.015Z (11 months ago)
- Topics: openmp, parallel-computing
- Language: C
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenMP Parallel Computing Examples
Compiling and running a solution
```bash
clang -o solution -fopenmp solution.c
./solution
```