From owner-svn-ports-all@freebsd.org Thu Jul 9 18:08:13 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 26CEA3518EA; Thu, 9 Jul 2020 18:08:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B2kgK05zfz4NTx; Thu, 9 Jul 2020 18:08:13 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DC770150D2; Thu, 9 Jul 2020 18:08:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 069I8Cji037007; Thu, 9 Jul 2020 18:08:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 069I8Cw9037004; Thu, 9 Jul 2020 18:08:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202007091808.069I8Cw9037004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Jul 2020 18:08:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541768 - in head/math: . py-flax X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/math: . py-flax X-SVN-Commit-Revision: 541768 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jul 2020 18:08:13 -0000 Author: sunpoet Date: Thu Jul 9 18:08:11 2020 New Revision: 541768 URL: https://svnweb.freebsd.org/changeset/ports/541768 Log: Add py-flax 0.1.0 Flax is a high-performance neural network library for JAX that is designed for flexibility: Try new forms of training by forking an example and by modifying the training loop, not by adding features to a framework. WWW: https://github.com/google/flax Added: head/math/py-flax/ head/math/py-flax/Makefile (contents, props changed) head/math/py-flax/distinfo (contents, props changed) head/math/py-flax/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jul 9 18:08:06 2020 (r541767) +++ head/math/Makefile Thu Jul 9 18:08:11 2020 (r541768) @@ -749,6 +749,7 @@ SUBDIR += py-fastdtw SUBDIR += py-ffc SUBDIR += py-fiat + SUBDIR += py-flax SUBDIR += py-fpconst SUBDIR += py-fpylll SUBDIR += py-gau2grid Added: head/math/py-flax/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-flax/Makefile Thu Jul 9 18:08:11 2020 (r541768) @@ -0,0 +1,31 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= flax +PORTVERSION= 0.1.0 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Neural network library for JAX designed for flexibility + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jax>=0.1.59:math/py-jax@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=0:math/py-matplotlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}msgpack>=0:devel/py-msgpack@${PY_FLAVOR} \ + ${PYNUMPY} + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include + +.if ${PYTHON_REL} < 3700 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dataclasses>=0:devel/py-dataclasses@${PY_FLAVOR} +.endif + +.include Added: head/math/py-flax/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-flax/distinfo Thu Jul 9 18:08:11 2020 (r541768) @@ -0,0 +1,3 @@ +TIMESTAMP = 1594308024 +SHA256 (flax-0.1.0.tar.gz) = 94e6a05531009c44b000b9778603c6cceff43b8450e4059c22fd0dea93ea7b3b +SIZE (flax-0.1.0.tar.gz) = 51138 Added: head/math/py-flax/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-flax/pkg-descr Thu Jul 9 18:08:11 2020 (r541768) @@ -0,0 +1,5 @@ +Flax is a high-performance neural network library for JAX that is designed for +flexibility: Try new forms of training by forking an example and by modifying +the training loop, not by adding features to a framework. + +WWW: https://github.com/google/flax