mirror of
https://github.com/openssl/openssl.git
synced 2025-01-12 13:36:28 +08:00
speed: Unify output messages regarding number of ops per time
Always report "<algo> ops in <time>", instead of "<algo>'s in <time>" or similar. Avoid the use of apostrophes and/or plural with algorithm names. Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21383)
This commit is contained in:
parent
0195df8baa
commit
eb2ff04cc7
38
apps/speed.c
38
apps/speed.c
@ -3053,7 +3053,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R5:%ld:%u:%.2f\n"
|
||||
: "%ld %u bits DSA signs in %.2fs\n",
|
||||
: "%ld %u bits DSA sign ops in %.2fs\n",
|
||||
count, dsa_bits[testnum], d);
|
||||
dsa_results[testnum][0] = (double)count / d;
|
||||
op_count = count;
|
||||
@ -3083,7 +3083,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R6:%ld:%u:%.2f\n"
|
||||
: "%ld %u bits DSA verify in %.2fs\n",
|
||||
: "%ld %u bits DSA verify ops in %.2fs\n",
|
||||
count, dsa_bits[testnum], d);
|
||||
dsa_results[testnum][1] = (double)count / d;
|
||||
}
|
||||
@ -3130,7 +3130,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R7:%ld:%u:%.2f\n"
|
||||
: "%ld %u bits ECDSA signs in %.2fs\n",
|
||||
: "%ld %u bits ECDSA sign ops in %.2fs\n",
|
||||
count, ec_curves[testnum].bits, d);
|
||||
ecdsa_results[testnum][0] = (double)count / d;
|
||||
op_count = count;
|
||||
@ -3160,7 +3160,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R8:%ld:%u:%.2f\n"
|
||||
: "%ld %u bits ECDSA verify in %.2fs\n",
|
||||
: "%ld %u bits ECDSA verify ops in %.2fs\n",
|
||||
count, ec_curves[testnum].bits, d);
|
||||
ecdsa_results[testnum][1] = (double)count / d;
|
||||
}
|
||||
@ -3333,7 +3333,7 @@ skip_hmac:
|
||||
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R10:%ld:%u:%s:%.2f\n" :
|
||||
"%ld %u bits %s signs in %.2fs \n",
|
||||
"%ld %u bits %s sign ops in %.2fs \n",
|
||||
count, ed_curves[testnum].bits,
|
||||
ed_curves[testnum].name, d);
|
||||
eddsa_results[testnum][0] = (double)count / d;
|
||||
@ -3360,7 +3360,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R11:%ld:%u:%s:%.2f\n"
|
||||
: "%ld %u bits %s verify in %.2fs\n",
|
||||
: "%ld %u bits %s verify ops in %.2fs\n",
|
||||
count, ed_curves[testnum].bits,
|
||||
ed_curves[testnum].name, d);
|
||||
eddsa_results[testnum][1] = (double)count / d;
|
||||
@ -3464,7 +3464,7 @@ skip_hmac:
|
||||
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R12:%ld:%u:%s:%.2f\n" :
|
||||
"%ld %u bits %s signs in %.2fs \n",
|
||||
"%ld %u bits %s sign ops in %.2fs \n",
|
||||
count, sm2_curves[testnum].bits,
|
||||
sm2_curves[testnum].name, d);
|
||||
sm2_results[testnum][0] = (double)count / d;
|
||||
@ -3492,7 +3492,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R13:%ld:%u:%s:%.2f\n"
|
||||
: "%ld %u bits %s verify in %.2fs\n",
|
||||
: "%ld %u bits %s verify ops in %.2fs\n",
|
||||
count, sm2_curves[testnum].bits,
|
||||
sm2_curves[testnum].name, d);
|
||||
sm2_results[testnum][1] = (double)count / d;
|
||||
@ -3844,7 +3844,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R15:%ld:%s:%.2f\n" :
|
||||
"%ld %s KEM keygens in %.2fs\n", count,
|
||||
"%ld %s KEM keygen ops in %.2fs\n", count,
|
||||
kem_name, d);
|
||||
kems_results[testnum][0] = (double)count / d;
|
||||
op_count = count;
|
||||
@ -3855,7 +3855,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R16:%ld:%s:%.2f\n" :
|
||||
"%ld %s KEM encaps in %.2fs\n", count,
|
||||
"%ld %s KEM encaps ops in %.2fs\n", count,
|
||||
kem_name, d);
|
||||
kems_results[testnum][1] = (double)count / d;
|
||||
op_count = count;
|
||||
@ -3866,7 +3866,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R17:%ld:%s:%.2f\n" :
|
||||
"%ld %s KEM decaps in %.2fs\n", count,
|
||||
"%ld %s KEM decaps ops in %.2fs\n", count,
|
||||
kem_name, d);
|
||||
kems_results[testnum][2] = (double)count / d;
|
||||
op_count = count;
|
||||
@ -4021,7 +4021,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R18:%ld:%s:%.2f\n" :
|
||||
"%ld %s signature keygens in %.2fs\n", count,
|
||||
"%ld %s signature keygen ops in %.2fs\n", count,
|
||||
sig_name, d);
|
||||
sigs_results[testnum][0] = (double)count / d;
|
||||
op_count = count;
|
||||
@ -4032,7 +4032,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R19:%ld:%s:%.2f\n" :
|
||||
"%ld %s signature signs in %.2fs\n", count,
|
||||
"%ld %s signature sign ops in %.2fs\n", count,
|
||||
sig_name, d);
|
||||
sigs_results[testnum][1] = (double)count / d;
|
||||
op_count = count;
|
||||
@ -4044,7 +4044,7 @@ skip_hmac:
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R20:%ld:%s:%.2f\n" :
|
||||
"%ld %s signature verifys in %.2fs\n", count,
|
||||
"%ld %s signature verify ops in %.2fs\n", count,
|
||||
sig_name, d);
|
||||
sigs_results[testnum][2] = (double)count / d;
|
||||
op_count = count;
|
||||
@ -4384,7 +4384,7 @@ static void print_message(const char *s, int length, int tm)
|
||||
{
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+DT:%s:%d:%d\n"
|
||||
: "Doing %s for %ds on %d size blocks: ", s, tm, length);
|
||||
: "Doing %s ops for %ds on %d size blocks: ", s, tm, length);
|
||||
(void)BIO_flush(bio_err);
|
||||
run = 1;
|
||||
alarm(tm);
|
||||
@ -4395,7 +4395,7 @@ static void pkey_print_message(const char *str, const char *str2, unsigned int b
|
||||
{
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+DTP:%d:%s:%s:%d\n"
|
||||
: "Doing %u bits %s %s's for %ds: ", bits, str, str2, tm);
|
||||
: "Doing %u bits %s %s ops for %ds: ", bits, str, str2, tm);
|
||||
(void)BIO_flush(bio_err);
|
||||
run = 1;
|
||||
alarm(tm);
|
||||
@ -4405,7 +4405,7 @@ static void kskey_print_message(const char *str, const char *str2, int tm)
|
||||
{
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+DTP:%s:%s:%d\n"
|
||||
: "Doing %s %s's for %ds: ", str, str2, tm);
|
||||
: "Doing %s %s ops for %ds: ", str, str2, tm);
|
||||
(void)BIO_flush(bio_err);
|
||||
run = 1;
|
||||
alarm(tm);
|
||||
@ -4420,7 +4420,7 @@ static void print_result(int alg, int run_no, int count, double time_used)
|
||||
}
|
||||
BIO_printf(bio_err,
|
||||
mr ? "+R:%d:%s:%f\n"
|
||||
: "%d %s's in %.2fs\n", count, names[alg], time_used);
|
||||
: "%d %s ops in %.2fs\n", count, names[alg], time_used);
|
||||
results[alg][run_no] = ((double)count) / time_used * lengths[run_no];
|
||||
}
|
||||
|
||||
@ -4758,7 +4758,7 @@ static void multiblock_speed(const EVP_CIPHER *evp_cipher, int lengths_single,
|
||||
}
|
||||
d = Time_F(STOP);
|
||||
BIO_printf(bio_err, mr ? "+R:%d:%s:%f\n"
|
||||
: "%d %s's in %.2fs\n", count, "evp", d);
|
||||
: "%d %s ops in %.2fs\n", count, "evp", d);
|
||||
if ((ciph_success <= 0) && (mr == 0))
|
||||
BIO_printf(bio_err, "Error performing cipher op\n");
|
||||
results[D_EVP][j] = ((double)count) / d * mblengths[j];
|
||||
|
Loading…
Reference in New Issue
Block a user