https://github.com/kyzhouhzau/high-performance-parallel-computing
Some codes to practice Parallel Computing
https://github.com/kyzhouhzau/high-performance-parallel-computing
Last synced: 7 months ago
JSON representation
Some codes to practice Parallel Computing
- Host: GitHub
- URL: https://github.com/kyzhouhzau/high-performance-parallel-computing
- Owner: kyzhouhzau
- License: mit
- Created: 2017-11-05T03:47:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-21T08:11:21.000Z (almost 8 years ago)
- Last Synced: 2025-01-22T12:45:21.879Z (9 months ago)
- Language: C
- Size: 229 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# High-performance-parallel-computing
Some codes to practice Parallel Computing
# Test1
Solve the quadratic equation x2 + 3x-5.6 = 0 by C and python.
#### for c
step1:cd test1step2:make
step3:./test2
#### for python
step1:cd test1step2:python test1.py
# Test2
vector:Multiply result of two vectors designed by openmp(a parallel Compiler Directive)prime:Calculate prime numbers between 2 and 1,000,000 using OpenMP programming and export the results to a file for comparison ; display the number of primes found on the screen and analyze the number of threads from 1 to 8 for acceleration Ratio。
schedule:Example and test OpenMP load balancing, respectively, using static, dynamic,guide and runtime,and show results.