changed DGEMM_DEFAULT_P and DGEMM_DEFAULT_Q to 248 for BULLDOZER 64bit
This commit is contained in:
parent
69aa6c8fb1
commit
731220f870
12
param.h
12
param.h
|
@ -193,14 +193,26 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define SGEMM_DEFAULT_P 448
|
#define SGEMM_DEFAULT_P 448
|
||||||
|
|
||||||
|
#if defined(BULLDOZER) && defined(ARCH_X86_64)
|
||||||
|
#define DGEMM_DEFAULT_P 248
|
||||||
|
#else
|
||||||
#define DGEMM_DEFAULT_P 224
|
#define DGEMM_DEFAULT_P 224
|
||||||
|
#endif
|
||||||
|
|
||||||
#define QGEMM_DEFAULT_P 112
|
#define QGEMM_DEFAULT_P 112
|
||||||
#define CGEMM_DEFAULT_P 224
|
#define CGEMM_DEFAULT_P 224
|
||||||
#define ZGEMM_DEFAULT_P 112
|
#define ZGEMM_DEFAULT_P 112
|
||||||
#define XGEMM_DEFAULT_P 56
|
#define XGEMM_DEFAULT_P 56
|
||||||
|
|
||||||
#define SGEMM_DEFAULT_Q 224
|
#define SGEMM_DEFAULT_Q 224
|
||||||
|
|
||||||
|
#if defined(BULLDOZER) && defined(ARCH_X86_64)
|
||||||
|
#define DGEMM_DEFAULT_Q 248
|
||||||
|
#else
|
||||||
#define DGEMM_DEFAULT_Q 224
|
#define DGEMM_DEFAULT_Q 224
|
||||||
|
#endif
|
||||||
|
|
||||||
#define QGEMM_DEFAULT_Q 224
|
#define QGEMM_DEFAULT_Q 224
|
||||||
#define CGEMM_DEFAULT_Q 224
|
#define CGEMM_DEFAULT_Q 224
|
||||||
#define ZGEMM_DEFAULT_Q 224
|
#define ZGEMM_DEFAULT_Q 224
|
||||||
|
|
Loading…
Reference in New Issue