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/mpi/mpi.yap

14 lines
208 B
Prolog

:- module(mpi,[
mpi_open/3,
mpi_close/0,
mpi_send/3,
mpi_receive/3,
mpi_bcast/3,
mpi_bcast/2,
mpi_barrier/0]).
:- load_foreign_files([mpi], [], init_mpi).