From 2e9326b5fbc13824b9e29f1125a74627c4f009f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20A=2E=20Ortega?= Date: Mon, 12 Dec 2016 23:21:22 +0100 Subject: [PATCH] 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. --- CHANGELOG | 2 ++ src/main.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index a4dae70..da3f6a9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/src/main.c b/src/main.c index bfbe256..3d09e98 100644 --- a/src/main.c +++ b/src/main.c @@ -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;