This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Merge pull request
#1160
from gcp/extra-streamroller-cpuid
Add an extra familiy/model combination used by AMD Steamrolller.
tags/v0.2.20^2
Martin Kroeker
GitHub
8 years ago
parent
f2f0e98bb5
9c884986ad
commit
35387edb8d
2 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
cpuid_x86.c
+1
-1
driver/others/dynamic.c
+ 2
- 0
cpuid_x86.c
View File
@@ -1304,6 +1304,7 @@ int get_cpuname(void){
else
return CPUTYPE_BARCELONA; //OS don't support AVX.
case 0:
case 8:
switch(exmodel){
case 1: //AMD Trinity
if(support_avx())
@@ -1839,6 +1840,7 @@ int get_coretype(void){
else
return CORE_BARCELONA; //OS don't support AVX.
case 0:
case 8:
switch(exmodel){
case 1: //AMD Trinity
if(support_avx())
+ 1
- 1
driver/others/dynamic.c
View File
@@ -365,7 +365,7 @@ static gotoblas_t *get_coretype(void){
openblas_warning(FALLBACK_VERBOSE, BARCELONA_FALLBACK);
return &gotoblas_BARCELONA; //OS doesn't support AVX. Use old kernels.
}
}else if(model == 0){
}else if(model == 0
|| model == 8
){
if (exmodel == 1) {
//AMD Trinity
if(support_avx())
Write
Preview
Loading…
Cancel
Save