summaryrefslogtreecommitdiff
path: root/tune
diff options
context:
space:
mode:
authorTorbjorn Granlund <torbjorng@google.com>2015-10-14 19:57:52 +0200
committerTorbjorn Granlund <torbjorng@google.com>2015-10-14 19:57:52 +0200
commit9c78205f4564c748ce015a0a3f960d24b4521f6f (patch)
treefd431b01fc8677f3fcacee424990dc53ea2cc28e /tune
parentb21c47d27541fff24062b5d6854e323547dbbbca (diff)
downloadgmp-9c78205f4564c748ce015a0a3f960d24b4521f6f.tar.gz
(tune_mu_bdiv): Start at measured BDIV_DC_ thresholds.
Diffstat (limited to 'tune')
-rw-r--r--tune/tuneup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tune/tuneup.c b/tune/tuneup.c
index 65f0fe08c..dcbcbc26b 100644
--- a/tune/tuneup.c
+++ b/tune/tuneup.c
@@ -1720,7 +1720,7 @@ tune_mu_bdiv (void)
param.name = "MU_BDIV_QR_THRESHOLD";
param.function = speed_mpn_dcpi1_bdiv_qr;
param.function2 = speed_mpn_mu_bdiv_qr;
- param.min_size = mul_toom22_threshold;
+ param.min_size = dc_bdiv_qr_threshold;
param.max_size = 5000;
param.step_factor = 0.02;
one (&mu_bdiv_qr_threshold, &param);
@@ -1730,7 +1730,7 @@ tune_mu_bdiv (void)
param.name = "MU_BDIV_Q_THRESHOLD";
param.function = speed_mpn_dcpi1_bdiv_q;
param.function2 = speed_mpn_mu_bdiv_q;
- param.min_size = mul_toom22_threshold;
+ param.min_size = dc_bdiv_q_threshold;
param.max_size = 5000;
param.step_factor = 0.02;
one (&mu_bdiv_q_threshold, &param);