This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
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
Fix unwanted fallthrough from Intel Family 6 to 15 in case of identification failure
tags/v0.3.25^2
Martin Kroeker
GitHub
2 years ago
parent
c28d71c6fb
commit
e12aaed13d
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
2 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
driver/others/dynamic.c
+ 2
- 1
driver/others/dynamic.c
View File
@@ -805,7 +805,8 @@ static gotoblas_t *get_coretype(void){
}
}
return NULL;
return NULL;
}
}
case 0xf:
break;
case 0xf:
if (model <= 0x2) return &gotoblas_NORTHWOOD;
if (model <= 0x2) return &gotoblas_NORTHWOOD;
return &gotoblas_PRESCOTT;
return &gotoblas_PRESCOTT;
}
}
Write
Preview
Loading…
Cancel
Save