suggestion

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

mstone

Active Member
Mar 11, 2015
505
118
43
46
It would be nice if the openssl results included some aes+evp (aes-ni) numbers. Specifically, it would be very nice to compare aes-128-gcm across platforms because the aes-ni instructions are being tweaked and have some very significant performance differences across cpu families.
 

Patrick

Administrator
Staff member
Dec 21, 2010
12,513
5,804
113
Have a suggested set of code to run? I have a bunch of systems spun up right now so it would be easy to test and add.
 

Patrick

Administrator
Staff member
Dec 21, 2010
12,513
5,804
113
@mstone does this look right?
Code:
        echo "Running OpenSSL test"
        ./apps/openssl speed rsa4096 -multi $nproc
        echo "Running OppenSSL AES+EVP single threaded"
        ./apps/openssl speed aes-128-gcm
        echo "Running OppenSSL AES+EVP multi-threaded"
        ./apps/openssl speed aes-128-gcm -multi $nproc
 

mstone

Active Member
Mar 11, 2015
505
118
43
46
@mstone does this look right?
Code:
        echo "Running OpenSSL test"
        ./apps/openssl speed rsa4096 -multi $nproc
        echo "Running OppenSSL AES+EVP single threaded"
        ./apps/openssl speed aes-128-gcm
        echo "Running OppenSSL AES+EVP multi-threaded"
        ./apps/openssl speed aes-128-gcm -multi $nproc
It lacks the "-evp" after the "speed"

./apps/openssl speed -evp aes-128-gcm
 
  • Like
Reactions: Patrick