mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
Merge branch 'master' of lpqlx139:~/QCaml
This commit is contained in:
commit
8f496ddb44
@ -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 =
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user