summaryrefslogtreecommitdiff
path: root/param.h
diff options
context:
space:
mode:
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>2020-02-26 22:19:57 +0100
committerGitHub <noreply@github.com>2020-02-26 22:19:57 +0100
commit8164fd13281e824260346d558e4f5408296d753b (patch)
treebd65479ad0043b7a7972f06ca32d8a000237c09a /param.h
parent531c6b96d65de604c50854a052310c0304398a06 (diff)
downloadopenblas-8164fd13281e824260346d558e4f5408296d753b.tar.gz
openblas-8164fd13281e824260346d558e4f5408296d753b.tar.bz2
openblas-8164fd13281e824260346d558e4f5408296d753b.zip
Always assume server-class cpu count for TSV110 and EMAG8180
Diffstat (limited to 'param.h')
-rw-r--r--param.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/param.h b/param.h
index 055749dc1..2b7b4a050 100644
--- a/param.h
+++ b/param.h
@@ -2620,7 +2620,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/*FIXME: this should be using the cache size, but there is currently no easy way to
query that on ARM. So if getarch counted more than 8 cores we simply assume the host
is a big desktop or server with abundant cache rather than a phone or embedded device */
-#if NUM_CORES > 8
+#if NUM_CORES > 8 || defined(TSV110) || defined(EMAG8180)
#define SGEMM_DEFAULT_P 512
#define DGEMM_DEFAULT_P 256
#define CGEMM_DEFAULT_P 256