Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Jan 2018 13:15:36 +0000 (UTC)
From:      Johannes M Dieterich <jmd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r459245 - in head/math: . tblis
Message-ID:  <201801171315.w0HDFavp081245@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jmd
Date: Wed Jan 17 13:15:36 2018
New Revision: 459245
URL: https://svnweb.freebsd.org/changeset/ports/459245

Log:
  new port math/tblis: a framework to perform tensor operations which are ubiquitous in a variety of domains (quantum chemistry, machine learning, ...). This port is a sibling port to math/blis and math/libflame and follows their philosophy for efficient operations.
  
  Reviewed by:	swills (mentor), mat
  Approved by:	swills (mentor)
  Differential Revision:	https://reviews.freebsd.org/D12830

Added:
  head/math/tblis/
  head/math/tblis/Makefile   (contents, props changed)
  head/math/tblis/distinfo   (contents, props changed)
  head/math/tblis/pkg-descr   (contents, props changed)
  head/math/tblis/pkg-plist   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Wed Jan 17 12:18:39 2018	(r459244)
+++ head/math/Makefile	Wed Jan 17 13:15:36 2018	(r459245)
@@ -737,6 +737,7 @@
     SUBDIR += symmetrica
     SUBDIR += tablix
     SUBDIR += taucs
+    SUBDIR += tblis
     SUBDIR += testu01
     SUBDIR += tetgen
     SUBDIR += timbl

Added: head/math/tblis/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/tblis/Makefile	Wed Jan 17 13:15:36 2018	(r459245)
@@ -0,0 +1,35 @@
+# Created by: Johannes M Dieterich <jmd@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	tblis
+PORTVERSION=	1.1.2
+DISTVERSIONPREFIX=	v
+CATEGORIES=	math
+
+MAINTAINER=	jmd@FreeBSD.org
+COMMENT=	Framework for performing tensor operations
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+NOT_FOR_ARCHS=	i386
+NOT_FOR_ARCHS_REASON=	i386 requires SSE
+
+OPTIONS_DEFINE=	PARA
+PARA_DESC=	use pthread parallelization
+OPTIONS_DEFAULT=	PARA
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	devinamatthews
+
+USES=		gmake libtool
+USE_LDCONFIG=	yes
+
+HAS_CONFIGURE=	yes
+
+PARA_CONFIGURE_ON=	--enable-thread-model=pthreads
+PARA_CONFIGURE_OFF=	--enable-thread-model=none
+
+INSTALL_TARGET=	install-strip
+
+.include <bsd.port.mk>

Added: head/math/tblis/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/tblis/distinfo	Wed Jan 17 13:15:36 2018	(r459245)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1508787490
+SHA256 (devinamatthews-tblis-v1.1.2_GH0.tar.gz) = ab2a77b254f5a2e1565da11236b3b7df7ab4b9badfdd0fe94889b625fe1adfeb
+SIZE (devinamatthews-tblis-v1.1.2_GH0.tar.gz) = 4515899

Added: head/math/tblis/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/tblis/pkg-descr	Wed Jan 17 13:15:36 2018	(r459245)
@@ -0,0 +1,12 @@
+TBLIS is a library and framework for performing tensor operations,
+especially tensor contraction, using native algorithms. In this
+context, native means that TBLIS does not translate tensor
+operations into matrix operations using the BLAS libraries.
+Instead, TBLIS uses the philosophy (and certain low-level kernels)
+of the BLIS framework to implement tensor contraction with
+essentially zero overhead compared to matrix multiplication. TBLIS
+also aims to offer a convenient C++ interface for tensors and
+tensor operations, as well as a stable C interface with high
+portability.
+
+WWW: https://github.com/devinamatthews/tblis

Added: head/math/tblis/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/tblis/pkg-plist	Wed Jan 17 13:15:36 2018	(r459245)
@@ -0,0 +1,60 @@
+include/tblis/external/marray/include/marray.hpp
+include/tblis/external/marray/include/miterator.hpp
+include/tblis/external/marray/include/utility.hpp
+include/tblis/external/marray/include/varray.hpp
+include/tblis/external/marray/include/viterator.hpp
+include/tblis/external/stl_ext/include/algorithm.hpp
+include/tblis/external/stl_ext/include/any.hpp
+include/tblis/external/stl_ext/include/bounded_vector.hpp
+include/tblis/external/stl_ext/include/complex.hpp
+include/tblis/external/stl_ext/include/cosort.hpp
+include/tblis/external/stl_ext/include/fill_iterator.hpp
+include/tblis/external/stl_ext/include/global_ptr.hpp
+include/tblis/external/stl_ext/include/iostream.hpp
+include/tblis/external/stl_ext/include/ptr_list.hpp
+include/tblis/external/stl_ext/include/ptr_vector.hpp
+include/tblis/external/stl_ext/include/string.hpp
+include/tblis/external/stl_ext/include/type_traits.hpp
+include/tblis/external/stl_ext/include/vector.hpp
+include/tblis/external/stl_ext/include/zip.hpp
+include/tblis/iface/1m/add.h
+include/tblis/iface/1m/dot.h
+include/tblis/iface/1m/reduce.h
+include/tblis/iface/1m/scale.h
+include/tblis/iface/1m/set.h
+include/tblis/iface/1t/add.h
+include/tblis/iface/1t/dot.h
+include/tblis/iface/1t/reduce.h
+include/tblis/iface/1t/scale.h
+include/tblis/iface/1t/set.h
+include/tblis/iface/1v/add.h
+include/tblis/iface/1v/dot.h
+include/tblis/iface/1v/reduce.h
+include/tblis/iface/1v/scale.h
+include/tblis/iface/1v/set.h
+include/tblis/iface/3m/mult.h
+include/tblis/iface/3t/mult.h
+include/tblis/memory/aligned_allocator.hpp
+include/tblis/memory/stack_allocator.hpp
+include/tblis/tblis.h
+include/tblis/tblis_config.h
+include/tblis/util/assert.h
+include/tblis/util/basic_types.h
+include/tblis/util/thread.h
+include/tci.h
+include/tci/barrier.h
+include/tci/communicator.h
+include/tci/context.h
+include/tci/mutex.h
+include/tci/parallel.h
+include/tci/tci_config.h
+include/tci/work_item.h
+include/tci/yield.h
+lib/libtblis.a
+lib/libtblis.so
+lib/libtblis.so.0
+lib/libtblis.so.0.0.0
+lib/libtci.a
+lib/libtci.so
+lib/libtci.so.0
+lib/libtci.so.0.0.0



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801171315.w0HDFavp081245>