From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail1-relais-roc.national.inria.fr (mail1-relais-roc.national.inria.fr [192.134.164.82]) by sympa.inria.fr (Postfix) with ESMTPS id BEA7C7ED26 for ; Wed, 6 Jun 2012 20:16:55 +0200 (CEST) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Au8BAMSdz0/RVda2kGdsb2JhbABFtC4IIgEBAQEJCQ0HFAQjghgBAQEDARICJAgBGxwCAwELBgULFhYPCQMCAQIBEREBBQEcEwgBAR6HWgEDBgWaFQkDjCKCcIR0ChknDVeIcQEFDI4PgxYDlR2FU4hKPoQb X-IronPort-AV: E=Sophos;i="4.75,725,1330902000"; d="scan'208";a="161637595" Received: from mail-ob0-f182.google.com ([209.85.214.182]) by mail1-smtp-roc.national.inria.fr with ESMTP/TLS/RC4-MD5; 06 Jun 2012 20:16:55 +0200 Received: by obcni5 with SMTP id ni5so19467345obc.27 for ; Wed, 06 Jun 2012 11:16:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=8tNj/zcJrK6TjvVG2L+5AfmqqLiRKDt0e6VCrainGps=; b=cjSHhIi8KcDHUiItfzq3dQ2eQiD1EARyIKFIfglEMhERkiNS0xMxh2MZ9hgxqOS2Rv NxamSbWiGfL9iZ9LEsH25G0pTOfpe4PYb8t08eEXxvIF9xjAe0/7jVyYYkf/twVgFH16 0UkGRBWB1XLRaFB1iNhKneB65VnCeGPN45SKOCNO3KvVo9zpjVHFSuBQCrNlgeYNtBtf f4P/yn1No51RCEJUFB/rHM+kovw3cWa4CQSN1nbbRPkxNXCDbTb99BhbK+YBVlffl2F7 DWTpAXUznzPnlAma7529X3VjZ7x9pzOxmw/hzOce4kGXQ/9wAzc0JiQcFEtc7jXy0Rfn O7NA== Received: by 10.182.187.42 with SMTP id fp10mr21656374obc.30.1339006613934; Wed, 06 Jun 2012 11:16:53 -0700 (PDT) Received: from [192.168.1.65] (99-121-78-10.lightspeed.lnngmi.sbcglobal.net. [99.121.78.10]) by mx.google.com with ESMTPS id f7sm435565oea.13.2012.06.06.11.16.52 (version=SSLv3 cipher=OTHER); Wed, 06 Jun 2012 11:16:53 -0700 (PDT) Message-ID: <4FCF9E93.7070302@gmail.com> Date: Wed, 06 Jun 2012 14:16:51 -0400 From: Edgar Friendly User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: caml-list@inria.fr References: <1339005692.4950.2@samsung> In-Reply-To: <1339005692.4950.2@samsung> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: AW: [Caml-list] Distributed computing libraries > So far I know, all the other libraries base on multi-processing to run > programs on multiple cores. Plasma is the only one with true > distribution capabiltiies beyond a single computer, but the price is > that you must use the map/reduce scheme, whereas functory or parmap > leave you more freedom. Functory is able to run across a network, with clients listening for connections from the master to give them work to do. It is restricted to a variant of map/reduce, so it doesn't give you that much freedom. E.