This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/library/lammpi/examples/talk.yap

31 lines
487 B
Plaintext
Raw Normal View History

2012-02-02 10:00:17 +00:00
:- use_module(library(lam_mpi)).
:- initialization(main).
main :-
mpi_init,
mpi_comm_size(2),
mpi_comm_rank(Rank),
do_comm(Rank),
mpi_finalize.
do_comm(0) :-
between(1,10,I),
gen_list(I,List),
mpi_send(List, 1, I),
fail.
do_comm(0).
do_comm(1) :-
between(1,10,I),
mpi_recv(0, I, List),
writeln(I:List),
fail.
do_comm(1).
gen_list(0,[]) :- !.
gen_list(I,I.List) :-
I1 is I-1,
gen_list(I1,List).