Browse Source

Fixed a bug when compiling dynamic ARCH x86 in GotoBLAS2.

tags/v0.1alpha1
Xianyi Zhang 14 years ago
parent
commit
5c9f1ebbf9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      driver/others/dynamic.c

+ 2
- 2
driver/others/dynamic.c View File

@@ -198,9 +198,9 @@ void gotoblas_dynamic_init(void) {
gotoblas = get_coretype();
#ifdef ARCH_X86
if (gotoblas == NULL) gotoblas = gotoblas_KATMAI;
if (gotoblas == NULL) gotoblas = &gotoblas_KATMAI;
#else
if (gotoblas == NULL) gotoblas = gotoblas_PRESCOTT;
if (gotoblas == NULL) gotoblas = &gotoblas_PRESCOTT;
#endif
if (gotoblas && gotoblas -> init) {


Loading…
Cancel
Save