Skip to content

Commit 236acee

Browse files
authored
Merge pull request #4389 from Mousius/reduce-dynamic-targets
Use functionally equivalent dynamic targets
2 parents 63a8393 + dc20a78 commit 236acee

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

Makefile.system

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -677,16 +677,12 @@ ifeq ($(ARCH), arm64)
677677
DYNAMIC_CORE = ARMV8
678678
DYNAMIC_CORE += CORTEXA53
679679
DYNAMIC_CORE += CORTEXA57
680-
DYNAMIC_CORE += CORTEXA72
681-
DYNAMIC_CORE += CORTEXA73
682680
DYNAMIC_CORE += NEOVERSEN1
683681
ifneq ($(NO_SVE), 1)
684682
DYNAMIC_CORE += NEOVERSEV1
685683
DYNAMIC_CORE += NEOVERSEN2
686684
DYNAMIC_CORE += ARMV8SVE
687685
endif
688-
DYNAMIC_CORE += CORTEXA55
689-
DYNAMIC_CORE += FALKOR
690686
DYNAMIC_CORE += THUNDERX
691687
DYNAMIC_CORE += THUNDERX2T99
692688
DYNAMIC_CORE += TSV110

driver/others/dynamic_arm64.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,11 @@ extern gotoblas_t gotoblas_CORTEXA55;
122122
#endif
123123
#else
124124
extern gotoblas_t gotoblas_CORTEXA53;
125+
#define gotoblas_CORTEXA55 gotoblas_CORTEXA53
125126
extern gotoblas_t gotoblas_CORTEXA57;
126-
extern gotoblas_t gotoblas_CORTEXA72;
127-
extern gotoblas_t gotoblas_CORTEXA73;
128-
extern gotoblas_t gotoblas_FALKOR;
127+
#define gotoblas_CORTEXA72 gotoblas_CORTEXA57
128+
#define gotoblas_CORTEXA73 gotoblas_CORTEXA57
129+
#define gotoblas_FALKOR gotoblas_CORTEXA57
129130
extern gotoblas_t gotoblas_THUNDERX;
130131
extern gotoblas_t gotoblas_THUNDERX2T99;
131132
extern gotoblas_t gotoblas_TSV110;
@@ -141,7 +142,6 @@ extern gotoblas_t gotoblas_ARMV8SVE;
141142
#define gotoblas_ARMV8SVE gotoblas_ARMV8
142143
#endif
143144
extern gotoblas_t gotoblas_THUNDERX3T110;
144-
extern gotoblas_t gotoblas_CORTEXA55;
145145
#endif
146146

147147
extern void openblas_warning(int verbose, const char * msg);

0 commit comments

Comments
 (0)