From owner-svn-doc-head@freebsd.org Mon Jul 3 19:04:27 2017 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B31369EDBB3; Mon, 3 Jul 2017 19:04:27 +0000 (UTC) (envelope-from bjk@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E6527D272; Mon, 3 Jul 2017 19:04:27 +0000 (UTC) (envelope-from bjk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v63J4Q8B054655; Mon, 3 Jul 2017 19:04:26 GMT (envelope-from bjk@FreeBSD.org) Received: (from bjk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v63J4QhB054654; Mon, 3 Jul 2017 19:04:26 GMT (envelope-from bjk@FreeBSD.org) Message-Id: <201707031904.v63J4QhB054654@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bjk set sender to bjk@FreeBSD.org using -f From: Benjamin Kaduk Date: Mon, 3 Jul 2017 19:04:26 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r50445 - head/en_US.ISO8859-1/htdocs/news/status X-SVN-Group: doc-head X-SVN-Commit-Author: bjk X-SVN-Commit-Paths: head/en_US.ISO8859-1/htdocs/news/status X-SVN-Commit-Revision: 50445 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jul 2017 19:04:27 -0000 Author: bjk Date: Mon Jul 3 19:04:26 2017 New Revision: 50445 URL: https://svnweb.freebsd.org/changeset/doc/50445 Log: Add 2017Q2 TensorFlow porting entry from amutu@amutu.com Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2017-04-2017-06.xml Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2017-04-2017-06.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/news/status/report-2017-04-2017-06.xml Mon Jul 3 18:22:41 2017 (r50444) +++ head/en_US.ISO8859-1/htdocs/news/status/report-2017-04-2017-06.xml Mon Jul 3 19:04:26 2017 (r50445) @@ -934,4 +934,91 @@ July. + + + TensorFlow + + + + + Jov + + amutu@amutu.com + + + + + TensorFlow PR + Phabricator Review + Prebuilt Packages + TensorFlow Upstream + + + +

As described on its website, "TensorFlow is an open + source software library for numerical computation using data + flow graphs. Nodes in the graph represent mathematical + operations, while the graph edges represent the + multidimensional data arrays (tensors) communicated between + them. The flexible architecture allows you to deploy + computation to one or more CPUs or GPUs in a desktop, server, + or mobile device with a single API. TensorFlow was originally + developed by researchers and engineers working on the Google + Brain Team within Google's Machine Intelligence research + organization for the purposes of conducting machine learning + and deep neural networks research, but the system is general + enough to be applicable in a wide variety of other domains as + well."

+ +

TensorFlow now is the most popular platform/library for machine + learning and AI. There are official binaries for Linux, Mac, + Windows, and Android, but no official support for &os;. For + the last several months, I have done some work to make + TensorFlow available on &os;. Some notable work:

+ +
    +
  • Patch bazel to not depend on /proc at + build time. bazel is a build tool made by Google. + It uses /proc to get path-to-self when building C++ + code, but mounting /proc is usually not allowed + when building as an unprivileged user.
  • + +
  • TensorFlow can now be built on &os; 10.x by using + clang38 as the default bazel cross-build + tool.
  • + +
  • Patch the bazel workspace files to allow + TensorFlow to be built using offline third-party + dependencies. This work is needed because the &os; Ports + framework does not allow network access except during the + fetch stage.
  • + +
  • Fix the build on &os; i386.
  • + +
  • Make TensorFlow build with either Python 2 or Python 3.
  • + +
  • Update to the latest version, which is + tensorflow-1.2.0.
  • +
+ +

This port would not be possible without substantial + assistance from bapt@, lwhsu@, mat@, and koobs@ — thank + you for your help! You are very nice and I learned a lot + about &os; and the Ports framework from your help.

+ + + + Review, test, comment, and most importantly, commit to the + Ports Collection. + + Fix the OpenCL support on &os;. + + Port tensorflow-serving, which is a flexible, + high-performance serving system for machine learning models + produced by TensorFlow. + + Set up a CI for TensorFlow on &os; and give early notice + to upstream when they break TensorFlow on &os;. + +