From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46977) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fG41D-0007v5-EX for guix-patches@gnu.org; Tue, 08 May 2018 10:55:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fG418-0006xW-Iv for guix-patches@gnu.org; Tue, 08 May 2018 10:55:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46494) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fG418-0006xQ-Fy for guix-patches@gnu.org; Tue, 08 May 2018 10:55:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fG418-0007AE-AF for guix-patches@gnu.org; Tue, 08 May 2018 10:55:02 -0400 Subject: [bug#31386] TensorFlow Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46771) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fG40u-0007ii-W6 for guix-patches@gnu.org; Tue, 08 May 2018 10:54:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fG40p-0006nJ-Tv for guix-patches@gnu.org; Tue, 08 May 2018 10:54:49 -0400 Received: from sinope02.bbbm.mdc-berlin.de ([141.80.25.24]:47116) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fG40p-0006mL-IO for guix-patches@gnu.org; Tue, 08 May 2018 10:54:43 -0400 Received: from localhost (localhost [127.0.0.1]) by sinope02.bbbm.mdc-berlin.de (Postfix) with ESMTP id 2C6111111BCD for ; Tue, 8 May 2018 16:54:41 +0200 (CEST) Received: from sinope02.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (sinope02.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0mmnDehtQX4d for ; Tue, 8 May 2018 16:54:36 +0200 (CEST) Received: from HTCATWO.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by sinope02.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Tue, 8 May 2018 16:54:35 +0200 (CEST) From: Ricardo Wurmus Date: Tue, 8 May 2018 16:54:02 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31386@debbugs.gnu.org This patch series adds a package for TensorFlow (without GPU support). I don=E2=80=99t know how useful this is because it just provides a single= 180+MB statically linked archive (and header files). It is only the =E2=80=9Cco= re=E2=80=9D part of TensorFlow. The problem here is that the build system is Bazel, which cannot easily be built from source. Bazel bundles 60+ third-party Java packages, some of which are very complex and are very difficult to package. TensorFlow comes with an unsupported Makefile that builds a single statically linked library of only the core parts. That=E2=80=99s what this package provides. Note that TensorFlow 1.8 has been released a few days ago. This package only adds version 1.7. -- Ricardo