File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -1990,11 +1990,19 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1990
1990
#define GEMM_DEFAULT_OFFSET_B 3072
1991
1991
#define GEMM_DEFAULT_ALIGN 0x03fffUL
1992
1992
1993
+ #if defined(__BYTE_ORDER__ )&& (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ )
1994
+ #define SGEMM_DEFAULT_UNROLL_M 4
1995
+ #else
1993
1996
#define SGEMM_DEFAULT_UNROLL_M 16
1997
+ #endif
1994
1998
#define SGEMM_DEFAULT_UNROLL_N 4
1995
1999
#define DGEMM_DEFAULT_UNROLL_M 4
1996
2000
#define DGEMM_DEFAULT_UNROLL_N 4
2001
+ #if defined(__BYTE_ORDER__ )&& (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ )
2002
+ #define CGEMM_DEFAULT_UNROLL_M 2
2003
+ #else
1997
2004
#define CGEMM_DEFAULT_UNROLL_M 8
2005
+ #endif
1998
2006
#define CGEMM_DEFAULT_UNROLL_N 2
1999
2007
#define ZGEMM_DEFAULT_UNROLL_M 2
2000
2008
#define ZGEMM_DEFAULT_UNROLL_N 2
You can’t perform that action at this time.
0 commit comments