Skip to content
Snippets Groups Projects
Commit e55f04ba authored by omrimor2's avatar omrimor2
Browse files

Make README prettier

parent 6e3cb4ce
No related branches found
No related tags found
No related merge requests found
CS498-MS Project - Radix Sort with MPI and OpenMP CS498-MS Project - Radix Sort with MPI and OpenMP
================================================= =================================================
Requirements: ### Requirements
* cmake 3.1+ * cmake 3.1+
* Compiler with C++11 and OpenMP support * Compiler with C++11 and OpenMP support
* MPI-3.0 implementation * MPI-3.0 implementation
To compile: ### Compilation
```shell ```shell
mkdir build mkdir build
cd build cd build
...@@ -17,11 +17,14 @@ make ...@@ -17,11 +17,14 @@ make
The cmake command can be supplied options to determine the build type The cmake command can be supplied options to determine the build type
(optimization level), compiler flags, and compiler. (optimization level), compiler flags, and compiler.
### Datasets
There are three datasets generated: There are three datasets generated:
* A. uniformly distributed between 0 and 2^31 - 1 * A. uniformly distributed between $`0`$ and $`2^{31} - 1`$
* B. normally distributed with a mean of 2^30 and a stddev of 2^20 * B. normally distributed with a mean of $`2^{30}`$
* C. uniformly distributed between 0 and 255 and a standard deviation of $`2^{20}`$
For each of these, the array size is varied between 2^16 and 2^24. * C. uniformly distributed between $`0`$ and $`255`$
For each of these, the array size is varied between $`2^{16}`$ and $`2^{24}`$.
The data directory contains output tables from single-node runs The data directory contains output tables from single-node runs
of both the MPI and OpenMP versions, scaling from 1 to 16 processors of both the MPI and OpenMP versions, scaling from 1 to 16 processors
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment