186 lines
5.0 KiB
C
186 lines
5.0 KiB
C
/*******************************************************************************
|
|
Copyright (c) 2022, The OpenBLAS Project
|
|
All rights reserved.
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are
|
|
met:
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in
|
|
the documentation and/or other materials provided with the
|
|
distribution.
|
|
3. Neither the name of the OpenBLAS project nor the names of
|
|
its contributors may be used to endorse or promote products
|
|
derived from this software without specific prior written permission.
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBLAS PROJECT OR CONTRIBUTORS BE
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
|
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*******************************************************************************/
|
|
|
|
#include <sys/auxv.h>
|
|
#include "common.h"
|
|
|
|
#define NUM_CORETYPES 6
|
|
#define LOONGARCH_CFG0 0x00
|
|
#define LA_HWCAP_LSX (1U << 4)
|
|
#define LA_HWCAP_LASX (1U << 5)
|
|
#define PRID_SERIES_MASK 0xf000
|
|
#define PRID_SERIES_LA264 0xa000
|
|
#define PRID_SERIES_LA364 0xb000
|
|
#define PRID_SERIES_LA464 0xc000
|
|
#define PRID_SERIES_LA664 0xd000
|
|
|
|
extern gotoblas_t gotoblas_LA64_GENERIC;
|
|
extern gotoblas_t gotoblas_LA264;
|
|
extern gotoblas_t gotoblas_LA464;
|
|
|
|
extern void openblas_warning(int verbose, const char * msg);
|
|
|
|
static char *corename[] = {
|
|
"la64_generic",
|
|
"la264",
|
|
"la464",
|
|
"loongsongeneric",
|
|
"loongson2k1000",
|
|
"loongson3r5",
|
|
"unknown"
|
|
};
|
|
|
|
char *gotoblas_corename(void) {
|
|
if (gotoblas == &gotoblas_LA64_GENERIC) return corename[0];
|
|
if (gotoblas == &gotoblas_LA264) return corename[1];
|
|
if (gotoblas == &gotoblas_LA464) return corename[2];
|
|
return corename[NUM_CORETYPES];
|
|
}
|
|
|
|
static gotoblas_t *force_coretype(char *coretype) {
|
|
int i;
|
|
int found = -1;
|
|
char message[128];
|
|
|
|
for ( i=0 ; i < NUM_CORETYPES; i++)
|
|
{
|
|
if (!strncasecmp(coretype, corename[i], 20))
|
|
{
|
|
found = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
switch (found)
|
|
{
|
|
case 0: return (&gotoblas_LA64_GENERIC);
|
|
case 1: return (&gotoblas_LA264);
|
|
case 2: return (&gotoblas_LA464);
|
|
case 3: return (&gotoblas_LA64_GENERIC);
|
|
case 4: return (&gotoblas_LA264);
|
|
case 5: return (&gotoblas_LA464);
|
|
}
|
|
snprintf(message, 128, "Core not found: %s\n", coretype);
|
|
openblas_warning(1, message);
|
|
return NULL;
|
|
}
|
|
|
|
|
|
/* Detect whether the OS supports the LASX instruction set */
|
|
static int os_support_lasx() {
|
|
int hwcap = (int)getauxval(AT_HWCAP);
|
|
|
|
if (hwcap & LA_HWCAP_LASX)
|
|
return 1;
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
/* Detect whether the OS supports the LSX instruction set */
|
|
static int os_support_lsx() {
|
|
int hwcap = (int)getauxval(AT_HWCAP);
|
|
|
|
if (hwcap & LA_HWCAP_LSX)
|
|
return 1;
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
static uint32_t get_prid() {
|
|
uint32_t reg = 0;
|
|
__asm__ volatile (
|
|
"cpucfg %0, %1 \n\t"
|
|
: "+&r"(reg)
|
|
: "r"(LOONGARCH_CFG0)
|
|
);
|
|
return reg;
|
|
}
|
|
|
|
/* Select core at runtime based on the
|
|
* cpu name and SIMD instructions supported
|
|
* by the system
|
|
*/
|
|
static gotoblas_t *get_coretype(void) {
|
|
uint32_t prid = get_prid();
|
|
switch (prid & PRID_SERIES_MASK) {
|
|
case (PRID_SERIES_LA464):
|
|
case (PRID_SERIES_LA664):
|
|
if (os_support_lasx())
|
|
return &gotoblas_LA464;
|
|
else if (os_support_lsx())
|
|
return &gotoblas_LA264;
|
|
else
|
|
return &gotoblas_LA64_GENERIC;
|
|
break;
|
|
|
|
case (PRID_SERIES_LA264):
|
|
case (PRID_SERIES_LA364):
|
|
if (os_support_lsx())
|
|
return &gotoblas_LA264;
|
|
else
|
|
return &gotoblas_LA64_GENERIC;
|
|
break;
|
|
|
|
default:
|
|
return &gotoblas_LA64_GENERIC;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void gotoblas_dynamic_init(void) {
|
|
char coremsg[128];
|
|
char coren[22];
|
|
char *p;
|
|
|
|
if (gotoblas) return;
|
|
|
|
p = getenv("OPENBLAS_CORETYPE");
|
|
if ( p )
|
|
{
|
|
gotoblas = force_coretype(p);
|
|
}
|
|
else
|
|
{
|
|
gotoblas = get_coretype();
|
|
}
|
|
|
|
if (gotoblas && gotoblas->init) {
|
|
strncpy(coren, gotoblas_corename(), 20);
|
|
sprintf(coremsg, "Core: %s\n", coren);
|
|
openblas_warning(2, coremsg);
|
|
gotoblas -> init();
|
|
} else {
|
|
openblas_warning(0, "OpenBLAS : Architecture Initialization failed. No initialization function found.\n");
|
|
exit(1);
|
|
}
|
|
|
|
}
|
|
|
|
void gotoblas_dynamic_quit(void) {
|
|
gotoblas = NULL;
|
|
}
|