Preparing for v0.4

I'm going to be learning OpenCL, after which I will decide whether to
use OpenCL or OpenMP for the development of Indivisible. This mostly
depends on the compatibility of each library with GMP, especially since
I believe GMP already does some of its own threading.
This commit is contained in:
Nicolás A. Ortega 2016-12-12 23:21:22 +01:00
parent 06cb271dba
commit 2e9326b5fb
No known key found for this signature in database
GPG Key ID: 614272579C2070D1
2 changed files with 3 additions and 1 deletions

View File

@ -16,3 +16,5 @@ Change Log
- Algorithm skips half the known primes.
- Removed `likely()' and `unlikely()' macros due to lack of information.
- Improved performance.
- v0.4: Parallel Computations
- Implemented Parallel computing of prime numbers.

View File

@ -11,7 +11,7 @@ static bool run;
void leave();
int main(void) {
puts("Indivisible v0.3\n");
puts("Indivisible v0.4\n");
// Quit on ^C by setting `run = false'
run = true;