We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 074d9bf + 63fa6c8 commit 35ff3c7Copy full SHA for 35ff3c7
param.h
@@ -2443,8 +2443,13 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2443
2444
#define SGEMM_DEFAULT_UNROLL_M 16
2445
#define SGEMM_DEFAULT_UNROLL_N 8
2446
+#if defined(__BYTE_ORDER__) && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)
2447
+#define DGEMM_DEFAULT_UNROLL_M 16
2448
+#define DGEMM_DEFAULT_UNROLL_N 4
2449
+#else
2450
#define DGEMM_DEFAULT_UNROLL_M 8
2451
#define DGEMM_DEFAULT_UNROLL_N 8
2452
+#endif
2453
#define CGEMM_DEFAULT_UNROLL_M 8
2454
#define CGEMM_DEFAULT_UNROLL_N 4
2455
#define ZGEMM_DEFAULT_UNROLL_M 8
0 commit comments