aboutsummaryrefslogtreecommitdiff
path: root/aberth/compute_host.cpp
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2019-07-16 21:57:21 +0200
committertomsmeding <tom.smeding@gmail.com>2019-07-16 21:57:29 +0200
commit3b1767a3f4fd2f0ff2b03d7daa9307fce115b5ea (patch)
tree6aeff844fb24693880ee9ae3b48cd9d3d7b9b6f1 /aberth/compute_host.cpp
parent5e23e6b4986bb31e15e37309ee6b55224a4a630a (diff)
Add support for Christensen in CPU aberth
Diffstat (limited to 'aberth/compute_host.cpp')
-rw-r--r--aberth/compute_host.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/aberth/compute_host.cpp b/aberth/compute_host.cpp
index 343318f..0af20df 100644
--- a/aberth/compute_host.cpp
+++ b/aberth/compute_host.cpp
@@ -14,6 +14,8 @@ vector<int> computeHost(int W, int H, Com bottomLeft, Com topRight) {
constexpr const int numThreads = 4;
static_assert(ispow2(numThreads));
+ cerr << "Finding roots for " << PolyGen::numPolys() << " polynomials" << endl;
+
vector<int> counts(W * H);
mutex countsMutex;