Merge pull request #429 from idunham/numprocs
Fix link error on Linux/musl.
This commit is contained in:
commit
c2fdeb6c22
|
@ -114,5 +114,8 @@ In chronological order:
|
|||
* carlkl <https://github.com/carlkl>
|
||||
* [2013-12-13] Fixed LAPACKE building bug on Windows
|
||||
|
||||
* Isaac Dunham <https://github.com/idunham>
|
||||
* [2014-08-03] Fixed link error on Linux/musl
|
||||
|
||||
* [Your name or handle] <[email or website]>
|
||||
* [Date] [Brief summary of your changes]
|
||||
|
|
|
@ -865,7 +865,7 @@ void gotoblas_set_affinity2(int threads) {};
|
|||
|
||||
void gotoblas_affinity_reschedule(void) {};
|
||||
|
||||
int get_num_procs(void) { return get_nprocs(); }
|
||||
int get_num_procs(void) { return sysconf(_SC_NPROCESSORS_ONLN); }
|
||||
|
||||
int get_num_nodes(void) { return 1; }
|
||||
|
||||
|
|
|
@ -162,7 +162,7 @@ int get_num_procs(void);
|
|||
#else
|
||||
int get_num_procs(void) {
|
||||
static int nums = 0;
|
||||
if (!nums) nums = get_nprocs();
|
||||
if (!nums) nums = sysconf(_SC_NPROCESSORS_ONLN);
|
||||
return nums;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue