From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 16 15:32:15 2019 Received: (at submit) by debbugs.gnu.org; 16 Oct 2019 19:32:15 +0000 Received: from localhost ([127.0.0.1]:46573 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iKp1r-0000rZ-J8 for submit@debbugs.gnu.org; Wed, 16 Oct 2019 15:32:15 -0400 Received: from lists.gnu.org ([209.51.188.17]:34131) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iKp1p-0000rR-Sf for submit@debbugs.gnu.org; Wed, 16 Oct 2019 15:32:14 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:34138) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iKp1n-0000Xs-GF for guix-patches@gnu.org; Wed, 16 Oct 2019 15:32:13 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_NONE, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iKp1l-00073B-Ve for guix-patches@gnu.org; Wed, 16 Oct 2019 15:32:11 -0400 Received: from devianza.investici.org ([198.167.222.108]:27847) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iKp1l-0006w2-Dq for guix-patches@gnu.org; Wed, 16 Oct 2019 15:32:09 -0400 Received: from mx2.investici.org (localhost [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 46F22E0779; Wed, 16 Oct 2019 19:31:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1571254314; bh=geUUtidTGiNPj0GxE6jqTKfIBNMKZzX9tW2kQyWxmoE=; h=From:To:Cc:Subject:Date:From; b=juLzBbNohdZSyF+P9+cfQxDlFJptHCYFAr1CIUjHAMvan7Q77iHkZbaYNs5/023tg mnIav40/vKrEuYGXta1kXmIeGYY++mAhRKpBG+TuKZjzX/DAmeVRCIIAzRGytksLge 5HD8tc9suEZiqlZV2AoU+NXZqv1baKDd8rMSe960= Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 1B66BE0737; Wed, 16 Oct 2019 19:31:53 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] gnu: Add gloo. Date: Wed, 16 Oct 2019 21:31:42 +0200 Message-Id: <20191016193142.9953-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 198.167.222.108 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/machine-learning.scm (gloo): New variable. --- gnu/packages/machine-learning.scm | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-lea= rning.scm index 254ee59c4a..9485357267 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -2051,3 +2051,39 @@ includes an implementation of Global Refinement of= Random Forest.") =20 (define-public ecl-cl-random-forest (sbcl-package->ecl-package sbcl-cl-random-forest)) + +(define-public gloo + (let ((version "0.0.0") ; no proper version tag + (commit "ca528e32fea9ca8f2b16053cff17160290fc84ce") + (revision "0")) + (package + (name "gloo") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/facebookincubator/gloo.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1q9f80zy75f6njrzrqkmhc0g3qxs4gskr7ns2jdqanxa2ww7a99w")))) + (build-system cmake-build-system) + (native-inputs + `(("googletest" ,googletest))) + (arguments + `(#:configure-flags '("-DBUILD_TEST=3D1") + #:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "make" "gloo_test") + #t))))) + (synopsis "Collective communications library") + (description + "Gloo is a collective communications library. It comes with a +number of collective algorithms useful for machine learning applications= . +These include a barrier, broadcast, and allreduce.") + (home-page "https://github.com/facebookincubator/gloo") + (license license:bsd-3)))) --=20 2.23.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 21 17:11:26 2019 Received: (at 37780-done) by debbugs.gnu.org; 21 Oct 2019 21:11:26 +0000 Received: from localhost ([127.0.0.1]:57982 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iMexa-0005Ql-8G for submit@debbugs.gnu.org; Mon, 21 Oct 2019 17:11:26 -0400 Received: from eggs.gnu.org ([209.51.188.92]:34962) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iMexY-0005QZ-Mr for 37780-done@debbugs.gnu.org; Mon, 21 Oct 2019 17:11:25 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:45314) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iMexT-0003jM-34; Mon, 21 Oct 2019 17:11:19 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=52932 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iMexS-0000ji-48; Mon, 21 Oct 2019 17:11:18 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Giacomo Leidi Subject: Re: [bug#37780] [PATCH] gnu: Add gloo. References: <20191016193142.9953-1-goodoldpaul@autistici.org> Date: Mon, 21 Oct 2019 23:11:16 +0200 In-Reply-To: <20191016193142.9953-1-goodoldpaul@autistici.org> (Giacomo Leidi's message of "Wed, 16 Oct 2019 21:31:42 +0200") Message-ID: <87zhhtyfbf.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37780-done Cc: 37780-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi Giacomo, Giacomo Leidi skribis: > * gnu/packages/machine-learning.scm (gloo): New variable. Applied, thanks! Note that currently only the .a file is built and installed. If we add packages that use libgloo, we should make sure to build a shared library. Ludo=E2=80=99. From unknown Sun Jun 22 04:13:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 19 Nov 2019 12:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator