Skip to content

Commit 430ee31

Browse files
authored
Merge pull request #2447 from martin-frbg/issue2446
Always select ARMV8 parameters for big servers when cpu is TSV110 or EMAG8180
2 parents ddcbed6 + 8164fd1 commit 430ee31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

param.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2620,7 +2620,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26202620
/*FIXME: this should be using the cache size, but there is currently no easy way to
26212621
query that on ARM. So if getarch counted more than 8 cores we simply assume the host
26222622
is a big desktop or server with abundant cache rather than a phone or embedded device */
2623-
#if NUM_CORES > 8
2623+
#if NUM_CORES > 8 || defined(TSV110) || defined(EMAG8180)
26242624
#define SGEMM_DEFAULT_P 512
26252625
#define DGEMM_DEFAULT_P 256
26262626
#define CGEMM_DEFAULT_P 256

0 commit comments

Comments
 (0)