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
Refs
#187
. Use perl to generate cblas_noconst.h instead of sed.
Thank Dan Povey's patch.
https://github.com/xianyi/OpenBLAS/issues/187
tags/v0.2.6
Zhang Xianyi
13 years ago
parent
8cdb795438
commit
36e0982966
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Makefile.prebuild
+1
-1
getarch_2nd.c
+ 1
- 1
Makefile.prebuild
View File
@@ -39,6 +39,6 @@ else
endif
cblas_noconst.h : cblas.h
sed -e "s/\bconst\b\s*//g" cblas.h > cblas_noconst.h
perl -ane ' s/\bconst\b\s*//g; print; ' < cblas.h > cblas_noconst.h
dummy:
+ 1
- 1
getarch_2nd.c
View File
@@ -34,7 +34,7 @@ int main(int argc, char **argv) {
#ifdef USE64BITINT
printf("#define USE64BITINT\n");
#endif
printf("#define GEMM_MULTITHREAD_THRESHOLD\t%ld\n", GEMM_MULTITHREAD_THRESHOLD);
printf("#define GEMM_MULTITHREAD_THRESHOLD\t%ld\n",
(long int)
GEMM_MULTITHREAD_THRESHOLD);
}
return 0;
Write
Preview
Loading…
Cancel
Save