Merge pull request #3158 from austinpagan/Gemm.CZPQ

Changed default P/Q values for CGEMM and ZGEMM (Power10 only)
This commit is contained in:
Martin Kroeker 2021-03-19 20:53:21 +01:00 committed by GitHub
commit 22db876d48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -2466,13 +2466,13 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define SGEMM_DEFAULT_P 512 #define SGEMM_DEFAULT_P 512
#define DGEMM_DEFAULT_P 384 #define DGEMM_DEFAULT_P 384
#define CGEMM_DEFAULT_P 512 #define CGEMM_DEFAULT_P 512
#define ZGEMM_DEFAULT_P 256 #define ZGEMM_DEFAULT_P 256
#define SGEMM_DEFAULT_Q 512 #define SGEMM_DEFAULT_Q 512
#define DGEMM_DEFAULT_Q 512 #define DGEMM_DEFAULT_Q 512
#define CGEMM_DEFAULT_Q 1026 #define CGEMM_DEFAULT_Q 384
#define ZGEMM_DEFAULT_Q 1026 #define ZGEMM_DEFAULT_Q 384
#define SGEMM_DEFAULT_R 4096 #define SGEMM_DEFAULT_R 4096
#define DGEMM_DEFAULT_R 4096 #define DGEMM_DEFAULT_R 4096