Revision 400fd7137cda13f54e758c6aaccb2422485580d4 authored by Roberto Di Cosmo on 23 February 2017, 00:36:09 UTC, committed by GitHub on 23 February 2017, 00:36:09 UTC
added get_rank so that worker processes can know at which rank
2 parent s af9691e + 8204dbb
Raw File
setcore.ml
(* uses the native affinity interface to 
   declare that the current process should be
   attached to core number n *)

external numcores: unit -> int = "numcores"
external setcore: int -> unit = "setcore"
back to top