10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 15:12:05 +02:00

Forgot files

This commit is contained in:
Anthony Scemama 2018-10-21 23:54:28 +02:00
parent 5195c28950
commit 45882e28b1
2 changed files with 129 additions and 0 deletions

116
Parallel/Farm.ml Normal file
View File

@ -0,0 +1,116 @@
let run_sequential f stream =
(* Stream -> f -> Stream *)
let rec next _ =
try
let task = Stream.next stream in
Some (f task)
with Stream.Failure -> None in
Stream.from next
let debug msg = Printf.eprintf "%d %s\n%!" Parallel.rank msg
(** Server side *)
let run_parallel_server stream =
let fetch_result () =
let result, rank, _ =
Mpi.receive_status Mpi.any_source Mpi.any_tag Mpi.comm_world
in
let a, b = match result with | Some t -> t | None -> (Parallel.rank, (-1)) in
Printf.eprintf "Master: Fetch result %d,%d from %d\n%!" a b rank;
result, rank
in
let send_task client_rank task_list =
let task, rest =
match task_list with
| [] -> None , []
| task :: rest -> Some task, rest
in
let a, b = match task with | Some t -> t | None -> 0, 0 in
Printf.eprintf "Master: Send task %d,%d to %d \n%!" a b client_rank;
Mpi.send task client_rank 0 Mpi.comm_world;
rest
in
let rec run result_list task_list = function
| 0 -> result_list
| n_todo ->
begin
Printf.eprintf "n_todo = %d\n%!" n_todo;
let result, client = fetch_result () in
let new_result_list = result :: result_list in
let new_tasklist = send_task client task_list in
run new_result_list new_tasklist (n_todo-1)
end
in
let result =
let task_list =
(*
let rec to_list accu =
try to_list (Stream.next stream :: accu)
with Stream.Failure -> List.rev accu
in to_list []
*)
[]
in
let n_todo = List.length task_list in
run [] task_list (n_todo + Parallel.size - 1)
|> Stream.of_list
in
debug "Master: barrier";
Mpi.barrier Mpi.comm_world;
debug "Master: barrier ok";
result
(** Client side *)
let run_parallel_client f =
Unix.sleep (Parallel.rank);
Mpi.send None 0 0 Mpi.comm_world;
let rec run () =
let task =
Mpi.receive 0 Mpi.any_tag Mpi.comm_world
in
let a, b = match task with | Some t -> t | None -> 0, 0 in
Printf.eprintf "Client %d: Received task %d,%d\n%!" Parallel.rank a b;
debug "task received";
match task with
| None ->
begin
Printf.eprintf "Client %d: barrier\n%!" Parallel.rank;
Mpi.barrier Mpi.comm_world;
Printf.eprintf "Client %d: barrier ok\n%!" Parallel.rank;
end
| Some task ->
let result = f task in
begin
Unix.sleep 1;
let a, b = result in
Printf.eprintf "Client %d: Send result %d %d\n%!" Parallel.rank a b;
Mpi.send (Some result) 0 0 Mpi.comm_world;
run ()
end
in
run ();
Printf.eprintf "Client %d: barrier ok" Parallel.rank;
Stream.of_list []
let run_parallel f stream =
match Mpi.comm_rank Mpi.comm_world with
| 0 -> run_parallel_server stream
| _ -> run_parallel_client f

13
Parallel/Farm.mli.bak Normal file
View File

@ -0,0 +1,13 @@
(** The Farm skeleton, similar to SklMl.
The input is a stream of input data, and the output is a stream of data.
*)
val run_parallel : ('a -> 'b) -> 'a Stream.t -> 'b Stream.t
val run_sequential : ('a -> 'b) -> 'a Stream.t -> 'b Stream.t
(** Run the [worker_function] on every process by popping elements from the
input stream, and put the results on the output stream. The order of the
output is consistent with the order of the input. *)