A parallelized prime number generator written in C.
Go to file
Nicolás A. Ortega 3bb757dc0d
Basic multi-core capabilities.
It's buggy, at some point it gives a segmentation fault at around the
`for(auto i : primes)` part. I think I should add a pragma critical
there.
2016-11-30 21:08:44 +01:00
build Initial commit. 2016-11-30 14:32:06 +01:00
src Basic multi-core capabilities. 2016-11-30 21:08:44 +01:00
.gitignore Added Vim swap files to gitignore. 2016-11-30 20:34:06 +01:00
.gitlab-ci.yml Added libgomp to dependencies. 2016-11-30 19:10:00 +01:00
astyle.cfg Initial commit. 2016-11-30 14:32:06 +01:00
AUTHORS.md Initial commit. 2016-11-30 14:32:06 +01:00
CHANGELOG Changed the name so GitLab would like it. 2016-11-30 18:44:40 +01:00
CMakeLists.txt Added OpenMP to the project. 2016-11-30 19:09:29 +01:00
CONTRIBUTING.md Initial commit. 2016-11-30 14:32:06 +01:00
LICENSE Initial commit. 2016-11-30 14:32:06 +01:00
README.md Added OpenMP to the project. 2016-11-30 19:09:29 +01:00

Indivisible

build status

Indivisible is an optimized prime number generator written in C++.

Building

This project uses CMake to build and depends on OpenMP.

$ cd build/
$ cmake ..
$ make

To build a release build run cmake -DCMAKE_BUILD_TYPE=Release .. instead.

Contributing

If you would like to contribute to Uhn then please read the contributing file before creating a merge request.

License

This project is licensed with the GNU GPLv3. Since it is an educational project I find it very important that all contributions continue to remain free/libre.