Fixed serial code

This commit is contained in:
Anthony Scemama 2020-01-28 17:57:29 +01:00
parent e9d3d9a1f4
commit 7c52629c6b
2 changed files with 37 additions and 4 deletions

View File

@ -37,6 +37,21 @@ module Node = struct
end
module InterNode = struct
let comm = None
let rank = 0
let master = true
let broadcast x = Lazy.force x
let barrier () = ()
end
module Vec = struct
type t =

View File

@ -40,19 +40,37 @@ module Node : sig
(** Always [None] *)
val rank : int
(** Rank of the current process in the node *)
(** Always zero *)
val master : bool
(** If true, master process of the node *)
(** Always true *)
val broadcast : 'a lazy_t -> 'a
(** Broadcasts data to all the processes of the current node. *)
(** Same as Lazy.force *)
val barrier : unit -> unit
(** Wait for all processes among the node to reach this point. *)
(** Does nothing. *)
end
(** {5 Inter-node operations} *)
module InterNode : sig
val comm : 'a option
(** Always [None] *)
val rank : int
(** Always zero *)
val master : bool
(** Always true *)
val broadcast : 'a lazy_t -> 'a
(** Same as Lazy.force *)
val barrier : unit -> unit
(** Does nothing. *)
end
(** {5 Vector operations} *)
module Vec : sig