Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upUse a Result for get_physical() ? #43
Comments
This comment has been minimized.
This comment has been minimized.
|
I don't know if that is useful for not, just pointing out that that would be a breaking change to the API, so would require going to v2 to make that change. |
This comment has been minimized.
This comment has been minimized.
|
I don't know if it would be useful or not either; the thought just crossed my mind and I figured I would share |
This comment has been minimized.
This comment has been minimized.
|
Perhaps there could be a I don't know if it's useful either - if this library is unable to find the number of physical cores, I doubt the user would have a better fallback. |
This comment has been minimized.
This comment has been minimized.
budziq
commented
Sep 30, 2017
•
|
I'd argue that there might be a usecase (although I'm not able to give one from the top of my head) in which user would like to be certain about number of physical cores, and if the query fails, they might make an informed decision instead of automatic fallback. |
This comment has been minimized.
This comment has been minimized.
|
There's been quite a bit of discussion on this one (and the best return types for these functions in general) at the Libz Blitz evaluation thread: https://internals.rust-lang.org/t/out-of-band-crate-evaluation-for-2017-10-13-num-cpus/5986/2 Have linked to the evaluation tracking issue. |
This comment has been minimized.
This comment has been minimized.
KodrAus
commented
Nov 8, 2017
|
Does anyone have any more thoughts on this? If we can't find a compelling use-case then I'd be inclined to leave the status-quo unchanged, and avoid the possible confusion of users not knowing whether they should care. What do you think? |
This comment has been minimized.
This comment has been minimized.
|
I'm struggling to come up with a compelling use case for this, to be totally honest. It definitely feels like the right thing to do is return a @seanmonstar any thoughts to add? |
This comment has been minimized.
This comment has been minimized.
Restioson
commented
Nov 18, 2017
•
|
The user probably can find a way to use this extra info -- for instance, only displaying only logical CPUs. It might also matter for very low level stuff, or hardware discovery. IMO if you can embed more information unobtrusively, then you should. The only downside is having to bump to 2.0... but that's what SemVer's for, right? No use in having major versions if you don't use 'em |
This comment has been minimized.
This comment has been minimized.
KodrAus
commented
Feb 13, 2018
|
Circling back around to this. Are we all happy to just close? |
sector-f commentedJun 2, 2017
The current signature is
pub fn get_physical() -> usize. The documentation says that it will return the same asget()if it isn't able to get the number of physical cores on that architecture. I'm wondering if it would be a good idea to haveget_physical()return aResult<usize, usize>to inform the user of whether that fallback was utilized or not.