You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, priv_default_hugepage on Linux always returns None.
Implementing it consists of parsing /proc/meminfo looking for a line of the form Hugepagesize: xxx kB. What makes this tricky is that it has to be done using only libc, and without heap allocation.
@gmjosack Awesome! Would you be OK giving me write access to this repo so that I can manipulate issue labels? Call for Participation issues are supposed to have experience level labels (easy/medium/hard).
Currently,
priv_default_hugepage
on Linux always returns None.Implementing it consists of parsing
/proc/meminfo
looking for a line of the formHugepagesize: xxx kB
. What makes this tricky is that it has to be done using onlylibc
, and without heap allocation.Mentor: @joshlf
The text was updated successfully, but these errors were encountered: