diff options
author | Martin Kroeker <martin@ruby.chemie.uni-freiburg.de> | 2020-02-26 22:19:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 22:19:57 +0100 |
commit | 8164fd13281e824260346d558e4f5408296d753b (patch) | |
tree | bd65479ad0043b7a7972f06ca32d8a000237c09a /param.h | |
parent | 531c6b96d65de604c50854a052310c0304398a06 (diff) | |
download | openblas-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |