changed DGEMM_DEFAULT_P and DGEMM_DEFAULT_Q to 248 for BULLDOZER 64bit

This commit is contained in:
wernsaar 2013-04-30 10:07:17 +02:00
parent 69aa6c8fb1
commit 731220f870
1 changed files with 12 additions and 0 deletions

12
param.h
View File

@ -193,14 +193,26 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#else
#define SGEMM_DEFAULT_P 448
#if defined(BULLDOZER) && defined(ARCH_X86_64)
#define DGEMM_DEFAULT_P 248
#else
#define DGEMM_DEFAULT_P 224
#endif
#define QGEMM_DEFAULT_P 112
#define CGEMM_DEFAULT_P 224
#define ZGEMM_DEFAULT_P 112
#define XGEMM_DEFAULT_P 56
#define SGEMM_DEFAULT_Q 224
#if defined(BULLDOZER) && defined(ARCH_X86_64)
#define DGEMM_DEFAULT_Q 248
#else
#define DGEMM_DEFAULT_Q 224
#endif
#define QGEMM_DEFAULT_Q 224
#define CGEMM_DEFAULT_Q 224
#define ZGEMM_DEFAULT_Q 224